Hello,
James Harkins jamshar...@gmail.com writes:
Patch attached. The patch is based on release_8.2.4 (as noted in my bug
report from a few minutes ago, I can't perform any Beamer export against
current master). If it doesn't apply against master, I'll be happy to tweak
it, once the other
Nicolas Goaziou n.goaz...@gmail.com writes:
You need to use a regexp to find out what class is used:
(let ((beamer-class-p
(and (stringp header)
(org-string-match-p
^[ \t]*documentclass\\(?:\\[.*\\]\\)?{beamer}[ \t]*$
(nth 1 (assoc
On Monday, December 23, 2013 4:25:50 PM HKT, Nicolas Goaziou wrote:
James Harkins jamshar...@gmail.com writes:
One question, though: How would I determine the LaTeX document class
programmatically?
(plist-get info :latex-class)
Patch attached. The patch is based on release_8.2.4 (as
On Monday, December 23, 2013 4:25:50 PM HKT, Nicolas Goaziou wrote:
James Harkins jamshar...@gmail.com writes:
One question, though: How would I determine the LaTeX document class
programmatically?
(plist-get info :latex-class)
Thanks. I'm very busy now at the end of the semester, but I
Hello,
James Harkins jamshar...@gmail.com writes:
One question, though: How would I determine the LaTeX document class
programmatically?
(plist-get info :latex-class)
Regards,
--
Nicolas Goaziou
Hi,
Is there a reason why Beamer export does not place \maketitle in a frame?
The beamer user guide (I.3.4) specifies the following:
\begin{frame}
\titlepage
\end{frame}
But org-mode simply writes \maketitle outside of a frame.
This is important when you are using the same source to produce
On Sunday, December 22, 2013 6:38:02 PM HKT, James Harkins wrote:
Hi,
Is there a reason why Beamer export does not place \maketitle in a
frame?
The beamer user guide (I.3.4) specifies the following:
\begin{frame}
\titlepage
\end{frame}
But org-mode simply writes \maketitle outside of a
Hello,
James Harkins jamshar...@gmail.com writes:
The beamer user guide (I.3.4) specifies the following:
\begin{frame}
\titlepage
\end{frame}
But org-mode simply writes \maketitle outside of a frame.
Oh, I think I see the issue... there's only one org-latex-title-command.
;; 10.
On Sunday, December 22, 2013 9:36:34 PM HKT, Nicolas Goaziou wrote:
Oh, I think I see the issue... there's only one org-latex-title-command.
;; 10. Title command.
(org-element-normalize-string
(cond ((string= title) nil)
((not (stringp org-latex-title-command)) nil)
...
I don't think the