News
Index
Working with MUMIE as author
- Initial steps:
- Articles:
- Problems:
- Programming with Python
- Visualizations with JSXGraph
- Media Documents:
Working with MUMIE as teacher
Using MUMIE via plugin in local LMS
FAQ
You're not logged in
Working with MUMIE as author
Working with MUMIE as teacher
Using MUMIE via plugin in local LMS
FAQ
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}
Say you want to create a link from a certain position in document A (origin) to a certain position in the same or an other document, called document B (target).
\label{target_position}
Ref
\ref[LID][Link to ...]{anchor}
The command creates a hyperlink originating at "point_of_origin" and pointing to the position marked by "target_position" in the target document B.
The link text is the second optional argument, thus, "Link to ...". If this argument is omitted, the link text defaults to the LID.
Say you want to create a link in document A (origin) to another document, called document B (target)
Link
WebMiau creates a link to the other document
\link{LID}{Link to ...}
The command creates a link to the the target document B.
The link text "Link to ..." is replaceable with any label.
Updated by Ruedi Seiler, 5 years ago – fe9a0b3