在R中,我使用expression(theta[l])
,以便我的繪圖軸的標籤與LaTeX中的$\theta_l$
相同。出於美觀的原因,我寧願顯示$\theta_\ell$
。你可以幫我嗎?軸標籤中的數學表達式
編輯
之前,我做了
plot(1:10, 1:10, xlab=expression(theta[l]))
,我在PDF導出的結果圖像。然後,使用
\begin{figure}[htbp]
\centerline{\includegraphics[scale=.6]{test.pdf}}
\end{figure}
我的照片被插入LaTeX。
繼評論,這裏是我現在做的事:
require(tikzDevice)
tikz("test.tex", standAlone=TRUE, width=5, height=5)
plot(1:10, 1:10, xlab="$\\theta_\\ell$")
dev.off()
tools::texi2pdf('test.tex')
system(paste(getOption('pdfviewer'),'test.pdf'))
然而,當我插入乳膠resuling情節,圖的質量沒有以前好了。還有什麼我可以做的嗎?
@agstudy:Windows。 Linux對我來說也很好。 – Marco 2013-03-18 15:32:49
@Sven Hohenstein:謝謝你的照片:-) – Marco 2013-03-18 15:47:20
Is [this](http://stackoverflow.com/questions/8190087/italic-greek-letters-latex-style-math-in-plot-titles/8190537# 8190537)你在找什麼? – plannapus 2013-03-18 15:51:23