emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Updated syntax for #+bind and no LaTeX \maketitle command?


From: Rasmus
Subject: Re: [O] Updated syntax for #+bind and no LaTeX \maketitle command?
Date: Fri, 24 May 2013 01:14:20 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

John Hendy <address@hidden> 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]