Thanks for trying to reproduce this. I tried again from 'emacs -Q', and couldn't
reproduce it either. I'm concluding it's due to some cruft in my .emacs file,
and not a problem with the exporter.
--Mike
Hello,
Nick Dokos writes:
> But even in the original form below, I cannot reproduce Michael's problem: the
> % signs are not escaped. I get
I cannot reproduce it either.
Regards,
--
Nicolas Goaziou
Thomas S. Dye wrote:
> Aloha Mike,
>
> It looks like your source block and results are indented. IIRC, that's
> not a good thing.
>
> This might work better:
>
> #+name: gauland-eg
> #+HEADER: :results output raw
> #+HEADER: :exports results
> #+BEGIN_SRC R
> library(xtable)
> library(asc
Aloha Mike,
It looks like your source block and results are indented. IIRC, that's
not a good thing.
This might work better:
#+name: gauland-eg
#+HEADER: :results output raw
#+HEADER: :exports results
#+BEGIN_SRC R
library(xtable)
library(ascii)
print(ascii(xtable(matrix(c(1,2,3,4),nrow=2
I use the xtables package in R to generate nice-looking tables for LaTeX output,
as in the snippet below. The new exporter escapes the % symbol in the R output,
so that the comments generated by xtable are no longer comments.
* Snippet
#+HEADER: :results output latex
#+HEADER: :exports result