summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/hyperref/doc
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2007-06-01 16:58:52 +0000
committerKarl Berry <karl@freefriends.org>2007-06-01 16:58:52 +0000
commit4d027ddb699c57025992eccbdd3cef0ec2836ee1 (patch)
tree7c9a8e252aa5133aa4c986aa37af12b8484ec44b /Master/texmf-dist/source/latex/hyperref/doc
parentab8a652a0280de02179bbbdd79296f2bbd4073f7 (diff)
hyperref update (30may07)
git-svn-id: svn://tug.org/texlive/trunk@4399 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/hyperref/doc')
-rw-r--r--Master/texmf-dist/source/latex/hyperref/doc/manual.tex45
-rw-r--r--Master/texmf-dist/source/latex/hyperref/doc/options.tex3
2 files changed, 37 insertions, 11 deletions
diff --git a/Master/texmf-dist/source/latex/hyperref/doc/manual.tex b/Master/texmf-dist/source/latex/hyperref/doc/manual.tex
index 6144a7dc3b2..604a4feb0a0 100644
--- a/Master/texmf-dist/source/latex/hyperref/doc/manual.tex
+++ b/Master/texmf-dist/source/latex/hyperref/doc/manual.tex
@@ -94,6 +94,7 @@
\usepackage{array,longtable}
\usepackage[T1]{fontenc}
+\usepackage{lmodern}
\newcommand*{\Quote}[1]{\textquotedblleft#1\textquotedblright}
@@ -399,8 +400,7 @@ anchorcolor & color & black & Color for anchor text. \\
citecolor & color & green & Color for bibliographical citations in text. \\
filecolor & color & magenta & Color for URLs which open local files. \\
menucolor & color & red & Color for Acrobat menu items. \\
-pagecolor & color & red & Color for links to other pages, but
- currently unused. \\
+runcolor & color & filecolor & Color for run links (launch annotations). \\
urlcolor & color & cyan & Color for linked URLs. \\
frenchlinks & boolean & false & use small caps instead of color for links
\end{longtable} \smallskip
@@ -428,7 +428,7 @@ CJKbookmarks & boolean & false &
during the creation of bookmarks, it simply replaces CJK's macros
with special versions which expand to the corresponding character
codes. Note that without the `unicode' option of hyperref you get
- PDF files which actually violate the PDF specification because
+ PDF files which actually violate the PDF specification because
non-Unicode character codes are used -- some PDF readers localized
for CJK languages (most notably Acroread itself) support this.
Also note that option `CJKbookmarks' cannot be used together
@@ -444,7 +444,6 @@ citebordercolor & RGB color & 0 1 0 & The color of the box around citations
filebordercolor & RGB color & 0 .5 .5 & The color of the box around links to files \\
linkbordercolor & RGB color & 1 0 0 & The color of the box around normal links \\
menubordercolor & RGB color & 1 0 0 & The color of the box around Acrobat menu links \\
-pagebordercolor & RGB color & 1 1 0 & The color of the box around links to pages \\
urlbordercolor & RGB color & 0 1 1 & The color of the box around links to URLs \\
runbordercolor & RGB color & 0 .7 .7 & color of border around `run' links \\
pdfborder & & 0 0 1 & The style of box around links; defaults to a box with lines of 1pt thickness,
@@ -621,9 +620,6 @@ naturalnames & \textit{false} & use \LaTeX-computed names for link
nesting & \textit{false} & allow nesting of links \\
pageanchor & \textit{true} & put an anchor on every page \\
pagebackref & \textit{false} & backreference by page number \\
-pagebordercolor & \textit{1 1 0} & color of border around page links \\
-pagecolor & \textit{red} & color of page links, but
- currently unused \\
pdfauthor & \textit{empty} & text for PDF Author field \\
pdfborder & \textit{0 0 1} & width of PDF link border \\
& \textit{0 0 0} & (\texttt{colorlinks)} \\
@@ -674,6 +670,7 @@ plainpages & \textit{false} & do page number anchors as plain ar
ps2pdf & & use \textsf{ps2pdf} backend \\
raiselinks & \textit{false} & raise up links (for \textsf{Hyper\TeX} backend) \\
runbordercolor & \textit{0 .7 .7} & color of border around `run' links \\
+runcolor & \textit{filecolor} & color of `run' links\\
setpagesize & \textit{true} & set page size by special driver commands \\
tex4ht & & use \textsf{\TeX4ht} backend \\
textures & & use \textsf{Textures} backend \\
@@ -830,11 +827,31 @@ For each macro below, \textsf{hyperref} checks \ci{*autorefname} before
\ci{paragraphname} & paragraph \\
\ci{Hfootnotename} & footnote \\
\ci{AMSname} & Equation \\
-\ci{theoremname} & Theorem
+\ci{theoremname} & Theorem\\
+\ci{page} & page\\
\end{longtable}
+Example for a redefinition if \textsf{babel} is used:
+\begin{quote}
+\begin{verbatim}
+\usepackage[ngerman]{babel}
+\addto\extrasngerman{%
+ \def\subsectionautorefname{Unterkapitel}%
+}
+\end{verbatim}
+\end{quote}
+
+\begin{cmdsyntax}
+\ci{autopageref}\verb|{|\emph{label}\verb|}|
+\end{cmdsyntax}
+
+\noindent
+It replaces \verb|\pageref| and adds the name for page in front of
+the page reference. First \ci{pageautorefname} is checked before
+\ci{pagename}.
+
For instances where you want a reference to use the correct counter, but
-not to create a link, there are two starred forms:
+not to create a link, there are starred forms:
\begin{cmdsyntax}
\ci{ref*}\verb|{|\emph{label}\verb|}|
@@ -844,6 +861,14 @@ not to create a link, there are two starred forms:
\ci{pageref*}\verb|{|\emph{label}\verb|}|
\end{cmdsyntax}
+\begin{cmdsyntax}
+\ci{autoref*}\verb|{|\emph{label}\verb|}|
+\end{cmdsyntax}
+
+\begin{cmdsyntax}
+\ci{autopageref*}\verb|{|\emph{label}\verb|}|
+\end{cmdsyntax}
+
A typical use would be to write
\begin{verbatim}
\hyperref[other]{that nice section (\ref*{other}) we read before}
@@ -1132,6 +1157,8 @@ password & boolean & false & text field is `password' style \\
popdown & boolean & false & choice list is `popdown' style \\
radio & boolean & false & choice list is `radio' style \\
readonly & boolean & false & field is readonly \\
+rotation & number & 0 & rotation of the widget annotation
+ (degree, counterclockwise, multiple of 90)\\
tabkey & & & (as per HTML) \\
validate & & & JavaScript code to validate the entry \\
value & & & initial value \\
diff --git a/Master/texmf-dist/source/latex/hyperref/doc/options.tex b/Master/texmf-dist/source/latex/hyperref/doc/options.tex
index 833752a10fe..f70d862be48 100644
--- a/Master/texmf-dist/source/latex/hyperref/doc/options.tex
+++ b/Master/texmf-dist/source/latex/hyperref/doc/options.tex
@@ -68,8 +68,6 @@ naturalnames &use \LaTeX-computed names for links&false\\
nesting &allow nesting of links&false\\
pageanchor &put an anchor on every page&true\\
pagebackref &backreference by page number&false\\
-pagebordercolor &color of border around page links& 1 1 0\\
-pagecolor &color of page links&red\\
pdfauthor &text for PDF Author field&\optempty\\
pdfborder &width of PDF link border&0 0 1\\
&&0 0 0 \for{colorlinks}\\
@@ -111,6 +109,7 @@ plainpages &do page number anchors as plain arabic&true\\
ps2pdf &use ps2pdf backend\\
raiselinks &raise up links (for HyperTeX backend)&false\\
runbordercolor &color of border around `run' links& 0 .7 .7\\
+runcolor & color of `run' links& filecolor\\
setpagesize &set page size by special driver commands&true\\
tex4ht &use \TeX4ht backend\\
textures &use Textures backend\\