tex | R Documentation |
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)
string |
a character string to be processed by |
lref |
LaTeX reference point for |
psref |
PostScript reference point. |
scale |
scall factor, default is 1 |
srt |
rotation for |
tex
returns a modified character string.
Frank Harrell
Department of Biostatistics
Vanderbilt University
fh@fharrell.com
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}
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.