diff options
author | Karl Berry <karl@freefriends.org> | 2018-11-13 22:48:18 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-11-13 22:48:18 +0000 |
commit | 6c23b6c5c4a8d7014a6dfd751bc1cab326902655 (patch) | |
tree | 563acdc4a9fb7e98aa031f90d6ca45c5b1bd01e4 /Master/texmf-dist/source/latex/svg | |
parent | cc6340524af26b48c4d5636163ec23709958929a (diff) |
svg (13nov18)
git-svn-id: svn://tug.org/texlive/trunk@49148 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/svg')
-rw-r--r-- | Master/texmf-dist/source/latex/svg/svg.dtx | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/Master/texmf-dist/source/latex/svg/svg.dtx b/Master/texmf-dist/source/latex/svg/svg.dtx index 3f008e254d4..5c0d749e15a 100644 --- a/Master/texmf-dist/source/latex/svg/svg.dtx +++ b/Master/texmf-dist/source/latex/svg/svg.dtx @@ -115,7 +115,7 @@ svg-extract -- Extract independent graphic files from SVG pictures %<package&option&base>\ProvidesPackage{svg}[% %<package&option&extract>\ProvidesPackage{svg-extract}[% %<*driver|package&option> - 2018/10/17 v2.02a\space% + 2018/11/12 v2.02b\space% %<package&option&base> (include SVG pictures)% %<package&option&extract> (extract independent graphics from SVG pictures)% ] @@ -251,7 +251,11 @@ svg-extract -- Extract independent graphic files from SVG pictures % as well as rotation for extractions (\opt{extractangle}) % }^^A % \changes{v2.02a}{2018/10/17}{% -% fix bug of package \pkg{polyglossia} which fakes \pkg{babel} poorly% +% fix bug for package \pkg{polyglossia} which fakes \pkg{babel} poorly% +% }^^A +% \changes{v2.02b}{2018/11/12}{% +% fix bug for package \pkg{tikzscale} which changes \cs{includegraphics} +% globally% % }^^A % \ToDo{Workaround for missing \cs{transparent} (Lua\TeX lacks support)}[v2.03] % @@ -3220,26 +3224,34 @@ svg-extract -- Extract independent graphic files from SVG pictures % \subsection{Patches} % % \begin{macro}{\svg@patches} +% \changes{v2.02b}{2018/11/12}{% +% fix bug for package \pkg{tikzscale}: store original definitions of +% \cs{picture} and \cs{includegraphics} right after loading package \pkg{svg} +% }^^A +% \begin{macro}{\svg@picture@saved} +% \begin{macro}{\svg@includegraphics@saved} % For including the export results from \app{Inkscape} with \LaTeX~support % enabled, there are some patches necessary for environment \env{picture} and % \cs{includegraphics}. Those patches are done with \cs{svg@patches}. % \begin{macrocode} +\newcommand*\svg@picture@saved{} +\let\svg@picture@saved\picture +\newcommand*\svg@includegraphics@saved{} +\let\svg@includegraphics@saved\includegraphics \newcommand*\svg@patches[1]{% - \let\svg@picture@saved\picture% \let\picture\svg@picture@patched% - \let\svg@includegraphics@saved\includegraphics% \let\includegraphics\svg@includegraphics@patched% \edef\svg@includegraphics@file{#1}% } % \end{macrocode} +% \end{macro}^^A \svg@includegraphics@saved +% \end{macro}^^A \svg@picture@saved % \end{macro}^^A \svg@patches -% \begin{macro}{\svg@picture@saved} % \begin{macro}{\svg@pictur@patched} % In order to provide the possibility specify the desired width of a graphic, % the appropriate \cs{unitlength} is calculated at the beginning of the % \env{picture}~environment. % \begin{macrocode} -\newcommand*\svg@picture@saved{} \newcommand*\svg@picture@patched{} \newcommand*\svg@pictur@patched{} \long\def\svg@picture@patched#1{\svg@pictur@patched@#1} @@ -3279,8 +3291,6 @@ svg-extract -- Extract independent graphic files from SVG pictures } % \end{macrocode} % \end{macro}^^A \svg@pictur@patched -% \end{macro}^^A \svg@picture@saved -% \begin{macro}{\svg@includegraphics@saved} % \begin{macro}{\svg@includegraphics@patched} % \begin{macro}{\svg@includegraphics@file} % The patch to \cs{includegraphics} is meant to dissolve the \app{Inkscape} bug @@ -3297,7 +3307,6 @@ svg-extract -- Extract independent graphic files from SVG pictures \FamilyCounterKey{SVGpatch}{page}{svg@param@currpage} \DefineFamilyKey{SVGpatch}{width}{\FamilyKeyStateProcessed} \newcommand*\svg@includegraphics@file{} -\newcommand*\svg@includegraphics@saved{} \newcommand*\svg@includegraphics@patched[2][]{% \FamilyOptions{SVGpatch}{#1}% % \end{macrocode} @@ -3326,7 +3335,6 @@ svg-extract -- Extract independent graphic files from SVG pictures % \end{macrocode} % \end{macro}^^A \svg@includegraphics@file % \end{macro}^^A \svg@includegraphics@patched -% \end{macro}^^A \svg@includegraphics@saved % % \iffalse %</body> |