Re: [O] Multicolumn figures with the new exporter

2013-06-13 Thread Rasmus
Christopher Witte ch...@witte.net.au writes:

 I can't get the multicolumn option to attr_latex to work with the new
 exporter (to generate a figure* environment).  Any one know how to do
 this?

Please refer to the manual, 12.7.4 LaTeX specific attributes:

  http://orgmode.org/org.html#LaTeX-specific-attributes

In particular

   :float 
  Float environment for the table. Possible values are
  sidewaystable, multicolumn and table. If unspecified, a table
  with a caption will have a table environment. Moreover,
 :placement attribute can specify the positioning of the
  float.

So you'd put something like 

   #+ATTR_LATEX: :float multicolumn

above your picture.


-- 
. . . Stallman was indeed the tallest possible mountain and by
standing on his shoulders you could see forever. . .




Re: [O] Multicolumn figures with the new exporter

2013-06-13 Thread Eric S Fraga
Christopher Witte ch...@witte.net.au writes:

 Hi all,

 I can't get the multicolumn option to attr_latex to work with the new
 exporter (to generate a figure* environment).  Any one know how to do this?

What have you actually tried?  I believe something like

#+attr_latex: :float multicolumn

should work.  If it doesn't, post what you tried!  Always give as much
information as possible to make it a little easier to address your
problems.

-- 
: Eric S Fraga (0xFFFCF67D), Emacs 24.3.50.1, Org release_8.0.3-193-g334581




Re: [O] Multicolumn

2012-08-29 Thread Neuwirth Erich
That is probably what I will have to do.
But since I want both html and LaTeX output, I have to two write separate 
output routines
in R which I had hoped to be able to avoid.


On Aug 29, 2012, at 4:39 AM, t...@tsdye.com (Thomas S. Dye) wrote:

 Neuwirth Erich erich.neuwi...@univie.ac.at writes:
 
 My problem is that the tables are produce by R code snippets.
 The code snippets produce plain org tables, bracketed by attributes 
 identifying 
 the text as ORG code.
 
 
 
 #+RESULTS:
 #+BEGIN_ORG
 | Jahr | Region | m   | w   | pWert | m.se  | w.se  |
 |--++-+-+---+---+---|
 | 2000 | Sonst  | 508 | 507 | 0.85  | 4.91  | 4.93  |
 #+END_ORG
 
 
 I am able to insert additional lines before and after the text produce
 by the R commands with the following technique (in R):
 
 
 print(as.table(NULL),quote=FALSE,type=org)
 cat(|---|\n)
 print(res,type=org)
 cat(|---|\n)
 
 
 So I could write a line with my multicol headers.
 But for that to work, org mode would have to honor multicol indicators
 in the text.
 
 Alternatively, compose latex or html tables in R and then have the source
 code block :results output latex or :results output html
 
 That should wrap the output in #+BEGIN_LATEX ... #+END_LATEX, which org
 will export directly to LaTeX, or #+BEGIN_HTML ... #+END_HTML, which org
 will export directly to HTML.
 
 hth,
 Tom
 
 
 
 
 
 
 On Aug 29, 2012, at 2:28 AM, Christopher J. White
 orgm...@grierwhite.com wrote:
 
 Hi Erich,
 
 I have a hack for multicolumn support that may help... It's not
 great, but serves my purpose.
 
 I implemented a TWiki mode that uses orgtbl-minor-mode.  TWiki pages
 support multicolumn cells by adding vertical bars with no
 separators:
 
 Display:
 
 |  Multicol |
 |  C1   |   C2  |
 
 TWiki format:
 | Multicol ||
 | C1 | C2 |
 
 Notice the double vertical bars after Multicol.  The number of
 vertical bars on every row must be the same.  You can join as many
 cells as you want that way.  I basically wanted to be able to still
 use orgtbl-minor-mode to edit such tables.  So I hacked my
 twiki-import/export code to convert || to |  | and vice-versa.
 
 So the orgtbl version of the above looks like this in the buffer:
 
 | Multicol |  |
 | C1   | C2 |
 
 The down side is that the text Multicol will expand the display
 size of C1, so if it gets long, the table grows:
 
 | This is a long multicol cell |  |
 | C1   | C2 |
 
 So it gets me what I want, which is orgtbl editing, and
 import/export support to twiki format.  Seems a similar technique
 could be backed in to any org export engine.
 
 ...cj
 
 On 8/28/12 5:10 PM, Neuwirth Erich wrote:
 After some googling it seems that multicolumn support is not yet
 implemented in org tables.
 I would need multicolumn headers quite urgently,
 but I have not yet found a way to make this possible.
 
 I think that tables with headers like this:
 
 |   |mean   | s.e.|
 | gender | varA | varB |  varA | varB |
 
 are quite common, so I really want to put this feature on the wish list.
 I am not able to implement this myself.
 
 Erich
 
 
 
 
 
 
 
 
 
 
 -- 
 Thomas S. Dye
 http://www.tsdye.com




Re: [O] Multicolumn

2012-08-29 Thread John Hendy
On Wed, Aug 29, 2012 at 2:44 AM, Neuwirth Erich
erich.neuwi...@univie.ac.at wrote:
 That is probably what I will have to do.
 But since I want both html and LaTeX output, I have to two write separate 
 output routines
 in R which I had hoped to be able to avoid.

How often do you anticipate having to change this? I've exported org
tables before to get most of the dirty work done and then just gone in
to the .tex (or .html) files manually to tweak. Is that an option?
I'll usually do this when I'm fairly positive that I'm done with any
tweaking/editing of the .org document.

Just a thought.
John



 On Aug 29, 2012, at 4:39 AM, t...@tsdye.com (Thomas S. Dye) wrote:

 Neuwirth Erich erich.neuwi...@univie.ac.at writes:

 My problem is that the tables are produce by R code snippets.
 The code snippets produce plain org tables, bracketed by attributes 
 identifying
 the text as ORG code.



 #+RESULTS:
 #+BEGIN_ORG
 | Jahr | Region | m   | w   | pWert | m.se  | w.se  |
 |--++-+-+---+---+---|
 | 2000 | Sonst  | 508 | 507 | 0.85  | 4.91  | 4.93  |
 #+END_ORG


 I am able to insert additional lines before and after the text produce
 by the R commands with the following technique (in R):


 print(as.table(NULL),quote=FALSE,type=org)
 cat(|---|\n)
 print(res,type=org)
 cat(|---|\n)


 So I could write a line with my multicol headers.
 But for that to work, org mode would have to honor multicol indicators
 in the text.

 Alternatively, compose latex or html tables in R and then have the source
 code block :results output latex or :results output html

 That should wrap the output in #+BEGIN_LATEX ... #+END_LATEX, which org
 will export directly to LaTeX, or #+BEGIN_HTML ... #+END_HTML, which org
 will export directly to HTML.

 hth,
 Tom






 On Aug 29, 2012, at 2:28 AM, Christopher J. White
 orgm...@grierwhite.com wrote:

 Hi Erich,

 I have a hack for multicolumn support that may help... It's not
 great, but serves my purpose.

 I implemented a TWiki mode that uses orgtbl-minor-mode.  TWiki pages
 support multicolumn cells by adding vertical bars with no
 separators:

 Display:

 |  Multicol |
 |  C1   |   C2  |

 TWiki format:
 | Multicol ||
 | C1 | C2 |

 Notice the double vertical bars after Multicol.  The number of
 vertical bars on every row must be the same.  You can join as many
 cells as you want that way.  I basically wanted to be able to still
 use orgtbl-minor-mode to edit such tables.  So I hacked my
 twiki-import/export code to convert || to |  | and vice-versa.

 So the orgtbl version of the above looks like this in the buffer:

 | Multicol |  |
 | C1   | C2 |

 The down side is that the text Multicol will expand the display
 size of C1, so if it gets long, the table grows:

 | This is a long multicol cell |  |
 | C1   | C2 |

 So it gets me what I want, which is orgtbl editing, and
 import/export support to twiki format.  Seems a similar technique
 could be backed in to any org export engine.

 ...cj

 On 8/28/12 5:10 PM, Neuwirth Erich wrote:
 After some googling it seems that multicolumn support is not yet
 implemented in org tables.
 I would need multicolumn headers quite urgently,
 but I have not yet found a way to make this possible.

 I think that tables with headers like this:

 |   |mean   | s.e.|
 | gender | varA | varB |  varA | varB |

 are quite common, so I really want to put this feature on the wish list.
 I am not able to implement this myself.

 Erich










 --
 Thomas S. Dye
 http://www.tsdye.com





Re: [O] Multicolumn

2012-08-28 Thread Christopher J. White

Hi Erich,

I have a hack for multicolumn support that may help... It's not great, 
but serves my purpose.


I implemented a TWiki mode that uses orgtbl-minor-mode.  TWiki pages 
support multicolumn cells by adding vertical bars with no separators:


Display:

|  Multicol |
|  C1   |   C2  |

TWiki format:
| Multicol ||
| C1 | C2 |

Notice the double vertical bars after Multicol.  The number of vertical 
bars on every row must be the same.  You can join as many cells as you 
want that way.  I basically wanted to be able to still use 
orgtbl-minor-mode to edit such tables.  So I hacked my 
twiki-import/export code to convert || to |  | and vice-versa.


So the orgtbl version of the above looks like this in the buffer:

| Multicol |  |
| C1   | C2 |

The down side is that the text Multicol will expand the display size 
of C1, so if it gets long, the table grows:


| This is a long multicol cell |  |
| C1   | C2 |

So it gets me what I want, which is orgtbl editing, and import/export 
support to twiki format.  Seems a similar technique could be backed in 
to any org export engine.


...cj

On 8/28/12 5:10 PM, Neuwirth Erich wrote:
After some googling it seems that multicolumn support is not yet 
implemented in org tables.

I would need multicolumn headers quite urgently,
but I have not yet found a way to make this possible.

I think that tables with headers like this:

|   |mean   | s.e.|
| gender | varA | varB |  varA | varB |

are quite common, so I really want to put this feature on the wish list.
I am not able to implement this myself.

Erich









Re: [O] Multicolumn

2012-08-28 Thread Neuwirth Erich
My problem is that the tables are produce by R code snippets.
The code snippets produce plain org tables, bracketed by attributes identifying 
the text as ORG code.



#+RESULTS:
#+BEGIN_ORG
| Jahr | Region | m   | w   | pWert | m.se  | w.se  |
|--++-+-+---+---+---|
| 2000 | Sonst  | 508 | 507 | 0.85  | 4.91  | 4.93  |
#+END_ORG


I am able to insert additional lines before and after the text produce by the R 
commands with the following technique (in R):


print(as.table(NULL),quote=FALSE,type=org)
cat(|---|\n)
print(res,type=org)
cat(|---|\n)


So I could write a line with my multicol headers.
But for that to work, org mode would have to honor multicol indicators in the 
text.





On Aug 29, 2012, at 2:28 AM, Christopher J. White orgm...@grierwhite.com 
wrote:

 Hi Erich,
 
 I have a hack for multicolumn support that may help... It's not great, but 
 serves my purpose.
 
 I implemented a TWiki mode that uses orgtbl-minor-mode.  TWiki pages support 
 multicolumn cells by adding vertical bars with no separators:
 
 Display:
 
 |  Multicol |
 |  C1   |   C2  |
 
 TWiki format:
 | Multicol ||
 | C1 | C2 |
 
 Notice the double vertical bars after Multicol.  The number of vertical bars 
 on every row must be the same.  You can join as many cells as you want that 
 way.  I basically wanted to be able to still use orgtbl-minor-mode to edit 
 such tables.  So I hacked my twiki-import/export code to convert || to | 
  | and vice-versa.
 
 So the orgtbl version of the above looks like this in the buffer:
 
 | Multicol |  |
 | C1   | C2 |
 
 The down side is that the text Multicol will expand the display size of C1, 
 so if it gets long, the table grows:
 
 | This is a long multicol cell |  |
 | C1   | C2 |
 
 So it gets me what I want, which is orgtbl editing, and import/export support 
 to twiki format.  Seems a similar technique could be backed in to any org 
 export engine.
 
 ...cj
 
 On 8/28/12 5:10 PM, Neuwirth Erich wrote:
 After some googling it seems that multicolumn support is not yet implemented 
 in org tables.
 I would need multicolumn headers quite urgently,
 but I have not yet found a way to make this possible.
 
 I think that tables with headers like this:
 
 |   |mean   | s.e.|
 | gender | varA | varB |  varA | varB |
 
 are quite common, so I really want to put this feature on the wish list.
 I am not able to implement this myself.
 
 Erich
 
 
 
 
 
 




Re: [O] Multicolumn

2012-08-28 Thread John Hendy
On Tue, Aug 28, 2012 at 8:05 PM, Neuwirth Erich
erich.neuwi...@univie.ac.at wrote:
 My problem is that the tables are produce by R code snippets.
 The code snippets produce plain org tables, bracketed by attributes 
 identifying
 the text as ORG code.



 #+RESULTS:
 #+BEGIN_ORG
 | Jahr | Region | m   | w   | pWert | m.se  | w.se  |
 |--++-+-+---+---+---|
 | 2000 | Sonst  | 508 | 507 | 0.85  | 4.91  | 4.93  |
 #+END_ORG


 I am able to insert additional lines before and after the text produce by the 
 R commands with the following technique (in R):


 print(as.table(NULL),quote=FALSE,type=org)
 cat(|---|\n)
 print(res,type=org)
 cat(|---|\n)


Not ideal, but could your R code just write the LaTeX syntax? cat()
the align statement and then cat() the  and \\ stuff manually?

John


 So I could write a line with my multicol headers.
 But for that to work, org mode would have to honor multicol indicators in the 
 text.





 On Aug 29, 2012, at 2:28 AM, Christopher J. White orgm...@grierwhite.com 
 wrote:

 Hi Erich,

 I have a hack for multicolumn support that may help... It's not great, but 
 serves my purpose.

 I implemented a TWiki mode that uses orgtbl-minor-mode.  TWiki pages support 
 multicolumn cells by adding vertical bars with no separators:

 Display:

 |  Multicol |
 |  C1   |   C2  |

 TWiki format:
 | Multicol ||
 | C1 | C2 |

 Notice the double vertical bars after Multicol.  The number of vertical bars 
 on every row must be the same.  You can join as many cells as you want that 
 way.  I basically wanted to be able to still use orgtbl-minor-mode to edit 
 such tables.  So I hacked my twiki-import/export code to convert || to | 
  | and vice-versa.

 So the orgtbl version of the above looks like this in the buffer:

 | Multicol |  |
 | C1   | C2 |

 The down side is that the text Multicol will expand the display size of 
 C1, so if it gets long, the table grows:

 | This is a long multicol cell |  |
 | C1   | C2 |

 So it gets me what I want, which is orgtbl editing, and import/export 
 support to twiki format.  Seems a similar technique could be backed in to 
 any org export engine.

 ...cj

 On 8/28/12 5:10 PM, Neuwirth Erich wrote:
 After some googling it seems that multicolumn support is not yet 
 implemented in org tables.
 I would need multicolumn headers quite urgently,
 but I have not yet found a way to make this possible.

 I think that tables with headers like this:

 |   |mean   | s.e.|
 | gender | varA | varB |  varA | varB |

 are quite common, so I really want to put this feature on the wish list.
 I am not able to implement this myself.

 Erich











Re: [O] Multicolumn

2012-08-28 Thread Thomas S. Dye
Neuwirth Erich erich.neuwi...@univie.ac.at writes:

 My problem is that the tables are produce by R code snippets.
 The code snippets produce plain org tables, bracketed by attributes 
 identifying 
 the text as ORG code.



 #+RESULTS:
 #+BEGIN_ORG
 | Jahr | Region | m   | w   | pWert | m.se  | w.se  |
 |--++-+-+---+---+---|
 | 2000 | Sonst  | 508 | 507 | 0.85  | 4.91  | 4.93  |
 #+END_ORG


 I am able to insert additional lines before and after the text produce
 by the R commands with the following technique (in R):


 print(as.table(NULL),quote=FALSE,type=org)
 cat(|---|\n)
 print(res,type=org)
 cat(|---|\n)


 So I could write a line with my multicol headers.
 But for that to work, org mode would have to honor multicol indicators
 in the text.

Alternatively, compose latex or html tables in R and then have the source
code block :results output latex or :results output html

That should wrap the output in #+BEGIN_LATEX ... #+END_LATEX, which org
will export directly to LaTeX, or #+BEGIN_HTML ... #+END_HTML, which org
will export directly to HTML.

hth,
Tom
 





 On Aug 29, 2012, at 2:28 AM, Christopher J. White
 orgm...@grierwhite.com wrote:

 Hi Erich,
 
 I have a hack for multicolumn support that may help... It's not
 great, but serves my purpose.
 
 I implemented a TWiki mode that uses orgtbl-minor-mode.  TWiki pages
 support multicolumn cells by adding vertical bars with no
 separators:
 
 Display:
 
 |  Multicol |
 |  C1   |   C2  |
 
 TWiki format:
 | Multicol ||
 | C1 | C2 |
 
 Notice the double vertical bars after Multicol.  The number of
 vertical bars on every row must be the same.  You can join as many
 cells as you want that way.  I basically wanted to be able to still
 use orgtbl-minor-mode to edit such tables.  So I hacked my
 twiki-import/export code to convert || to |  | and vice-versa.
 
 So the orgtbl version of the above looks like this in the buffer:
 
 | Multicol |  |
 | C1   | C2 |
 
 The down side is that the text Multicol will expand the display
 size of C1, so if it gets long, the table grows:
 
 | This is a long multicol cell |  |
 | C1   | C2 |
 
 So it gets me what I want, which is orgtbl editing, and
 import/export support to twiki format.  Seems a similar technique
 could be backed in to any org export engine.
 
 ...cj
 
 On 8/28/12 5:10 PM, Neuwirth Erich wrote:
 After some googling it seems that multicolumn support is not yet
 implemented in org tables.
 I would need multicolumn headers quite urgently,
 but I have not yet found a way to make this possible.
 
 I think that tables with headers like this:
 
 |   |mean   | s.e.|
 | gender | varA | varB |  varA | varB |
 
 are quite common, so I really want to put this feature on the wish list.
 I am not able to implement this myself.
 
 Erich
 
 
 
 
 
 




-- 
Thomas S. Dye
http://www.tsdye.com