如何让输入的 pdf_text 以与包含 svg 相同的方式缩放文本?

如何让输入的 pdf_text 以与包含 svg 相同的方式缩放文本?

我希望\scalebox{.5}{\input{file.pdf_latex}}以同样的方式缩放文本\includesvg[scale = .5]{file.svg}

这里是最小工作示例。

对于那些不想访问链接的人,这里是示例中的代码:

\begin{figure}
    \centering
\includesvg[scale = .4]{SeriesCase4.svg}
    \caption{This is what it should be.}
\end{figure}

\begin{figure}
    \centering
    \scalebox{.4}{\input{SeriesCase4.pdf_tex}}
    \caption{The text scales down differently.}
\end{figure}

答案1

解决方案是使用:

\include{calc}

\def\svgscale{.4}{\input{SeriesCase4.pdf_tex}}

这也已被添加到 overleaf 链接中。

这来自这里:http://ctan.net/info/svg-inkscape/InkscapePDFLaTeX.tex

相关内容