[R] Sweave special token \\ from R to latex

Markus Jäntti markus.jantti at iki.fi
Fri Aug 4 15:07:32 CEST 2006


Jan Wijffels wrote:
> Dear helpeRs,
>
> I would like to specify a newline command in R and pass it to latex
> via Sweave such that it corresponds to latex' \\ command. But that
> doesn't seem to be possible. If I Sweave the \n character, it just
> makes a new line in latex but not the \\ command.
>
> Is there a way such that the following code would result in latex in
> blablabla \\ blablabla on different line
>
>
> <<echo=FALSE>>=
>    string <- "blablabla \\ blablabla on different line"
> @
> \Sexpr{string}
>

For reasons that I am unable to account for, you get the desired string
in your .tex file if you do

<<echo=FALSE>>=

    string <- "blablabla \\\\\\\\ blablabla on different line"

@

\Sexpr{print(string)}

resulting in the .tex file as

blablabla \\ blablabla on different line


It would seem that using <<echo=FALSE,results=tex>>
would be a good solution.

Markus

>
>
>
> Thanks for the help,
> Jan
>
> Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide
http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>


-- 
Markus Jantti
Abo Akademi University
markus.jantti at iki.fi
http://www.iki.fi/~mjantti
###########################################

This message has been scanned by F-Secure Anti-Virus for Mic...{{dropped}}



More information about the R-help mailing list