如何将 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)$ 变大。怎样做?