diff options
author | Karl Berry <karl@freefriends.org> | 2014-08-06 22:48:20 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-08-06 22:48:20 +0000 |
commit | ac09a432533ee4e0c359eaa4e05d88e739609f59 (patch) | |
tree | 1456c12772fc0c7881751e762fd87a569b89d45b /Master | |
parent | 1da164bf9c4fed03b30b98439a239f5a1873f9ae (diff) |
animate (6aug14)
git-svn-id: svn://tug.org/texlive/trunk@34852 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/latex/animate/ChangeLog | 4 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/animate/README | 2 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/animate/animate.pdf | bin | 3684867 -> 3689295 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/animate/animate.tex | 1 | ||||
-rw-r--r-- | Master/texmf-dist/tex/latex/animate/animate.sty | 34 |
5 files changed, 24 insertions, 17 deletions
diff --git a/Master/texmf-dist/doc/latex/animate/ChangeLog b/Master/texmf-dist/doc/latex/animate/ChangeLog index e9f71692fdf..7416fa9d35d 100644 --- a/Master/texmf-dist/doc/latex/animate/ChangeLog +++ b/Master/texmf-dist/doc/latex/animate/ChangeLog @@ -1,3 +1,7 @@ +2014-08-06 + * Fix: bug analysed by egreg on TeX.SX + http://tex.stackexchange.com/q/194407 + 2014-07-02 * Fix: compilation error when used in `tabular' environment diff --git a/Master/texmf-dist/doc/latex/animate/README b/Master/texmf-dist/doc/latex/animate/README index af98656279f..b522816f591 100644 --- a/Master/texmf-dist/doc/latex/animate/README +++ b/Master/texmf-dist/doc/latex/animate/README @@ -86,7 +86,7 @@ Installation: After installation, update the filename database by running `texhash' on the command line. - MiKTeX users should run the package manager for installation. + TeXLive and MiKTeX users should run the package manager for installation. License: diff --git a/Master/texmf-dist/doc/latex/animate/animate.pdf b/Master/texmf-dist/doc/latex/animate/animate.pdf Binary files differindex ac3fadc2912..609d72139e1 100644 --- a/Master/texmf-dist/doc/latex/animate/animate.pdf +++ b/Master/texmf-dist/doc/latex/animate/animate.pdf diff --git a/Master/texmf-dist/doc/latex/animate/animate.tex b/Master/texmf-dist/doc/latex/animate/animate.tex index 3f1e902f64a..8a2fa50e63e 100644 --- a/Master/texmf-dist/doc/latex/animate/animate.tex +++ b/Master/texmf-dist/doc/latex/animate/animate.tex @@ -1107,6 +1107,7 @@ dt dt Tm nT mul { % pop } \makeatother \end{VerbatimOut} +\def\bslsh{\\} \begin{VerbatimOut}{metro.txt} ::0x0,1 : annotRM['click'].callAS('play'); ::2 diff --git a/Master/texmf-dist/tex/latex/animate/animate.sty b/Master/texmf-dist/tex/latex/animate/animate.sty index 8930ac048f1..240e739c5d6 100644 --- a/Master/texmf-dist/tex/latex/animate/animate.sty +++ b/Master/texmf-dist/tex/latex/animate/animate.sty @@ -13,7 +13,7 @@ \NeedsTeXFormat{LaTeX2e} -\def\@anim@version{2014/07/02} +\def\@anim@version{2014/08/06} \ProvidesPackage{animate} [\@anim@version\space PDF animations from files and inline graphics] @@ -2422,11 +2422,6 @@ \else% \@anim@@sanitize#2\@nil% \fi% - \global\catcode`\#=12% - \global\let\@anim@newline=\\\global\let\\=\@anim@bksl% - \global\let\@anim@leftbrace=\{\global\let\{=\@anim@lbr% - \global\let\@anim@rightbrace=\}\global\let\}=\@anim@rbr% - \global\let\@anim@percent=\%\global\let\%=\@anim@per% } \def\@anim@@endsanitize#1#2\@nil{% \global\catcode`#1=\csname @anim@\number`#1\endcsname% @@ -2434,16 +2429,23 @@ \else% \@anim@@endsanitize#2\@nil% \fi% - \global\let\%=\@anim@percent% - \global\let\}=\@anim@rightbrace% - \global\let\{=\@anim@leftbrace% - \global\let\\=\@anim@newline% - \global\catcode`\#=6% -} -\def\@anim@sanitize{{% - \@anim@@sanitize.:;?!/"'*+,->=<$&@][)(^_`|~\@nil}}% -\def\@anim@endsanitize{{% - \@anim@@endsanitize.:;?!/"'*+,->=<$&@][)(^_`|~\@nil}}% +} +\def\@anim@sanitize{% + {\@anim@@sanitize.:;?!/"'*+,->=<$&@][)(^_`|~\@nil}% + \catcode`\#=12% + \let\@anim@newline=\\\let\\=\@anim@bksl% + \let\@anim@leftbrace=\{\let\{=\@anim@lbr% + \let\@anim@rightbrace=\}\let\}=\@anim@rbr% + \let\@anim@percent=\%\let\%=\@anim@per% +}% +\def\@anim@endsanitize{% + {\@anim@@endsanitize.:;?!/"'*+,->=<$&@][)(^_`|~\@nil}% + \let\%=\@anim@percent% + \let\}=\@anim@rightbrace% + \let\{=\@anim@leftbrace% + \let\\=\@anim@newline% + \catcode`\#=6% +}% %building timeline from timeline file \newread\@anim@@tmlnfile |