I have a set of tables in org-mode that I am exporting, but I'd like certain columns used for calculations and consumption by code blocks to be excluded from LaTeX export.

I'm sure I saw a way to do this by specifying a range of columns to export below the table, but I can't find reference to it anywhere on the web so there's a good chance I dreamt it.

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

If you are using "Radio Tables" you can do something like

#+ORGTBL: SEND some-name orgtbl-to-latex :skipcols (3)
|-----+-------+------|
|   2 | 1/2   | junk |
|   4 | 1/4   | junk |
|   8 | 1/2   | junk |

See http://www.gnu.org/software/emacs/manual/html_mono/org.html#Radio-tables for all the details.

I believe it may not be possible directly with export via C-c C-e since they offer the same answer at http://comments.gmane.org/gmane.emacs.orgmode/33946 from November 2010.

link|improve this answer
This appears to be the only way at the moment, although it doesn't work on export as the link suggests. Cheers. – Germano Jul 23 '11 at 5:58
feedback

http://www.gnu.org/software/emacs/manual/html_mono/org.html#The-spreadsheet

3.5.6 Editing and debugging formulas Use ‘/’ for: Do not export this line. Useful for lines that contain the narrowing ‘’ markers or column group markers.

Note to do this you must use the first column for extra info to do this.

link|improve this answer
This allows you to remove a row, but I need to remove some columns. Thanks though. – Germano Jul 15 '11 at 8:15
Tough! Not sure about this as I'm still maserting Org-mode spreadsheets, too. – Mauvis Ledford Jul 15 '11 at 20:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.