summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/hyperref
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-10-14 17:59:50 +0000
committerKarl Berry <karl@freefriends.org>2012-10-14 17:59:50 +0000
commitf9847227d435563b8d1d02a802e446654f51fd70 (patch)
treea610b8a89d202040d9e9be1db95e9fb7019b30b2 /Master/texmf-dist/doc/latex/hyperref
parentddaa801875543cd284c57fee83ae09524f487319 (diff)
hyperref (14oct12)
git-svn-id: svn://tug.org/texlive/trunk@27965 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/hyperref')
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/ChangeLog24
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/ChangeLog.pdfbin173245 -> 174818 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/README53
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/README.pdfbin115802 -> 117611 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/backref.pdfbin169374 -> 169374 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/hyperref.pdfbin2356014 -> 2370340 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hyperref/nameref.pdfbin162450 -> 162450 bytes
7 files changed, 76 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/latex/hyperref/ChangeLog b/Master/texmf-dist/doc/latex/hyperref/ChangeLog
index f26eec545f2..d6bd12b8312 100644
--- a/Master/texmf-dist/doc/latex/hyperref/ChangeLog
+++ b/Master/texmf-dist/doc/latex/hyperref/ChangeLog
@@ -1,3 +1,27 @@
+2012-10-13 6.83j Heiko Oberdiek
+ * 6.83j
+ * PDF forms/hpdftex.def: Field option `calculatesortkey' added
+ (pdfTeX/LuateX only) to specify the calculation order for
+ calculated fields.
+ * Option `pdflinkmargin' implemented for pdfmark drivers.
+
+2012-10-12 6.83i Heiko Oberdiek
+ * 6.83i
+ * PDF forms: /CO (calculation order) is set for fields with
+ calculations. Only document order is supported currently.
+ * pdfmark.def: /Fields is set like in the other PDF form drivers.
+
+2012-10-11 6.83h Heiko Oberdiek
+ * 6.83h
+ * If `hyperref' is loaded in the document class, then it misses
+ the detection of package `tex4ht' of `htlatex' because it is
+ loaded after the documentclass. Therefore another test for
+ `\HCode' is added that is defined by `htlatex'.
+ * The setting of additional information entries is done globally
+ like the other standard options (pdfauthor, pdftitle, ...)
+ for the information dictionary. (Bug report:
+ http://tex.stackexchange.com/q/75684/16967)
+
2012-09-27 6.83g Heiko Oberdiek
* 6.83g
* Fix for \hyper@link@.
diff --git a/Master/texmf-dist/doc/latex/hyperref/ChangeLog.pdf b/Master/texmf-dist/doc/latex/hyperref/ChangeLog.pdf
index f7180e144ff..55be977fead 100644
--- a/Master/texmf-dist/doc/latex/hyperref/ChangeLog.pdf
+++ b/Master/texmf-dist/doc/latex/hyperref/ChangeLog.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hyperref/README b/Master/texmf-dist/doc/latex/hyperref/README
index 8351e4f7c38..80b8a4a4d84 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/09/26
+README for hyperref bundle, 2012/10/13
TABLE OF CONTENTS
@@ -147,6 +147,8 @@ other packages:
CTAN:macros/latex/contrib/oberdiek/intcalc.pdf
* keyval.sty
CTAN:macros/latex/required/graphics/
+* kvdefinekeys.sty
+ CTAN:macros/latex/contrib/oberdiek/kvsetkeys.pdf
* kvoptions.sty:
CTAN:macros/latex/contrib/oberdiek/kvoptions.pdf
* kvsetkeys.sty:
@@ -183,6 +185,55 @@ other packages:
5 NEW FEATURES
==============
+Option `pdflinkmargin'
+----------------------
+ Option `pdflinkmargin' is an experimental option for specifying
+ a link margin, if the driver supports this. Default is 1 pt for
+ supporting drivers.
+
+ pdfTeX:
+ * The link area also depends on the surrounding box.
+ * Settings have local effect.
+ * When a page is shipped out, pdfTeX uses the current setting
+ of the link margin for all links on the page.
+
+ pdfmark:
+ * Settings have global effect.
+
+ Other drivers: Unsupported.
+
+Field option `calculatesortkey'
+-------------------------------
+ Fields with calculated values are calculated in document order
+ by default. If calculated field values depend on other calculated
+ fields that appear later in the document, then the correct calculation
+ order can be specified with option `calculatesortkey'. Its value is
+ used as key to lexicographically sort the calculated fields.
+ The sort key do not need to be unique. Fields that share the same
+ key are sorted in document order.
+
+ Currently the field option `calculatesortkey' is only supported by
+ the driver for pdfTeX.
+
+Option `localanchorname'
+------------------------
+ When an anchor is set (e.g. via \refstepcounter), then the
+ anchor name is globally set to the current anchor name.
+
+ For example:
+ \section{Foobar}
+ \begin{equation}\end{equation}
+ \label{sec:foobar}
+ With the default global setting (localanchorname=false)
+ a reference to `sec:foobar' jumps to the equation before.
+ With option `localanchorname' the anchor of the equation
+ is forgotten after the environment and the reference
+ `sec:foobar' jumps to the section title.
+
+ Option `localanchorname' is an experimental option, there
+ might be situations, where the anchor name is not available
+ as expected.
+
Option `customdriver'
---------------------
The value of option `customdriver' is the name of an external
diff --git a/Master/texmf-dist/doc/latex/hyperref/README.pdf b/Master/texmf-dist/doc/latex/hyperref/README.pdf
index 53ae508d50c..b7b54dd64bb 100644
--- a/Master/texmf-dist/doc/latex/hyperref/README.pdf
+++ b/Master/texmf-dist/doc/latex/hyperref/README.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hyperref/backref.pdf b/Master/texmf-dist/doc/latex/hyperref/backref.pdf
index f653e4777ed..212cac72955 100644
--- a/Master/texmf-dist/doc/latex/hyperref/backref.pdf
+++ b/Master/texmf-dist/doc/latex/hyperref/backref.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hyperref/hyperref.pdf b/Master/texmf-dist/doc/latex/hyperref/hyperref.pdf
index ce664746b74..855f3318c50 100644
--- a/Master/texmf-dist/doc/latex/hyperref/hyperref.pdf
+++ b/Master/texmf-dist/doc/latex/hyperref/hyperref.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hyperref/nameref.pdf b/Master/texmf-dist/doc/latex/hyperref/nameref.pdf
index 8edb66ce690..bc93dc40034 100644
--- a/Master/texmf-dist/doc/latex/hyperref/nameref.pdf
+++ b/Master/texmf-dist/doc/latex/hyperref/nameref.pdf
Binary files differ