How to create a link pointing to a non-Mumie websites e.g. Wikipedia¶
This can be done with the \href
command. Its usage is:
\href{URL}{LINK_TEXT}
where URL
is the URL of the page the link points to, and LINK_TEXT
is the text that appears as link in the Mumie document.
Example: You want to create a link to the Wikipedia start page with the link text "see Wikipedia". The URL of the Wikipedia start page is http://en.wikipedia.org/wiki/Main_Page. Then the TeX code for inserting the link is:
\href{http://en.wikipedia.org/wiki/Main_Page}{see Wikipedia}