diff options
author | Karl Berry <karl@freefriends.org> | 2012-11-02 23:42:33 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2012-11-02 23:42:33 +0000 |
commit | 8241643853c19b10460dc0c1e5ee1a716d6a6d08 (patch) | |
tree | db64ac3a55d375998749e4d2fef7a6c046e1a014 /Master/texmf-dist/source/latex/hyperref | |
parent | 245ddb2d09fafe8a9e776e08cbfcbf40a8d66a63 (diff) |
hyperref (1nov12)
git-svn-id: svn://tug.org/texlive/trunk@28159 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/hyperref')
-rw-r--r-- | Master/texmf-dist/source/latex/hyperref/hyperref.dtx | 16 | ||||
-rw-r--r-- | Master/texmf-dist/source/latex/hyperref/nameref.dtx | 20 |
2 files changed, 32 insertions, 4 deletions
diff --git a/Master/texmf-dist/source/latex/hyperref/hyperref.dtx b/Master/texmf-dist/source/latex/hyperref/hyperref.dtx index 823a17e8158..9bfdd062030 100644 --- a/Master/texmf-dist/source/latex/hyperref/hyperref.dtx +++ b/Master/texmf-dist/source/latex/hyperref/hyperref.dtx @@ -45,7 +45,7 @@ %<puvnenc>\ProvidesFile{puvnenc.def} %<puarenc>\ProvidesFile{puarenc.def} %<psdextra>\ProvidesFile{psdextra.def} -%<!none> [2012/10/15 v6.83k % +%<!none> [2012/10/31 v6.83l % %<package> Hypertext links for LaTeX] %<nohyperref> Dummy hyperref (SR)] %<driver> Hyperref documentation driver file] @@ -147,7 +147,7 @@ \end{document} %</driver> % \fi -% \CheckSum{39635} +% \CheckSum{39643} % % \MakeShortVerb{|} % \StopEventually{} @@ -2256,6 +2256,18 @@ % \end{macrocode} % \end{macro} % +% (Partial) fix for bug in \texttt{frenchb.ldf} 2010/08/21 v2.5a that +% destroys \cs{pdfstringdefDisableCommands} after usage +% in \cs{AtBeginDocument}. +% \begin{macrocode} +\let\HyPsd@pdfstringdefDisableCommands\pdfstringdefDisableCommands +\AtBeginDocument{% + \@ifundefined{pdfstringdefDisableCommands}{% + \let\pdfstringdefDisableCommands\HyPsd@pdfstringdefDisableCommands + }{}% +} +% \end{macrocode} +% % \begin{macro}{\pdfstringdefWarn} % The purpose of \cmd{\pdfstringdefWarn} is to produce % a warning message, so the user can see, that something diff --git a/Master/texmf-dist/source/latex/hyperref/nameref.dtx b/Master/texmf-dist/source/latex/hyperref/nameref.dtx index fff510b9bf6..584ae982bd0 100644 --- a/Master/texmf-dist/source/latex/hyperref/nameref.dtx +++ b/Master/texmf-dist/source/latex/hyperref/nameref.dtx @@ -30,9 +30,9 @@ %<driver>\ProvidesFile{nameref.drv} % \fi % \ProvidesFile{nameref.dtx} - [2012/07/31 v2.42 Cross-referencing by name of section]% + [2012/10/27 v2.43 Cross-referencing by name of section]% % -% \CheckSum{700} +% \CheckSum{714} % % \iffalse %<*driver> @@ -469,6 +469,22 @@ \NR@PatchBeamer{section}% \NR@PatchBeamer{subsection}% \NR@PatchBeamer{subsubsection}% +% \end{macrocode} +% +% Theorem names. +% \begin{macrocode} + \addtobeamertemplate{theorem begin}{% + \expandafter\NR@gettitle\expandafter{\inserttheoremaddition}% + }{}% +% \end{macrocode} +% \begin{macrocode} + \@ifdefinable{\NRorg@beamer@descriptionitem}{% + \let\NRorg@beamer@descriptionitem\beamer@descriptionitem + \renewcommand{\beamer@descriptionitem}[1]{% + \NR@gettitle{#1}% + \NRorg@beamer@descriptionitem{#1}% + }% + }% }{} % \end{macrocode} % |