Myles English <mylesengl...@gmail.com> 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