
Last chance! 50% off unlimited learning
Sale ends in
tex
is a little function to save typing when including TeX
commands in graphs that are used with the psfrag package in LaTeX to
typeset any LaTeX text inside a postscript graphic. tex
surrounds the input character string with \tex[options]{}.
This is especially useful for getting Greek letters and math symbols
in postscript graphs. By default tex
returns a string with
psfrag
commands specifying that the string be centered, not
rotated, and not specially enlarged or shrunk.
tex(string, lref='c', psref='c', scale=1, srt=0)
a character string to be processed by psfrag
in LaTeX.
LaTeX reference point for string
. See the psfrag
documentation referenced below. Default is "c"
for centered
(this is also the default for psref
).
PostScript reference point.
scall factor, default is 1
rotation for string
in degrees (default is zero)
tex
returns a modified character string.
Grant MC, Carlisle (1998): The PSfrag System, Version 3. Full
documentation is obtained by searching www.ctan.org for pfgguide.ps
.
postscript
, par
, ps.options
,
mgp.axis.labels
, pdf
,
trellis.device
, setTrellis
# NOT RUN {
pdf('test.pdf')
x <- seq(0,15,length=100)
plot(x, dchisq(x, 5), xlab=tex('$x$'),
ylab=tex('$f(x)$'), type='l')
title(tex('Density Function of the $\chi_{5}^{2}$ Distribution'))
dev.off()
# To process this file in LaTeX do something like
#\documentclass{article}
#\usepackage[scanall]{psfrag}
#\begin{document}
#\begin{figure}
#\includegraphics{test.ps}
#\caption{This is an example}
#\end{figure}
#\end{document}
# }
Run the code above in your browser using DataLab