使用 Inkscape 创建 pdf_tex 文件,字体大小问题

使用 Inkscape 创建 pdf_tex 文件,字体大小问题

我目前正在尝试找出如何使用 latex 字体创建图片。如标题所示,我正在使用 Inkscape 和 pdf_tex_function 来执行此操作。

当我在 Latex 中导入图片时,显然字体大小设置为 Latex 默认字体大小。但是如果 Latex 文件中的字体大小不同,图片看起来会有所不同。如果我绘制的图片完全适合 12 pt 字体大小,那么当文档变为 5 pt 时就不行了。所以我必须更改图片并将其缩小,以便字体大小也变小并在 Inkscape 中达到 5 pt。

有可能避免这种情况吗?我的意思是,难道不能创建任意大小的图片并按比例将其放入乳胶中吗?

我附上了一些例子。

Inkscape 与不同 Latex 字体大小的比较

另外,对于我创建的图片,我还编写了以下简单的代码,使其完美适合 12 pt。

\documentclass[final, 5pt, twocolumn]{elsarticle}
\usepackage{color}
\usepackage{graphicx}
\usepackage{blindtext}

\begin{document}
    \begin{figure}[htp]
        \centering\resizebox{\textwidth}{!}
%% Include a pic with 12 pt Text in Inkscape
        {\input{12pttex.pdf_tex}} 
\end{figure}

\end{document}

相关内容