|
Hyperlinking
\documentclass[a4paper,12pt]{article}
\usepackage{hyperref}
\begin{document}
% Hyperlinking
\hyperlink{GoHere1}{LinkFrom}\newline
One of the wonderful thing about the web is hyperlinking.
Latex also allows for hyperlinking. For example we can hyper link
this first paragraph to an item in the second paragraph.
\vspace{5 mm}
\noindent
This is the second paragraph, written so that this can be hyperlinked
to the first paragraph and show the effect.
How do we remove the blue box or change colour?
\vspace{10 mm}
\noindent
We need to put it below to see the real effect.
\vspace{10 mm}
\noindent
Note that above a package is included, which is required to hyperlink.
\vspace{10 mm}
\noindent
\hypertarget{GoHere1}
Linked To Here
\end{document}
|