diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/hyperref/README')
-rw-r--r-- | Master/texmf-dist/doc/latex/hyperref/README | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/hyperref/README b/Master/texmf-dist/doc/latex/hyperref/README index 4d640c454c2..6232f50ea4a 100644 --- a/Master/texmf-dist/doc/latex/hyperref/README +++ b/Master/texmf-dist/doc/latex/hyperref/README @@ -174,6 +174,22 @@ other packages: 5 NEW FEATURES ============== +Expert feature \HyperDestNameFilter +----------------------------------- + Since version 2008/07/16 v6.78c. + + Each anchor name and inner link name is put through + filter \HyperDestNameFilter. The default behaviour is + to let the name unchanged: + \def\HyperDestNameFilter#1{#1} + It can be redefined to prepend or append something, + to avoid name collisions if several files are + merged together. + + For example, two documents with hyperref can be generated + using different prefixes for destination names. Then it is + easier to merge them with 'dviconcat' or other merge utilities. + Experimental option `ocgcolorlinks' --------------------`-------------' The idea are colored links, when viewed, but printed without colors. @@ -944,6 +960,25 @@ vietnam 8 HINTS ======= +Spaces in option values +----------------------- + Unhappily LaTeX strips spaces from options if they are given + in \documentclass or \usepackage (or \RequirePackage), e.g.: + \usepackage[pdfborder=0 0 1]{hyperref} + Package hyperref now gets + pdfborder=001 + and the result is an invalid PDF file. + As workaround braces can be used: + \usepackage[pdfborder={0 0 1}]{hyperref} + Some options can also be given in \hypersetup: + \hypersetup{pdfborder=0 0 1} + In \hypersetup the options are directly processed as key value + options (see package keyval) without space stripping in the value part. + + Alternatively, LaTeX's option handling system can be adapted + to key value options by one of the packages "kvoptions-patch" + (from project "kvoptions") or "xkvltxp" (from project "xsetkeys"). + Index with makeindex -------------------- * Package hyperref adds \hyperpage commands by the encap |