I have troubles finding a solution for a basic error I get.
I was trying to use a .Rnw document as it is by default created in RStudio to report some results. I have to admit that I am new to Sweave. However, I used \Sexpr{}in order to represent some numbers defined in a chunk. It did not work and returned the error "Undefined control sequence". So I tried the example given in the official introduction:
<<echo=FALSE>>=
x <- 2
y <- 3
(z <- x + y)
@
However, I get the same error when using $z=\Sexpr{z}$ ("Undefined control sequence")
I assume something fundamentally is wrong with my file, but I can't figure out what. Here my whole document:
\documentclass{report}
\usepackage[noae]{Sweave}
\usepackage{graphicx, verbatim}
\setlength{\textwidth}{6.5in}
\setlength{\textheight}{9in}
\setlength{\oddsidemargin}{0in}
\setlength{\evensidemargin}{0in}
\setlength{\topmargin}{-1.5cm}
\begin{document}
\SweaveOpts{concordance=TRUE}
\begin{center}
\textbf{Data}
\end {center}
\section*{Questionnaires}
\subsection*{Stress}
<<echo=FALSE>>=
x <- 2
y <- 3
(z <- x + y)
@
Defining $z$ as above we get $z=\Sexpr{z}$.
\end{document}