John Hendy <jw.he...@gmail.com> writes: > I sometimes don't want a title in my LaTeX exported documents and used to use: > > #+bind: org-export-latex-title-command "" > > in my documents. I see that the new variable is simply > =org-latex-title-command= and now have: > > #+bind: org-latex-title-command "" > > This is still generating a \maketitle line in my .tex file.
Does either of solutions work in your case? #+BEGIN_SRC org #+TITLE: * My document without title . . . By setting TITLE to nil #+END_SRC #+BEGIN_SRC org #+TITLE: my-title #+BEGIN_SRC emacs-lisp :exports none (set (make-local-variable 'org-latex-title-command) "") #+END_SRC * My document without title . . . By changing the command with babel #+END_SRC #+BEGIN_SRC org #+TITLE: with title #+BEGIN_SRC emacs-lisp :exports results (set (make-local-variable 'org-export-allow-bind-keywords) t) #+END_SRC #+BIND: org-latex-title-command "" * without title using and allowing bind. #+END_SRC -- I almost cut my hair, it happened just the other day