diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/hyperref/README')
-rw-r--r-- | Master/texmf-dist/doc/latex/hyperref/README | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/latex/hyperref/README b/Master/texmf-dist/doc/latex/hyperref/README index ac0d8eb8f66..6c05f2b3082 100644 --- a/Master/texmf-dist/doc/latex/hyperref/README +++ b/Master/texmf-dist/doc/latex/hyperref/README @@ -1,4 +1,4 @@ -README for hyperref bundle, 2012/07/28 +README for hyperref bundle, 2012/08/18 TABLE OF CONTENTS @@ -198,6 +198,31 @@ Option `psdextra that the short names are available. Then \geq can directly be used instead of \textgeq. +\XeTeXLinkBox +------------- + When XeTeX generates a link annotation, it does not look + at the boxes (as the other drivers), but only at the character + glyphs. If there are no glyphs (images, rules, ...), then + it does not generate a link annotation. Macro \XeTeXLinkBox + puts its argument in a box and adds spaces at the lower left + and upper right corners. An additional margin can be specified + by setting it to the dimen register \XeTeXLinkMargin. The default + is 2pt. + + Example: + % xelatex + \documentclass{article} + \usepackage{hyperref} + \setlength{\XeTeXLinkMargin}{1pt} + \begin{document} + \section{Hello World} + \newpage + \label{sec:hello} + \hyperref[sec:hello]{% + \XeTeXLinkBox{\rule{10mm}{10mm}}% + } + \end{document} + \IfHyperBooleanExists and \IfHyperBoolean ----------------------------------------- \IfHyperBooleanExists{OPTION}{YES}{NO} |