[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] Several questions about beamer export
From: |
Nick Dokos |
Subject: |
Re: [O] Several questions about beamer export |
Date: |
Thu, 11 Jul 2013 23:21:22 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) |
Julien Cubizolles <address@hidden> writes:
> ...
> * All the headers I add end up on the same line when I define them like
> in the following (even with an empty line).
>
> #+LATEX_HEADER_EXTRA: \institute{My Institure}
>
> #+LATEX_HEADER:\usepackage{mypackage}
>
> The LaTeX file produced is not very readable. How can I produce
> linebreaks between different LATEX_HEADER entries ?
>
You need to modify the code to get them: that's probably an omission
(ngz will probably respond in much more detail than I can). They are
only cosmetic of course, but if you have to have them, you can try
adding them in org-beamer-template around line 880:
(concat (plist-get info :latex-header)
"\n"
(plist-get info :latex-header-extra)
"\n"
(plist-get info :beamer-header-extra)
"\n")))
The problem with this is that the newlines are added even if the
various items are empty, so you may end up with more newlines than
are necessary.
--
Nick
- [O] Several questions about beamer export, Julien Cubizolles, 2013/07/11
- Re: [O] Several questions about beamer export,
Nick Dokos <=
- Re: [O] Several questions about beamer export, Nick Dokos, 2013/07/12
- Re: [O] Several questions about beamer export, Julien Cubizolles, 2013/07/12
- Re: [O] Several questions about beamer export, Nick Dokos, 2013/07/12
- Re: [O] Several questions about beamer export, Darlan Cavalcante Moreira, 2013/07/12
- Re: [O] Several questions about beamer export, Nick Dokos, 2013/07/12
- Re: [O] Several questions about beamer export, Julien Cubizolles, 2013/07/15
- Re: [O] Several questions about beamer export, Nick Dokos, 2013/07/15