Consider a file minimal.Rnw containing
\documentclass[
paper=a4,% 210mm × 297mm
pagesize% write page size to dvi
]{article}
\usepackage[american]{babel}
\usepackage{fancyvrb}
\begin{document}
\SweaveOpts{engine=R}
\SweaveOpts{pdf=TRUE}
Some text
\end{document}
When I compile it with R CMD Sweave, I obtain a .tex file which looks like this:
\documentclass[%
NA
pagesize% write page size to dvi
]{article}
\usepackage[american]{babel}
\usepackage{fancyvrb}
\usepackage{Sweave}
\begin{document}
Some text
\end{document}
I have two questions:
1) Why is the first option to \documentclass replaced by NA and how can this be avoided?
2) I read that \SweaveOpts should be given after \begin{document} but
apparently it creates empty lines (which correspond to new paragraphs in the
generated .tex file). How can I prevent this from happening?
In case this matters: I work with Emacs 24 on Mac OS X 10.7.3 with R 2.14.0 and TeXLive 2011.
UPDATE
Concerning problem 1), I modified my call to Sweave (from Emacs) in .emacs as follows (to tell Sweave the file encoding) -- still, it creates NA in the line containing the non-ASCII character:
(add-hook 'Rnw-mode-hook
(lambda ()
(add-to-list 'TeX-command-list
'("Sweave" "R CMD Sweave --encoding='utf8' %s"
TeX-run-command nil t :help "Run Sweave") t)
(setq TeX-command-default "Sweave")))
\% 210mm × 297mm. Not tested. – MYaseen208 Feb 28 '12 at 22:29\SweaveOptsbefore\begin{document}, the empty lines are inserted there. I consider this a conceptual bug, certainly not too important, though. With 1) I still don't know. What frightens me is that I don't know what other parts I don't know will be automatically replaced by Sweave. That's certainly more dangerous – Marius Hofert Feb 28 '12 at 23:06\SweaveOptsdoes not have to be after\begin{document}; I usually put it before\documentclass– Brian Diggs Feb 28 '12 at 23:32xby,solves theNAissue. Still, it shouldn't matter that a comment changes something (I guess) – Marius Hofert Feb 28 '12 at 23:49