[O] \vert not converted to | when org-table-export applied

2012-06-20 Thread Eythan Weg
Hi, I try to export a table with \vert symbol embedded in it to a tab separated file by use of org-table-export: | A\vert B | C | |1 | 2 | |3 | 4 | but the \vert in the first line is not converted to '|' as shown here: A\vert BC 1 2 3 4 Is this a bug o

Re: [O] exporting a table

2012-06-18 Thread Eythan Weg
Nick Dokos Mon, 18 Jun 2012 16:44:30 -0400 Eythan Weg wrote: > > Hi, > > > I expect that applying org-table-export on > > | A\vert B | C | > |1 | 2 | > > would result in > > A|BC > 1

[O] exporting a table

2012-06-18 Thread Eythan Weg
Hi, I expect that applying org-table-export on | A\vert B | C | |1 | 2 | would result in A|B C 1 2 but instead \vert remains embedded in the exported table. Is this correct? Thank you. Eythan

Re: [O] Odd export of a selected tree

2011-10-23 Thread Eythan Weg
Bastien Sat, 22 Oct 2011 12:35:51 +0200 Hi Eythan, eythan...@gmail.com (Eythan Weg) writes: > Hi, > > Consider a file containing something like: > > * Test :export: > * Test 2 > > > And now exp

Re: [O] Odd export of a selected tree

2011-09-08 Thread Eythan Weg
t...@tsdye.com (Thomas S. Dye) Thu, 08 Sep 2011 05:29:38 -1000 eythan...@gmail.com (Eythan Weg) writes: > Hi, > > Consider a file containing something like: > > * Test :export: > * Test 2 > > > And

[O] Odd export of a selected tree

2011-09-08 Thread Eythan Weg
Hi, Consider a file containing something like: * Test :export: * Test 2 And now export it, say to ascii format. I get a buffer containing: 1 Test :export: Is this expected? Thanks, Eythan

Re: [O] exporting babel stuff to pdf or latex

2011-08-31 Thread Eythan Weg
Nick Dokos Wed, 31 Aug 2011 10:10:28 -0400 Eythan Weg wrote: > > Hi, > > I need help with exporting this: > > #+begin_src R :exports both :results output > Lst <- list(length=c(1,7,9), time=c(0.5,10,11)) > print(Lst$time) >

[O] exporting babel stuff to pdf or latex

2011-08-31 Thread Eythan Weg
Hi, I need help with exporting this: #+begin_src R :exports both :results output Lst <- list(length=c(1,7,9), time=c(0.5,10,11)) print(Lst$time) #+end_src It fails with these messages Export buffer: Exporting to PDF... Exporting to LaTeX... org-babel-exp processing... org-

Re: [O] babel: textual output and graphic results

2011-06-26 Thread Eythan Weg
True again. It solves the problem by bypassing a babel's weakness, I think. Eythan Rainer M Krug Fri, 24 Jun 2011 14:28:41 +0200 On Fri, Jun 24, 2011 at 2:05 PM, Eythan Weg wrote: Thank you. True. But, I would like, if possible, to have the

Re: [O] babel: textual output and graphic results

2011-06-26 Thread Eythan Weg
Eric Schulte Fri, 24 Jun 2011 11:11:52 -0700 eythan...@gmail.com (Eythan Weg) writes: > Hi, > > How could I effect the plot saved in a file and the output produced > shown in the buffer by using a single execution of R in the following > snippet? >

[O] babel: textual output and graphic results

2011-06-24 Thread Eythan Weg
Hi, How could I effect the plot saved in a file and the output produced shown in the buffer by using a single execution of R in the following snippet? #+begin_src R :results output :session print(seq(1,10)) plot(seq(1,10)) #+end_src Thank you. Eythan