에 특수문자를 쓰려고 합니다 xfig
. $
라텍스에서 흔히 하는 것처럼 문자 코드를 기호에 넣습니다.
$x_1$ 또는 $\mu$ 또는 $\sigma$
Text Flags
설정 을 시도했지만 Special Flag = Special
도움이 되지 않았습니다. 형식으로 파일을 내보내면 .eps
문자가 ie로 나타납니다 $x_1$ or $\mu$ or $\sigma$
. 이 문제를 해결하는 방법.
답변1
EPS 내보내기는 LaTeX를 실행하지 않으므로 태그가 일반 텍스트로 해석됩니다.
달리기fig2dev
LaTeX를 통해:
fig2dev -Lpstex myfigure.fig >myfigure.pstex
fig2dev -Lpstex_t myfigure.pstex >myfigure.pstex_t
그런 다음 그림은 (La)TeX 문서에 포함됩니다.
\documentclass{minimal}
\usepackage{graphics}
\begin{document}
\input{myfigure.pstex_t}
\end{document}