diff options
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r-- | Master/texmf-dist/source/latex/svg/svg.dtx | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/Master/texmf-dist/source/latex/svg/svg.dtx b/Master/texmf-dist/source/latex/svg/svg.dtx index 51a34dc5f74..c28537cd887 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 %</dtx> %<package&identify&main> {svg}{include SVG pictures}% %<package&identify&extract> {svg-extract}{extract graphics from SVG pictures}% - [2020/06/12 v2.02g]% + [2020/06/23 v2.02h]% \@tempb %</dtx|package&identify> % \fi @@ -268,6 +268,7 @@ svg-extract -- Extract independent graphic files from SVG pictures % \changes{v2.02f}{2020/05/06}{command~line~interface of \app{Inkscape~1.0} % is supported}^^A % \changes{v2.02g}{2020/06/12}{fix for mutliple dots in file names (\#27)}^^A +% \changes{v2.02h}{2020/06/23}{fix for package \pkg{transparent} (\#28)}^^A % % % @@ -1983,13 +1984,15 @@ svg-extract -- Extract independent graphic files from SVG pictures }% \fi% % \end{macrocode} -% There is an issue\footnote{\url{https://github.com/ho-tex/oberdiek/issues/62}} -% with package \pkg{transparent}, which currently implements an \emph{invalid} -% check relying on internal commands of package \pkg{pgfsys}, whereas these -% have changed in the latest version. +% There is an issue with package \pkg{transparent}, which currently implements +% an \emph{invalid} check relying on internal commands of package \pkg{pgfsys}, +% whereas these have changed in the latest version.^^A +% \footnote{\url{https://github.com/ho-tex/transparent/issues/3}} % \begin{macrocode} \AfterPackage*{transparent}{% - \@ifpackagelater{transparent}{2018/11/19}{}{\RequirePackage{pgfsys}}% + \ifcsname Gin@driver\endcsname% + \RequirePackage{pgfsys}% + \fi% }% } % \end{macrocode} @@ -3171,6 +3174,12 @@ svg-extract -- Extract independent graphic files from SVG pictures \newcommand*\svg@@input[2][]{% \IfArgIsEmpty{#1}{}{\svg@local@param@set{#1}}% \svg@set@input@path% +% \end{macrocode} +% If the export with \app{Inkscape} was done with \LaTeX~support enabled, the +% corresponding file will be used together with \cs{input}. The necessary +% patches to environment \env{picture} as well as command \cs{includegraphics} +% are made beforehand with \cs{svg@patches}. +% \begin{macrocode} \@svg@tempswatrue% \if@svg@draft% \@svg@tempswafalse% @@ -3179,12 +3188,6 @@ svg-extract -- Extract independent graphic files from SVG pictures \@svg@tempswafalse% \fi% \edef\svg@tempa{#2}% -% \end{macrocode} -% If the export with \app{Inkscape} was done with \LaTeX~support enabled, the -% corresponding file will be used together with \cs{input}. The necessary -% patches to environment \env{picture} as well as command \cs{includegraphics} -% are made beforehand with \cs{svg@patches}. -% \begin{macrocode} \if@svg@tempswa% \svg@patches{\svg@tempa}% \ifnum\value{svg@param@lastpage}=\z@\relax% |