>> On Thu, 08 Mar 2012 13:39:28 -0500, Nick Dokos said: > 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 > \renewcommand\maketitle{\begin{titlepage}% FOO \end{titlepage}% } > Nick Thanks for noticing that, I have changed it and still get the strange behaviour described in my previous post. Any other ideas? Myles