From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: worg latex example "11 Styling the Frontmatter" Date: Thu, 08 Mar 2012 13:39:28 -0500 Message-ID: <6384.1331231968@alphaville> References: <87obs7839r.fsf@ed.ac.uk> <87k42v82iz.fsf@gmail.com> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:40106) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S5iFR-0001Bj-My for emacs-orgmode@gnu.org; Thu, 08 Mar 2012 13:39:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S5iFP-0004Uu-SL for emacs-orgmode@gnu.org; Thu, 08 Mar 2012 13:39:33 -0500 Received: from g4t0014.houston.hp.com ([15.201.24.17]:32981) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S5iFP-0004US-Lp for emacs-orgmode@gnu.org; Thu, 08 Mar 2012 13:39:31 -0500 In-Reply-To: Message from Myles English of "Thu, 08 Mar 2012 16:45:40 GMT." <87k42v82iz.fsf@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode Mode Cc: Myles English , nicholas.dokos@hp.com Myles English wrote: > > So the two files are: > > ,--------------------------- testAbs.org ------------------------------ > | #+LATEX_HEADER: \input{/home/myles/tmp/bugs/title.tex} > | #+BEGIN_abstract > | Here is my abstract, it is a fine abstract. > | #+END_abstract > | #+LATEX: \tableofcontents > | #+LATEX: \listoftables > | #+LATEX: \listoffigures > | > | * Foo > | foo > | > | * Bar > | bar > | > | #+BEGIN_SRC emacs-lisp :exports none > | (defun org-export-latex-no-toc (depth) (when depth (format "%% Org-mode > | is exporting headings to %s levels.\n" depth))) (setq > | org-export-latex-format-toc-function 'org-export-latex-no-toc) > | #+END_SRC > `------------------------------------------------------------------------ > > ,------------------------------title.tex-------- > | > | \renewcommand\maketitle{\begin{titlepage}% > | FOO > | \end{titlepage}% } > `----------------------------------------------- > You have commented out the closing brace in title.tex. It should be --8<---------------cut here---------------start------------->8--- \renewcommand\maketitle{\begin{titlepage}% FOO \end{titlepage}% } --8<---------------cut here---------------end--------------->8--- Nick