Xfig
如何在 xfig 中使用特殊字元
我正在嘗試在
xfig
. 我將字元程式碼放在$
符號中,就像通常在乳膠中所做的那樣$ x_1 $ 或者 $ \mu $ 或者 $ \sigma $
我嘗試設置
Text Flags
,Special Flag = Special
,但沒有幫助。當我以格式導出文件時.eps
,字元顯示為 ie$x_1$ or $\mu$ or $\sigma$
。如何解決這個問題。
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}