Re: [O] latex (beamer) export and short title

2012-07-06 Thread Andreas Leha
Hi Nicolas, Nicolas Goaziou writes: > Hello, > > Andreas Leha writes: > >> I'd be a regular user of such functionality, especially for >> presentations. But as the concept is useful in other (LaTeX-) >> documents, a more general support for short titles might be appropriate, >> I'd say. > > It

Re: [O] latex (beamer) export and short title

2012-07-06 Thread Bastien
Nicolas Goaziou writes: > It is as simple as using a filter to remove the title provided by the > template and install your own. > > #+begin_src emacs-lisp > (defun ngz-enforce-my-title (contents backend info) > ;; In LaTeX export, if I defined a title with a short title, remove > ;; default

Re: [O] latex (beamer) export and short title

2012-07-06 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > I have the impression that it's as well for other LaTeX classes, such as > article, report and book. Can you send me a minimal .tex where \title[shorttitle]{title} works? With the package you need for that? It does not work on my machine. -- Bas

Re: [O] latex (beamer) export and short title

2012-07-06 Thread Nicolas Goaziou
Hello, Andreas Leha writes: > I'd be a regular user of such functionality, especially for > presentations. But as the concept is useful in other (LaTeX-) > documents, a more general support for short titles might be appropriate, > I'd say. It is as simple as using a filter to remove the title

Re: [O] latex (beamer) export and short title

2012-07-06 Thread Andreas Leha
Hi Bastien and Sebastien, thanks for taking this further! "Sebastien Vauban" writes: > Hi Bastien, > > Bastien wrote: >> Andreas Leha writes: >> >>> Overriding org's setting of \title with >>> , >>> | #+TITLE: long title >>> | #+latex_header: \title[short title]{long title} >>> `

Re: [O] latex (beamer) export and short title

2012-07-06 Thread Sebastien Vauban
Hi Bastien, Bastien wrote: > Andreas Leha writes: > >> Overriding org's setting of \title with >> , >> | #+TITLE: long title >> | #+latex_header: \title[short title]{long title} >> ` >> does not work either, as org's setting gets into the tex later. > > There is no way to do this ri

Re: [O] latex (beamer) export and short title

2012-07-06 Thread Bastien
Hi Andreas, Andreas Leha writes: > Overriding org's setting of \title with > , > | #+TITLE: long title > | #+latex_header: \title[short title]{long title} > ` > does not work either, as org's setting gets into the tex later. There is no way to do this right now. >From what I've s

[O] latex (beamer) export and short title

2012-07-03 Thread Andreas Leha
Hi all, I am having trouble to find a way to set a short title for the exported beamer document. Illustration: I'd like to see , | \title[short title]{long title} ` in the exported latex document. The first shot , | #+TITLE: [short title]{long title} ` was too easy, I guess.