From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: Org-Mode Presentation Videos Date: Sat, 18 Oct 2008 21:16:03 +0200 Message-ID: <48FA35F3.6080609@gmx.de> References: <20081016191332.GE1080@thinkpad.adamsinfoserv.com> <48F8E7C4.9030405@gmail.com> <20081017195510.GK1080@thinkpad.adamsinfoserv.com> <48F9FB5A.9000301@gmail.com> Reply-To: sebastian_rose@gmx.de Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KrHH6-0003SX-38 for emacs-orgmode@gnu.org; Sat, 18 Oct 2008 15:15:44 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KrHH4-0003Rr-Jg for emacs-orgmode@gnu.org; Sat, 18 Oct 2008 15:15:43 -0400 Received: from [199.232.76.173] (port=50356 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KrHH4-0003Rg-A7 for emacs-orgmode@gnu.org; Sat, 18 Oct 2008 15:15:42 -0400 Received: from mail.gmx.net ([213.165.64.20]:35324) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1KrHH3-0002I2-Ue for emacs-orgmode@gnu.org; Sat, 18 Oct 2008 15:15:42 -0400 In-Reply-To: <48F9FB5A.9000301@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "[emacs-orgmode]" srandby@gmail.com wrote: > One comment. I've been using LaTeX for about 15 years, Emacs for about 2 > years and Org-Mode for about 8 months. My LaTeX files are heavily > customized and I'm used to working with them without org-mode. My few, > and not very serious, attempts to move my LaTeX work to org-mode have > not given satisfactory results, so I've put off changing my work flow > until I have more time to figure out the LaTeX export features of > org-mode. But, I am using org-mode extensively for my other work related > tasks. I have org files that keep track of my students' grades and my > web site is built from a single org file. As you pointed out in your > talk, org-mode allows one to work! There was a post on this list from Russel Adams, that shows how to use custom LaTeX headers. My setup is derived from that post, and enables the usage of a commen LaTeX-header for Org export and the rest of my LaTeX files: .emacs: (setq org-export-latex-classes (cons '("myarticle" "% BEGIN My Article Defaults \\input{/home/sebastian/develop/lib/latex/header-pdf.tex} " ("\\rzchapteridx{%s}" . "\\rzchapteridx{%s}") ("\\rzsection{%s}{}" . "\\rzsection{%s}") ("\\rzsubsection{%s}" . "\\rzsubsection{%s}") ("\\rzsubsubsection{%s}" . "\\rzsubsubsection{%s}")) org-export-latex-classes)) As you can see here, I include the common header file, and customize the classes used for headlines on export. Since now the creation of PDFs is now possible directly from Org-mode (C-c C-e p), this is the easiest way to do it. *.org: #+LaTeX_CLASS: myarticle Regards, Sebastian