Re: [O] Ignoring all org-mode headings to export beamer slides with no titles

2016-04-03 Thread Nicolas Goaziou
Hello,

Rob Stewart  writes:

> I like presentation zen, where less is more. I would like to export my
> org-mode files as beamer slides, but have the heading title ignored so
> as not to position a title at the top left of the each slide.
>
> I can do it on a per-slide basis with:
>
> ** My slide title
> :PROPERTIES:
> :BEAMER_ENV: fullframe
> :END:
>
> Is there a way of applying this rule to every slide, without having to
> add this :PROPERTIES: section beneath every heading in my org file?

You can use #+PROPERTY beamer_env fullframe, if beamer_env allows
inheritance. See (info "(org) Property inheritance").

Regards,

-- 
Nicolas Goaziou



Re: [O] Ignoring all org-mode headings to export beamer slides with no titles

2016-04-03 Thread Eric S Fraga
On Sunday,  3 Apr 2016 at 11:30, Rob Stewart wrote:
> Hi,
>
> I like presentation zen, where less is more. I would like to export my

Alternatively, there is a good more general LaTeX solution for minimal
styling at

https://www.quora.com/Presentations-What-are-the-best-beamer-themes

which you can incorporate into org by specifying

#+beamer_theme:

(i.e. no theme at all) and then a LaTeX block with the code given on
that page, inserted before the first slide.

Very zen... :-)
-- 
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.92.1, Org release_8.3.4-668-g809a83



Re: [O] Ignoring all org-mode headings to export beamer slides with no titles

2016-04-03 Thread Rob Stewart
Hi Rasmus,

Thanks for the tip. In the absence of an org mode solution to this,
adding the following to the top of my org file is a solution:

#+LATEX_HEADER: \setbeamertemplate{frametitle}{}

--
Rob

On 3 April 2016 at 12:36, Rasmus  wrote:
> Rob Stewart  writes:
>
>> Hi,
>>
>> I like presentation zen, where less is more. I would like to export my
>> org-mode files as beamer slides, but have the heading title ignored so
>> as not to position a title at the top left of the each slide.
>>
>> I can do it on a per-slide basis with:
>>
>> ** My slide title
>> :PROPERTIES:
>> :BEAMER_ENV: fullframe
>> :END:
>>
>> Is there a way of applying this rule to every slide, without having to
>> add this :PROPERTIES: section beneath every heading in my org file?
>
> You could add a filter that adds this property to every headline of the
> correct level.
>
> Or hack it on the latex side
>
> #+latex_header: \let\oldframe\frame
> #+latex_header: \renewcommand\frame[1][fullframe]{\oldframe[#1]}
>
> Hope it helps,
> Rasmus
>
> --
> When the facts change, I change my mind. What do you do, sir?
>
>



Re: [O] Ignoring all org-mode headings to export beamer slides with no titles

2016-04-03 Thread Eric S Fraga
On Sunday,  3 Apr 2016 at 11:30, Rob Stewart wrote:
> Hi,
>
> I like presentation zen, where less is more. I would like to export my
> org-mode files as beamer slides, but have the heading title ignored so
> as not to position a title at the top left of the each slide.

I don't know if there is an org way of achieving what you want (others
will hopefully answer).  The alternative is to create your own beamer
style which ignores the frame title.  What beamer style are you using?
Or maybe one already exists out in the wild...

Depending on the beamer style you are using, the following line, added
to your org file just before the first slide *might* do the trick...

#+latex: \renewcommand<>{\frametitle}[1]{\gdef\insertframetitle{}}
-- 
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.92.1, Org release_8.3.4-668-g809a83



Re: [O] Ignoring all org-mode headings to export beamer slides with no titles

2016-04-03 Thread Rasmus
Rob Stewart  writes:

> Hi,
>
> I like presentation zen, where less is more. I would like to export my
> org-mode files as beamer slides, but have the heading title ignored so
> as not to position a title at the top left of the each slide.
>
> I can do it on a per-slide basis with:
>
> ** My slide title
> :PROPERTIES:
> :BEAMER_ENV: fullframe
> :END:
>
> Is there a way of applying this rule to every slide, without having to
> add this :PROPERTIES: section beneath every heading in my org file?

You could add a filter that adds this property to every headline of the
correct level.

Or hack it on the latex side

#+latex_header: \let\oldframe\frame
#+latex_header: \renewcommand\frame[1][fullframe]{\oldframe[#1]}

Hope it helps,
Rasmus

-- 
When the facts change, I change my mind. What do you do, sir?




[O] Ignoring all org-mode headings to export beamer slides with no titles

2016-04-03 Thread Rob Stewart
Hi,

I like presentation zen, where less is more. I would like to export my
org-mode files as beamer slides, but have the heading title ignored so
as not to position a title at the top left of the each slide.

I can do it on a per-slide basis with:

** My slide title
:PROPERTIES:
:BEAMER_ENV: fullframe
:END:

Is there a way of applying this rule to every slide, without having to
add this :PROPERTIES: section beneath every heading in my org file?

Thanks,

--
Rob