Rev 35372 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{mtext}\title{Write Text into the Margins of a Plot}% mtext is defined via do_mtext(.) in src/main/plot.c ---\description{Text is written in one of the four margins of the current figure regionor one of the outer margins of the device region.}\usage{mtext(text, side = 3, line = 0, outer = FALSE, at = NA,adj = NA, padj = NA, cex = NA, col = NA, font = NA, \dots)}\alias{mtext}\arguments{\item{text}{one or more character strings or expressions.}\item{side}{on which side of the plot (1=bottom, 2=left, 3=top, 4=right).}\item{line}{on which MARgin line, starting at 0 counting outwards.}\item{outer}{use outer margins if available.}\item{at}{give location in user-coordinates. If \code{length(at)==0}(the default), the location will be determined by \code{adj}.}\item{adj}{adjustment for each string in reading direction. Forstrings parallel to the axes, \code{adj = 0} means left or bottomalignment, and \code{adj = 1} means right or top alignment.If \code{adj} is not a finite value (the default), the value of\code{par("las")} determines the adjustment. For strings plottedparallel to the axis the default is to centre the string.}\item{padj}{adjustment for each string perpendicular to the readingdirection (which is controlled by \code{adj}). For strings parallelto the axes, \code{padj = 0} means right or top alignment,and \code{padj = 1} means left or bottom alignment.If \code{padj} is not a finite value (the default), the value of\code{par("las")} determines the adjustment. For strings plottedperpendicular to the axis the default is to centre the string.}\item{cex}{character expansion factor. \code{NULL} and \code{NA}are equivalent to \code{1.0}. This is an absolute measure, notscaled by \code{par("cex")} or by setting \code{par("mfrow")}or \code{par("mfcol")}. Can be a vector.}\item{col}{color to use. Can be a vector. \code{NA} values (thedefault) mean use \code{par("col")}.}\item{font}{font for text. Can be a vector. \code{NA} values (thedefault) mean use \code{par("font")}.}\item{\dots}{Further graphical parameters (see \code{\link{par}}), including\code{xpd}. (This defaults to the figure region unless\code{outer = TRUE}, otherwise the device region. It can only beincreased.)}}\details{The \dQuote{user coordinates} in the outer margins always range from zero toone, and are not affected by the user coordinates in the figureregion(s) --- \R is differing here from other implementations of S.The arguments \code{side}, \code{line}, \code{at}, \code{at},\code{adj}, the further graphical parameters and even \code{outer} canbe vectors, and recycling will take place to plot as many strings asthe longest of the vector arguments. Note that a vector \code{adj}has a different meaning from \code{\link{text}}.\code{adj = 0.5} will centre the string, but for \code{outer=TRUE} onthe device region rather than the plot region.Parameter \code{las} will determine the orientation of the string(s).For strings plotted perpendicular to the axis the default justificationis to place the end of the string nearest the axis on the specifiedline. (Note that this differs from S, which uses \code{srt} if\code{at} is supplied and \code{las} if it is not.)Note that if the text is to be plotted perpendicular to the axis,\code{adj} determines the justification of the string \emph{and} theposition along the axis unless \code{at} is specified.}\section{Side Effects}{The given text is written onto the current plot.}\references{Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)\emph{The New S Language}.Wadsworth \& Brooks/Cole.}\seealso{\code{\link{title}}, \code{\link{text}}, \code{\link{plot}},\code{\link{par}};\code{\link{plotmath}} for details on mathematical annotation.}\examples{plot(1:10, (-4:5)^2, main="Parabola Points", xlab="xlab")mtext("10 of them")for(s in 1:4)mtext(paste("mtext(..., line= -1, {side, col, font} = ",s,", cex = ", (1+s)/2, ")"), line = -1,side=s, col=s, font=s, cex= (1+s)/2)mtext("mtext(..., line= -2)", line = -2)mtext("mtext(..., line= -2, adj = 0)", line = -2, adj =0)##--- log axis :plot(1:10, exp(1:10), log='y', main="log='y'", xlab="xlab")for(s in 1:4) mtext(paste("mtext(...,side=",s,")"), side=s)}\keyword{aplot}