diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/hyperref/README')
-rw-r--r-- | Master/texmf-dist/doc/latex/hyperref/README | 51 |
1 files changed, 43 insertions, 8 deletions
diff --git a/Master/texmf-dist/doc/latex/hyperref/README b/Master/texmf-dist/doc/latex/hyperref/README index 06ca6f8200d..4ec59e9b1c6 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, 2010/03/01 +README for hyperref bundle, 2010/09/01 TABLE OF CONTENTS @@ -299,7 +299,7 @@ Expert feature \HyperDestNameFilter easier to merge them with 'dviconcat' or other merge utilities. Experimental option `ocgcolorlinks' ---------------------`-------------' +----------------------------------- The idea are colored links, when viewed, but printed without colors. This new experimental option `ocgcolorlinks' uses Optional Content Groups, a feature introduced in PDF 1.5. @@ -319,7 +319,7 @@ Experimental option `ocgcolorlinks' line: dvipdfmx -V 5 Option `pdfa' --------`----' +------------- The new option `pdfa' tries to avoid violations of PDF/A in code generated by hyperref. However, the result is usually not in PDF/A, because many features aren't controlled by hyperref (XMP metadata, @@ -350,7 +350,7 @@ Option `pdfa' the PDF file to PDF/A. Option `linktoc' added --------`-------'------ +---------------------- The new option `linktoc' allows more control which part of an entry in the table of contents is made into a link: * `linktoc=none' (no links) @@ -359,7 +359,7 @@ Option `linktoc' added * `linktoc=all' (both the section and page part are links) Option `pdfnewwindow' changed --------`------------'-------- +----------------------------- Before 6.77b: * pdfnewwindow=true --> /NewWindow true * pdfnewwindow=false --> (absent) @@ -441,7 +441,7 @@ Flag options for PDF forms * PDF (not supported by Acrobat Reader) Option `pdfversion' --------`----------' +------------------- This is an experimental option. It notifies `hyperref' about the intended PDF version. Currently this is used in code for PDF forms (implementation notes 116 and 122 of PDF spec 1.7). @@ -470,7 +470,7 @@ Option `pdfversion' features. Field option `name' --------------`----' +------------------- Many form objects uses the label argument for several purposes: * Layouted label. @@ -482,7 +482,7 @@ Field option `name' the value should consist of letters only. Option `pdfencoding' --------`-----------' +-------------------- The PDF format allows two encodings for bookmarks and entries in the information dictionary: PDFDocEncoding and Unicode as UTF-16BE. Option "pdfencoding" selects between these encodings: @@ -1190,6 +1190,14 @@ Wrapped/broken link support \url. (See thread "hyperref.sty, breaklinks and url.sty 3.2" in comp.text.tex 2005-09). +Links across pages +------------------ + In general they have problems: + * Some driver doesn't support them at all (see above). + * The driver allows it, but the link result might include + the footer and/or header, or an error message can + occur sometimes. + 8 HINTS ======= @@ -1378,6 +1386,33 @@ C% \end{document} +Subordinate counters +-------------------- + Some counters do not have unique values and require the value + of other counters to be unique. For example, sections or figures + might be numbered within chapters or \newtheorem is used with + an optional counter argument. Internally LaTeX uses \@addtoreset + to reset a counter in dependency to another counter. Package + hyperref hooks into \@addtoreset to catch this situation. + Also \numberwithin of package amsmath is catched by hyperref. + + However, if the definition of subordinate counters take place + before hyperref is loaded, the old meaning of \@addtoreset is + called without hyperref's additions. Then the companion counter + macro \theH<counter> can be redefined accordingly. Or move the + definition of subordinate counters after hyperref is loaded. + + Example for \newtheorem, problematic case: + \newtheorem{corA}{CorollaryA}[section] + \usepackage{hyperref} + Solution a) + \usepackage{hyperref} + \newtheorem{corA}{CorollaryA}[section} + Solution b) + \newtheorem{corA}{CorollaryA}[section] + \usepackage{hyperref} + \newcommand*{\theHcorA}{\theHsection.\number\value{corA}} + 9 AUTHORS/MAINTAINERS ===================== |