From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Elston Subject: Oddity in LaTeX export? Date: Sat, 12 Dec 2009 21:48:47 -0800 Message-ID: <4B24803F.7090402@comcast.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NJhKC-0007FN-CC for emacs-orgmode@gnu.org; Sun, 13 Dec 2009 00:48:56 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NJhK9-0007DK-Om for emacs-orgmode@gnu.org; Sun, 13 Dec 2009 00:48:54 -0500 Received: from [199.232.76.173] (port=38500 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NJhK9-0007DH-Ir for emacs-orgmode@gnu.org; Sun, 13 Dec 2009 00:48:53 -0500 Received: from qmta08.emeryville.ca.mail.comcast.net ([76.96.30.80]:55099) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NJhK9-00035t-6k for emacs-orgmode@gnu.org; Sun, 13 Dec 2009 00:48:53 -0500 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: org-mode emacs-orgmode I have a standard format I like to use in creating some class notes in latex. I use memoir and have a boilerplate that only differs in the title from notes to notes. I have decided to try to manage my documentation for my notes in org to see if it is easier to do. Mostly (so far) it is a pretty good match. However, I have run into a snag for exporting the notes to latex. I tried using the #+TITLE: directive but got page numbers (in roman) on the first couple of pages. This looked ugly. So I set the #+TITLE: directive to be empty and added to the #+TEXT: block the following: #+TEXT: \title{ABC Class Notes} #+TEXT: \begin{titlingpage} #+TEXT: \maketitle #+TEXT: \end{titlingpage} This almost works. The problem is the first of these lines gets exported with the closing '}' escaped. In other words it comes out as: \title{ABC Class Notes\} I am not sure why this is or what to do about it. BTW, I had to set the TITLE directive to empty since just having it resulted in an automatic \maketitle export which was not surrounded by the titlingpage environment. I really wanted that titlingpage environment and I couldn't think of another way of handling it. There are a couple of other items but I want to take this a step at a time. Mark