I'm trying to use Sweave to generate a statistical report, and am trying to put a caption on an xtable, however if I include the percent symbol this breaks things.
Some example code
<<label=Analyte2_Results, results=tex, echo=FALSE>>=
print(xtable(result[[2]], caption=paste(levels(vardata$Analyte)[1],
" percent bias and precision estimates with 95 \% confidence intervals",sep="")),
tabular.environment='longtable',
latex.environments=c("center"),
floating=FALSE,
include.rownames=FALSE)
@
If I use % or \% then the Sweave process works but Latex doesn't, if I try \% then Sweave fails. There doesn't seem to be an alternative way to specify a percent symbol in Latex
Is there a way to actually put a Percent symbol in the caption ?