如何将ps/pdf中从tex得到的图形转换为eps

如何将ps/pdf中从tex得到的图形转换为eps

如何将 ps/pdf 中从 tex 获得的图形转换为 eps,以便数学符号保持完整。

\documentclass[tikz, margin=3mm]{standalone}
\usetikzlibrary{decorations.markings}
    \begin{document}
    \begin{tikzpicture}[%x=2cm,y=2cm
        dot/.style = {circle, fill,
                      inner sep=.3ex,
                      }
                            ]
    \draw[-latex, thick, draw=black] (0,0)--(1,0) node [right] {$x$};
    \draw[-latex, thick, draw=black] (0,0)--(0,1) node [above] {$y$};
    \draw[scale=1,red,fill=red] (0, 0) circle (.3ex);
        \draw[scale=1] (0, 0) node[anchor=north east]{$O$} ;
        \draw[<<-,line width=2,blue] (0,1) -- (1,1) node[right]{$(x_0,y_0)$};
        %\draw[middlearrow={stealth reversed},line width=2,blue] (0,4) -- (3,4) 
        \draw[scale=1,red,fill=red] (1,1) circle (.3ex);
               \end{tikzpicture}
    \end{document}

问题 1:使用一些在线转换器 (online-convert.com),$(x_0,y_0)$ 中的逗号无法正常显示。我已附上 eps 文件的 jpg(texniccenter 将 tex 转换为 ps,然后在线将 ps 转换为 eps)。

问题 2:我想让数学符号 $(x_0,y_0)$ 变大。怎样做?

在此处输入图片描述

答案1

两者pdftops(带-eps开关)均ps2eps分发微特克斯TeX 直播。您可以在/bin文件夹中找到这些,并从命令行使用它们将 PDF 或 PS 输出转换为 EPS。

相关内容