Re: [O] [new exporter]: LaTeX output from babel escapes comment delimiter

2012-10-25 Thread Michael Gauland
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

Re: [O] [new exporter]: LaTeX output from babel escapes comment delimiter

2012-10-25 Thread Nicolas Goaziou
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

Re: [O] [new exporter]: LaTeX output from babel escapes comment delimiter

2012-10-24 Thread Nick Dokos
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

Re: [O] [new exporter]: LaTeX output from babel escapes comment delimiter

2012-10-24 Thread Thomas S. Dye
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

[O] [new exporter]: LaTeX output from babel escapes comment delimiter

2012-10-24 Thread Michael Gauland
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