* Changing title for outline
@ 2014-01-30 11:09 Erich Neuwirth
2014-01-30 11:13 ` Bastien
2014-01-30 11:14 ` Sebastien Vauban
0 siblings, 2 replies; 10+ messages in thread
From: Erich Neuwirth @ 2014-01-30 11:09 UTC (permalink / raw)
To: Mode emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 213 bytes --]
I am using eorgmode with beamer to create a slide presentation in German.
I get a nice outline page with the atuomatically created header
Outline
How can I change this so it becomes
Themen
??
Erich Neuwirth
[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 495 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Changing title for outline
2014-01-30 11:09 Changing title for outline Erich Neuwirth
@ 2014-01-30 11:13 ` Bastien
2014-01-30 11:14 ` Sebastien Vauban
1 sibling, 0 replies; 10+ messages in thread
From: Bastien @ 2014-01-30 11:13 UTC (permalink / raw)
To: Erich Neuwirth; +Cc: Mode emacs-orgmode@gnu.org
Hi Erich,
Erich Neuwirth <erich.neuwirth@univie.ac.at> writes:
> I am using eorgmode with beamer to create a slide presentation in German.
> I get a nice outline page with the atuomatically created header
> Outline
>
> How can I change this so it becomes
>
> Themen
(setq org-beamer-outline-frame-title "Themen")
HTH,
--
Bastien
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Changing title for outline
2014-01-30 11:09 Changing title for outline Erich Neuwirth
2014-01-30 11:13 ` Bastien
@ 2014-01-30 11:14 ` Sebastien Vauban
2014-01-31 14:58 ` Erich Neuwirth
1 sibling, 1 reply; 10+ messages in thread
From: Sebastien Vauban @ 2014-01-30 11:14 UTC (permalink / raw)
To: emacs-orgmode-mXXj517/zsQ
Erich Neuwirth wrote:
> I am using eorgmode with beamer to create a slide presentation in German.
> I get a nice outline page with the atuomatically created header
> Outline
>
> How can I change this so it becomes
>
> Themen
--8<---------------cut here---------------start------------->8---
(setq org-beamer-outline-frame-title "Themen"))
--8<---------------cut here---------------end--------------->8---
Best regards,
Seb
--
Sebastien Vauban
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Changing title for outline
2014-01-30 11:14 ` Sebastien Vauban
@ 2014-01-31 14:58 ` Erich Neuwirth
2014-02-01 0:41 ` Nick Dokos
0 siblings, 1 reply; 10+ messages in thread
From: Erich Neuwirth @ 2014-01-31 14:58 UTC (permalink / raw)
To: Sebastien Vauban; +Cc: Mode emacs-orgmode@gnu.org
[-- Attachment #1.1: Type: text/plain, Size: 377 bytes --]
Is there a way of putting this into the document itself?
I tried
#+begin_src emacs-lisp :results value
(setq org-beamer-outline-frame-title "Themen")
#+end_src
before any of the text of the document, and this did not work!
On Jan 30, 2014, at 12:14 PM, Sebastien Vauban <sva-news@mygooglest.com> wrote:
> setq org-beamer-outline-frame-title "Themen"))
[-- Attachment #1.2: Type: text/html, Size: 1231 bytes --]
[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 495 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Changing title for outline
2014-01-31 14:58 ` Erich Neuwirth
@ 2014-02-01 0:41 ` Nick Dokos
2014-02-01 2:35 ` Erich Neuwirth
0 siblings, 1 reply; 10+ messages in thread
From: Nick Dokos @ 2014-02-01 0:41 UTC (permalink / raw)
To: emacs-orgmode
Erich Neuwirth <erich.neuwirth@univie.ac.at> writes:
> Is there a way of putting this into the document itself?
>
> I tried
>
> #+begin_src emacs-lisp :results value
> (setq org-beamer-outline-frame-title "Themen")
> #+end_src
>
> before any of the text of the document, and this did not work!
>
> On Jan 30, 2014, at 12:14 PM, Sebastien Vauban <sva-news@mygooglest.com> wrote:
>
> setq org-beamer-outline-frame-title "Themen"))
>
You can set it as a file-local variable. See
(info "(emacs)File variables")
--
Nick
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Changing title for outline
2014-02-01 0:41 ` Nick Dokos
@ 2014-02-01 2:35 ` Erich Neuwirth
2014-02-01 3:32 ` Nick Dokos
2014-02-01 8:23 ` Bastien
0 siblings, 2 replies; 10+ messages in thread
From: Erich Neuwirth @ 2014-02-01 2:35 UTC (permalink / raw)
To: Nick Dokos; +Cc: Mode emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 966 bytes --]
Suing this at the end of file
#+ Local Variables:
#+ org-beamer-outline-frame-title: "Themen"
#+ End:
Brings up a prompt about changing local variables,
but accepting the changes does still not produce the desired result.
The header line of the outline frame still is
Outline
On Feb 1, 2014, at 1:41 AM, Nick Dokos <ndokos@gmail.com> wrote:
> Erich Neuwirth <erich.neuwirth@univie.ac.at> writes:
>
>> Is there a way of putting this into the document itself?
>>
>> I tried
>>
>> #+begin_src emacs-lisp :results value
>> (setq org-beamer-outline-frame-title "Themen")
>> #+end_src
>>
>> before any of the text of the document, and this did not work!
>>
>> On Jan 30, 2014, at 12:14 PM, Sebastien Vauban <sva-news@mygooglest.com> wrote:
>>
>> setq org-beamer-outline-frame-title "Themen"))
>>
>
> You can set it as a file-local variable. See
>
> (info "(emacs)File variables")
>
> --
> Nick
>
>
[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 495 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Changing title for outline
2014-02-01 2:35 ` Erich Neuwirth
@ 2014-02-01 3:32 ` Nick Dokos
2014-02-01 8:23 ` Bastien
1 sibling, 0 replies; 10+ messages in thread
From: Nick Dokos @ 2014-02-01 3:32 UTC (permalink / raw)
To: emacs-orgmode
Erich Neuwirth <erich.neuwirth@univie.ac.at> writes:
> Suing this at the end of file
>
> #+ Local Variables:
> #+ org-beamer-outline-frame-title: "Themen"
> #+ End:
>
>
> Brings up a prompt about changing local variables,
> but accepting the changes does still not produce the desired result.
> The header line of the outline frame still is
> Outline
>
Not for me. Here's an org file:
--8<---------------cut here---------------start------------->8---
* Foo
bar
# Local Variables:
# org-beamer-outline-frame-title: "Themen"
# End:
--8<---------------cut here---------------end--------------->8---
Here's the tex file - as you can see the frame title is
indeed "Themen":
% Created 2014-01-31 Fri 22:29
\documentclass[presentation]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fixltx2e}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage{float}
\usepackage{wrapfig}
\usepackage{rotating}
\usepackage[normalem]{ulem}
\usepackage{amsmath}
\usepackage{textcomp}
\usepackage{marvosym}
\usepackage{wasysym}
\usepackage{amssymb}
\usepackage{hyperref}
\tolerance=1000
\usepackage{minted}
\usetheme{default}
\author{Nick Dokos}
\date{\today}
\title{themen}
\hypersetup{
pdfkeywords={},
pdfsubject={},
pdfcreator={Emacs 24.3.50.2 (Org mode 8.2.5g)}}
\begin{document}
\maketitle
\begin{frame}{Themen}
\tableofcontents
\end{frame}
\begin{frame}[label=sec-1]{Foo}
bar
\end{frame}
% Emacs 24.3.50.2 (Org mode 8.2.5g)
\end{document}
>
>
>
> On Feb 1, 2014, at 1:41 AM, Nick Dokos <ndokos@gmail.com> wrote:
>
>> Erich Neuwirth <erich.neuwirth@univie.ac.at> writes:
>>
>>> Is there a way of putting this into the document itself?
>>>
>>> I tried
>>>
>>> #+begin_src emacs-lisp :results value
>>> (setq org-beamer-outline-frame-title "Themen")
>>> #+end_src
>>>
>>> before any of the text of the document, and this did not work!
>>>
>>> On Jan 30, 2014, at 12:14 PM, Sebastien Vauban <sva-news@mygooglest.com> wrote:
>>>
>>> setq org-beamer-outline-frame-title "Themen"))
>>>
>>
>> You can set it as a file-local variable. See
>>
>> (info "(emacs)File variables")
>>
>> --
>> Nick
>>
>>
>
--
Nick
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Changing title for outline
2014-02-01 2:35 ` Erich Neuwirth
2014-02-01 3:32 ` Nick Dokos
@ 2014-02-01 8:23 ` Bastien
2014-02-02 9:39 ` Erich Neuwirth
1 sibling, 1 reply; 10+ messages in thread
From: Bastien @ 2014-02-01 8:23 UTC (permalink / raw)
To: Erich Neuwirth; +Cc: Nick Dokos, Mode emacs-orgmode@gnu.org
Hi Erich,
Erich Neuwirth <erich.neuwirth@univie.ac.at> writes:
> Suing this at the end of file
>
> #+ Local Variables:
> #+ org-beamer-outline-frame-title: "Themen"
> #+ End:
>
>
> Brings up a prompt about changing local variables,
> but accepting the changes does still not produce the desired result.
> The header line of the outline frame still is
> Outline
What version of Emacs and Org are you using ?
--
Bastien
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Changing title for outline
2014-02-01 8:23 ` Bastien
@ 2014-02-02 9:39 ` Erich Neuwirth
2014-02-02 11:41 ` Bastien
0 siblings, 1 reply; 10+ messages in thread
From: Erich Neuwirth @ 2014-02-02 9:39 UTC (permalink / raw)
To: Bastien; +Cc: Nick Dokos, Mode emacs-orgmode@gnu.org
[-- Attachment #1.1: Type: text/plain, Size: 682 bytes --]
OSX 10.9
Emacs 24.3
orgmode 8.2.5h
I also tried
# Local Variables:
# org-beamer-outline-frame-title: "Themen"
# End:
at the end of the file and it did not work
On Feb 1, 2014, at 9:23 AM, Bastien <bzg@gnu.org> wrote:
> Hi Erich,
>
> Erich Neuwirth <erich.neuwirth@univie.ac.at> writes:
>
>> Suing this at the end of file
>>
>> #+ Local Variables:
>> #+ org-beamer-outline-frame-title: "Themen"
>> #+ End:
>>
>>
>> Brings up a prompt about changing local variables,
>> but accepting the changes does still not produce the desired result.
>> The header line of the outline frame still is
>> Outline
>
> What version of Emacs and Org are you using ?
>
> --
> Bastien
[-- Attachment #1.2: Type: text/html, Size: 2520 bytes --]
[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 495 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Changing title for outline
2014-02-02 9:39 ` Erich Neuwirth
@ 2014-02-02 11:41 ` Bastien
0 siblings, 0 replies; 10+ messages in thread
From: Bastien @ 2014-02-02 11:41 UTC (permalink / raw)
To: Erich Neuwirth; +Cc: Nick Dokos, Mode emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 221 bytes --]
The attached file works fine for me.
If you add local variables after finding the file,
do C-c C-c on #+TITLE to refresh local variables.
If you find the file while local variables are
already there, you don't need it.
[-- Attachment #2: test.org --]
[-- Type: application/vnd.lotus-organizer, Size: 145 bytes --]
[-- Attachment #3: Type: text/plain, Size: 14 bytes --]
--
Bastien
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2014-02-02 11:41 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-30 11:09 Changing title for outline Erich Neuwirth
2014-01-30 11:13 ` Bastien
2014-01-30 11:14 ` Sebastien Vauban
2014-01-31 14:58 ` Erich Neuwirth
2014-02-01 0:41 ` Nick Dokos
2014-02-01 2:35 ` Erich Neuwirth
2014-02-01 3:32 ` Nick Dokos
2014-02-01 8:23 ` Bastien
2014-02-02 9:39 ` Erich Neuwirth
2014-02-02 11:41 ` Bastien
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.