The LaTeX2HTML Translator | Drakos/Moore |
To: Hypertext Links in Bibliographic References (Citations) |
In a hypertext document however, cross-references can be shown
without any indirection, just by highlighting a relevant piece of text.
This can make a document more readable as it removes unnecessary
information.
{sec:cond}
is defined somewhere within a document,
the command \hyperref, taking 4 arguments,
can be used in that document as follows:
\emph{Is the concept of \hyperref % This will be highlighted in the hypertext version {conditional text} % argument #1 % This will be shown in the printed version % followed by a numeric reference ... {conditional text (see Section } % argument #2 % ... followed by this text { for more information)} % argument #3 % This is the common label {sec:cond} % argument #4 a good idea? }
Here is how it will be shown:
Is the concept of conditional text a good idea?
In the printed version what would appear is:
Is the concept of conditional text (see Section 4.2 for more information) a good idea?
\hyperref[ref]{
<HTML-text>}{
<LaTeX-text>}{
<post-LaTeX>}{
<label>}
\hyperref{
<HTML-text>}{
<LaTeX-text>}{
<post-LaTeX>}{
<label>}
\hyperref[pageref]{
<HTML-text>}{
<LaTeX-text>}{
<post-LaTeX>}{
<label>}
\hyperref[page]{
<HTML-text>}{
<LaTeX-text>}{
<post-LaTeX>}{
<label>}
\hyperref[noref]{
<HTML-text>}{
<LaTeX-text>}{
<label>}
\hyperref[no]{
<HTML-text>}{
<LaTeX-text>}{
<label>}
The first two are the defaults, where LATEX
uses \ref{
<label>}
.
With the next two LATEX uses \pageref{
<label>}
,
while with the final two LATEX completely ignores the <label>,
setting just the <LaTeX-text>.
For creating hyperlinks to other documents
using symbolic reference <label>s,
see also the \externalref
command.
The preceding paragraph is an example of the use of the \hyperref[page] option.
Its source code is:
For creating hyperlinks to other documents using symbolic reference \Meta{label}s, see also the \Lc{externalref} \hyperref[page]{command}{command, described on page~}{}{externref}.which appears in the LATEX typeset version as:
For creating hyperlinks to other documents using symbolic reference <label>s, see also the \externalref command, described on page 31.In fact both \hyperref and the \htmlref command, to be described next, permit textual hyperlinks based on symbolic <label>s from external files.
With \verb|\htmlref| \htmlref{it's easy to make links}{fig:example}.which produces:
With \htmlref it's easy to make links.In the LATEX typeset version it will appear simply as:
With \htmlref it's easy to make links.
To: Hypertext Links in Bibliographic References (Citations) |
Ross Moore 1991-03-26 | Processed by LaTeX2HTML-FU |