* export to beamer: author and dynamic effects are not exported.
@ 2020-12-14 9:19 Uwe Brauer
2020-12-14 10:18 ` Eric S Fraga
0 siblings, 1 reply; 9+ messages in thread
From: Uwe Brauer @ 2020-12-14 9:19 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 634 bytes --]
Hi
Consider please the following example
#+TITLE: This title
#+AUTHOR: Uwe Brauer
* This is an example
:PROPERTIES:
:BEAMER_opt: <+->
:END:
Now
1. This
2. That
It should be exported as
\author{Uwe Brauer}
and the dynamic effect as
\begin{frame}[<+->][label={sec:orge797871}]{This is an example}
But it is not, instead
\begin{frame}[label={sec:orgb41a8d4},<+->]{This is an example}
Which does not compile correctly
Moreover the author is ignored (there is pdfauthor however which
does not get compiled) and
I attach the org file the resulting tex file and the corrected tex file
Regards
Uwe Brauer
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: prob.tex --]
[-- Type: text/x-tex, Size: 758 bytes --]
% Created 2020-12-14 lun 10:15
% Intended LaTeX compiler: pdflatex
\documentclass[presentation]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage[normalem]{ulem}
\usepackage{amsmath}
\usepackage{textcomp}
\usepackage{amssymb}
\usepackage{capt-of}
\usepackage[numbered,framed]{matlab-prettifier}
\usetheme{default}
\date{\today}
\title{This title}
\hypersetup{
pdfauthor={Uwe Brauer},
pdftitle={This title},
pdfkeywords={},
pdfsubject={},
pdfcreator={Emacs 28.0.50 (Org mode 9.3.7)},
pdflang={English}}
\begin{document}
\maketitle
\begin{frame}[label={sec:orgb41a8d4},<+->]{This is an example}
Now
\begin{enumerate}
\item This
\item That
\end{enumerate}
\end{frame}
\end{document}
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: prob.org --]
[-- Type: text/x-org, Size: 132 bytes --]
#+TITLE: This title
#+AUTHOR: Uwe Brauer
* This is an example
:PROPERTIES:
:BEAMER_opt: <+->
:END:
Now
1. This
2. That
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #4: prob-corr.tex --]
[-- Type: text/x-tex, Size: 780 bytes --]
% Created 2020-12-14 lun 10:13
% Intended LaTeX compiler: pdflatex
\documentclass[presentation]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{longtable}
\usepackage[normalem]{ulem}
\usepackage{amsmath}
\usepackage{textcomp}
\usepackage{amssymb}
\usepackage{capt-of}
\usepackage[numbered,framed]{matlab-prettifier}
\usetheme{default}
\date{\today}
\title{This title}
\author{Uwe Brauer }
\hypersetup{
pdfauthor={Uwe Brauer},
pdftitle={This title},
pdfkeywords={},
pdfsubject={},
pdfcreator={Emacs 28.0.50 (Org mode 9.3.7)},
pdflang={English}}
\begin{document}
\maketitle
\begin{frame}[<+->][label={sec:orge797871}]{This is an example}
Now
\begin{enumerate}
\item This
\item That
\end{enumerate}
\end{frame}
\end{document}
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: export to beamer: author and dynamic effects are not exported.
2020-12-14 9:19 export to beamer: author and dynamic effects are not exported Uwe Brauer
@ 2020-12-14 10:18 ` Eric S Fraga
2020-12-14 13:08 ` Uwe Brauer
0 siblings, 1 reply; 9+ messages in thread
From: Eric S Fraga @ 2020-12-14 10:18 UTC (permalink / raw)
To: emacs-orgmode
On Monday, 14 Dec 2020 at 10:19, Uwe Brauer wrote:
> Consider please the following example
[...]
> It should be exported as
>
> \author{Uwe Brauer}
It does for me.
> and the dynamic effect as
Use BEAMER_act instead of BEAMER_opt and specify the property as [<+->],
i.e. with square brackets.
--
: Eric S Fraga via Emacs 28.0.50, Org release_9.4-160-g7c8dce
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: export to beamer: author and dynamic effects are not exported.
2020-12-14 10:18 ` Eric S Fraga
@ 2020-12-14 13:08 ` Uwe Brauer
2020-12-14 13:32 ` Eric S Fraga
0 siblings, 1 reply; 9+ messages in thread
From: Uwe Brauer @ 2020-12-14 13:08 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1021 bytes --]
>>> "ESF" == Eric S Fraga <e.fraga@ucl.ac.uk> writes:
> On Monday, 14 Dec 2020 at 10:19, Uwe Brauer wrote:
>> Consider please the following example
> [...]
>> It should be exported as
>>
>> \author{Uwe Brauer}
> It does for me.
Ok I had set
org-export-with-author to nil
now I set it to t and the export works,
*however* set to t it *always* exports, setting to nil it *never*
exports.
I would like that it only exports if the field
#+AUTHOR is present.
This seems to be impossible the documentation states
Documentation:
Non-nil means insert author name into the exported file.
This option can also be set with the OPTIONS keyword,
e.g. "author:nil".
But it is not clear how to set this
I tried
#+TITLE: This title
#+AUTHOR:
:PROPERTIES:
:AUTHOR:nil
:END:
But this did not work as expected.
>> and the dynamic effect as
> Use BEAMER_act instead of BEAMER_opt and specify the property as [<+->],
> i.e. with square brackets.
Thanks, this was helpful
[-- Attachment #2: smime.p7s --]
[-- Type: application/pkcs7-signature, Size: 5673 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: export to beamer: author and dynamic effects are not exported.
2020-12-14 13:08 ` Uwe Brauer
@ 2020-12-14 13:32 ` Eric S Fraga
2020-12-14 16:24 ` Uwe Brauer
0 siblings, 1 reply; 9+ messages in thread
From: Eric S Fraga @ 2020-12-14 13:32 UTC (permalink / raw)
To: emacs-orgmode
On Monday, 14 Dec 2020 at 14:08, Uwe Brauer wrote:
> Documentation:
> Non-nil means insert author name into the exported file.
> This option can also be set with the OPTIONS keyword,
> e.g. "author:nil".
>
> But it is not clear how to set this
#+options: author:nil
The other thing that works is to simply have an empty author:
#+author:
--
: Eric S Fraga via Emacs 28.0.50, Org release_9.4-160-g7c8dce
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2020-12-15 15:48 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-14 9:19 export to beamer: author and dynamic effects are not exported Uwe Brauer
2020-12-14 10:18 ` Eric S Fraga
2020-12-14 13:08 ` Uwe Brauer
2020-12-14 13:32 ` Eric S Fraga
2020-12-14 16:24 ` Uwe Brauer
2020-12-14 16:44 ` Eric S Fraga
2020-12-14 19:51 ` [Institute field] (was: export to beamer: author and dynamic effects are not exported.) Uwe Brauer
2020-12-15 11:33 ` [Institute field] Eric S Fraga
2020-12-15 15:43 ` Uwe Brauer
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).