summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/footnotebackref
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-07-13 23:19:39 +0000
committerKarl Berry <karl@freefriends.org>2012-07-13 23:19:39 +0000
commit51d9d5fd2716b73ae6ab6ce10d90e756ffe4c632 (patch)
treec55fde84579b820b446cd3df3c60fca1d9b654bf /Master/texmf-dist/doc/latex/footnotebackref
parent1dc1616ebcf1c314a5a546725898542810280310 (diff)
new latex package footnotebackref (1jul12)
git-svn-id: svn://tug.org/texlive/trunk@27034 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/footnotebackref')
-rw-r--r--Master/texmf-dist/doc/latex/footnotebackref/README11
-rw-r--r--Master/texmf-dist/doc/latex/footnotebackref/footnotebackref.pdfbin0 -> 119384 bytes
-rw-r--r--Master/texmf-dist/doc/latex/footnotebackref/footnotebackref.tex35
3 files changed, 46 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/footnotebackref/README b/Master/texmf-dist/doc/latex/footnotebackref/README
new file mode 100644
index 00000000000..25497f21697
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/footnotebackref/README
@@ -0,0 +1,11 @@
+README for footnotebackref, 2012/07/01
+
+This work may be distributed and/or modified under the
+conditions of the LaTeX Project Public License, either version 1.3
+of this license or (at your option) any later version.
+The latest version of this license is in
+ http://www.latex-project.org/lppl.txt
+and version 1.3 or later is part of all distributions of LaTeX
+version 2005/12/01 or later.
+
+The footnotebackref package allows the creation of hyperlinks from the footnote at the bottom of the page back to the occurence of the footnote in the main text. The references and hyperlinks are created by the hyperref package.
diff --git a/Master/texmf-dist/doc/latex/footnotebackref/footnotebackref.pdf b/Master/texmf-dist/doc/latex/footnotebackref/footnotebackref.pdf
new file mode 100644
index 00000000000..8520b89857e
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/footnotebackref/footnotebackref.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/footnotebackref/footnotebackref.tex b/Master/texmf-dist/doc/latex/footnotebackref/footnotebackref.tex
new file mode 100644
index 00000000000..e90485181a1
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/footnotebackref/footnotebackref.tex
@@ -0,0 +1,35 @@
+\documentclass{article}
+\usepackage{footnotebackref}
+
+\begin{document}
+
+\title{The \texttt{footnotebackref} package\\\large Back referencing from footnotes}%
+\author{Holger Lange}%
+\date{\today}%
+\maketitle
+
+\section{Introduction}
+The \texttt{footnotebackref} package allows the creation of hyperlinks from the footnote at the bottom of the page back to the occurence of the footnote in the main text. The references and hyperlinks are created by the \texttt{hyperref} package.
+
+\section{Usage and Options}
+To use the package just type \verb+\usepackage{footnotebackref}+ in the preamble of the document.
+There are two options to format the links:
+\begin{quote}
+ \begin{tabular}{lp{0.33\paperwidth}}
+ \texttt{symbol} & Hyperlinked symbol between the footnotenumber and the footnotetext (e.\,g. $\uparrow$, $\bigtriangleup$ or $\wedge$).\newline Default: \emph{no symbol}\\
+ \texttt{numberlinked} & This boolean indicates whether the footnotenumber is also a hyperlink or not.\newline Default: true
+ \end{tabular}
+\end{quote}
+The package options are specified as key value pairs (\texttt{optionname=value}). If they are omitted the default values are used.\footnote{The default behaviour is like this footnote: There is no additionally symbol and the footnotenumber is a hyperlink to the occurence of the footnote in the main text.}
+
+\section{Example}
+The example shows an included symbol as hyperlink.
+\begin{verbatim}
+\documentclass{article}
+\usepackage[symbol=$\wedge$,numberlinked=false]{footnotebackref}
+\begin{document}
+Some text with a footnote\footnote{The first footnote.}\\
+Text with the second footnote\footnote[4]{The second footnote.}
+\end{document}
+\end{verbatim}
+\end{document}