On Sep 28, 2009, at 4:41 PM, henry atting wrote:
I am trying to customize the orgmode export to the LaTeX class `play` A first level heading will then become the LaTeX \speaker{}, the textunder this heading will become the text the speaker says. No problem sofar, but some questions remain:- How can I prevent the export function from creating a titlepage and atable of contents?
#+TITLE: with no title specified will turn off the title. #+OPTIONS: toc:nil will turn off the table of contents.
- Most important: Every header is provided with a label. How can I supress this?
You cannot, really. However, I have just added a new hook, org-export-latex-final-hook. You could use it to test if the class is "play", and if yes, run through the buffer and remove all labels.
- Finally, is it possible to automatically insert something *after*
\begin{document}, something like \begin..\end{play}?
You could also use the hook to do this. HTH - Carsten _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. [email protected] http://lists.gnu.org/mailman/listinfo/emacs-orgmode
