Tagged Questions

11
votes
1answer
175 views

R + Org-mode: how to avoid naming plot files?

When I use Sweave with R, I can avoid explicitly naming the plot files by simply enclosing the plot commands within a code-chunk like <<fig=TRUE>> ... @. The Sweave driver automatically ...
6
votes
3answers
2k views

Disabling underscore-to-subscript in Emacs Org-Mode export

When I export to PDF via org-mode (C-c C-e d), any words with underscores end up being partially converted to subscript. How can I prevent this from happening? I found this article on the subject: ...
4
votes
1answer
292 views

Emacs: unifying citations between html and latex in org-mode

How to set up org-mode so it could include the result of \cite LaTeX command in HTML export? Example: Gulliver's Travels My father had a small estate in Nottinghamshire: I was the third of five ...
2
votes
2answers
153 views

Converting an org-mode table to LaTeX

IS there a way to 'texify' an ASCII table written with Emacs' orgtabl-mode. Creating tables in this mode is extremely simple. E.g. suppose I have this table |------+-----+-----| | A | B | C ...
2
votes
3answers
389 views

Org-mode exporting to pdf for emacs.app on Mac OS X

Org-mode, love it. I've been trying to set up the mac to export anything to pdf. No easy way yet. First there's org-export-as-pdf which first exports to pdf then generates a pdf. I get "pdflatex: ...
2
votes
2answers
266 views

In Emacs org-mode, Latex export of literal string containing “\__” giving problem

I am trying to export a literal string from Emacs Org-mode to Latex for subsequent export to pdf. The literal string is: str1\__str2 I have tried the following input in the Org file: ...
2
votes
4answers
299 views

Can I convert a Tex file into an equivalent Org file? If so, how?

I'm in the process of writing a whitepaper, and am about half-way through. I've just realized that it would be far simpler to write this in org-mode and export to latex/pdf than writing it directly in ...
1
vote
1answer
24 views

How do I define sections for a custom beamer class in Org-mode?

When I try to make a custom beamer class for Org-mode by manipulating org-export-latex-classes I do something like: (add-to-list 'org-export-latex-classes '("mybeamer" ...
1
vote
2answers
156 views

How can I make Org-mode export to LaTeX with a specific preamble?

When I do C-e l to export an Org file to LaTeX it produces a document with a particular preamble. Instead of this particular preamble I would like it to use a preamble of my choice. Say that I want it ...
1
vote
4answers
96 views

exporting vertical lines in org mode table to LaTeX

I'm using emacs as my editor and I am toying with org-mode which looks rather useful. I'm generating a table (spreadsheet) in org mode and it is exported correctly to LaTeX apart from the vertical ...
1
vote
2answers
133 views

Org-mode tables: Exclude columns from export

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 ...