Louis Stuart

Results 47 comments of Louis Stuart

@samcarter This MWE works fine, but it may not be suitable for `pandoc` to use directly: ``` \documentclass{beamer} \usepackage[T1]{fontenc} \begin{document} \begin{frame} Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\footnote{Foo.} \pause...

@samcarter Pandoc can only transform Markdown syntaxes to `beamer` macros (and maybe a few extensive syntaxes, such as three dots `. . .` for `\pause`). Overlay specs seems to be...

Seems like I've adjusted the behavior of `\section` in adding entry to `nav` file, in 7eb050b. Edit: this is again related to changes for fixing #172. The logic of arranging...

I think it's not a good idea to hack `beamer`'s environments and the underlying `\parbox` / `minipage` too much. You can define environments based on `beamerboxesrounded` and `block` for yourself...

@banbh I've wrongly tested it under LuaTeX.

The nested environments change the font size before the `\list` macro makes TeX enter vertical mode, thus the `\baselineskip` is smaller for that line. One possible idea is to put...

This issue is harder than I previously thought. An `\item` starts up an `actionenv` environment, which is closed by the next `\item` **on the same level** or `\endtrivlist`. The sublist...

The behavior in `PaloAlto` theme is by design, for the height of both sidebars (`\sidebarheight`) are calculated using `\beamer@calculateheadfoot` macro, in which the heights of `headline` and `footline` (`\headheight` and...

@dbitouze These 'built-in' themes might not take flexibility into account when they were designed. Though not documented, it seems that the custom combinations of outer / inner themes are recommended...

A simplified MWE is: ``` \documentclass{beamer} \newbox\pauseBox \begin{document} \begin{frame} \sbox{\pauseBox}{first\pause second\pause third} % replacing the following line by `\box\pauseBox` works well first\pause second\pause third \end{frame} \end{document} ``` In this case,...