aboutsummaryrefslogtreecommitdiff
path: root/default.beamer
AgeCommit message (Collapse)AuthorFilesLines
2016-07-01Pass $biblatexoptions$ directly to biblatexThomas Hodgson1-2/+1
Addresses https://github.com/jgm/pandoc-templates/issues/201
2016-02-18add $institute$ to beamer templateFraser Tweedale1-0/+3
2015-12-19Merge pull request #169 from twsh/beamer-includesJohn MacFarlane1-3/+3
Moved header-includes to before setting of title etc.
2015-12-19Merge pull request #167 from twsh/themesJohn MacFarlane1-18/+18
Moved themes after fonts
2015-12-19Merge pull request #152 from twsh/biblatex-optionsJohn MacFarlane1-1/+2
Biblatex options
2015-12-15Use biblio-style when setting biblatex optionsThomas Hodgson1-1/+2
2015-12-15Added biblatex optionsThomas Hodgson1-1/+1
2015-12-15Add an option to set title pages for sectionsThomas Hodgson1-2/+2
2015-12-10Moved header-includes to before setting of title etc.Thomas Hodgson1-3/+3
This matches default.latex
2015-12-08Moved themes after fontsThomas Hodgson1-18/+18
If themes are loaded after fonts then they can override fonts. Otherwise, what the themes set will be overridden by the fallback loading of lmodern.sty.
2015-12-03Make \euro conditional in Beamer for XeTeX/LuaTeX.Andrew Dunning1-0/+2
Implements the change made for LaTeX in <https://github.com/jgm/pandoc-templates/commit/e45a3fac77e5bd876b20a6b8a0dcbf54f5aa12ab>.
2015-11-17beamer template: added 'navigation' variable.John MacFarlane1-0/+1
Valid values are empty (default), frame, vertical, horizontal.
2015-11-12Merge pull request #141 from adunning/keywordsJohn MacFarlane1-7/+9
ConTeXt/LaTeX/Beamer clean-up
2015-10-30Beamer template: added code to prevent slide breaks inside paragraphs.John MacFarlane1-0/+4
This will matter, in pracitce, only when `allowframebreaks` is used. It is especially helpful for bibliography slides. Closes #2442. Thanks to Nick Bart for the solution.
2015-10-29Beamer template: fix incompatibility of section slides with natbib.John MacFarlane1-3/+9
Natbib (and presumably biblatex) bibliography commands create their own section. Since these are in frame environments, we have an incompatibility with the `\AtBeginSection` macro which creates a special frame when a new section occurs. (We can't have a frame inside another frame.) This change disables `\AtBeginSection` inside bibliography slides. This supersedes #145. See discussion tehre.
2015-10-23Always use $for$ to allow multiple options in LaTeX/ConTeXt/Beamer.Andrew Dunning1-7/+9
Also makes minor improvements to spacing. Adds indenting option to ConTeXt and multiple header/footer texts.
2015-10-19Merge pull request #137 from mb21/lang-inlinesJohn MacFarlane1-3/+4
LaTeX template: add babel-otherlangs and babel-newcommands
2015-10-18Merge pull request #135 from adunning/fontspecJohn MacFarlane1-1/+1
Use Ligatures=TeX for fontspec.
2015-10-18LaTeX and beamer templates: add babel-otherlangs and babel-newcommandsmb211-3/+4
2015-10-16Use Ligatures=TeX for fontspec.Andrew Dunning1-1/+1
This avoids the ‘use `Ligatures=TeX` instead of `Mapping=tex-text`’ warning when using LuaTeX. The manual clarifies: “for consistency `Ligatures=TeX` will perform the same function as `Mapping=tex-text`.”
2015-10-11Add fontenc, indent, subparagraph variables to LaTeX.Andrew Dunning1-1/+1
`fontenc` allows for a different encoding: closes #112. `indent` and `subparagraph` allow the default Pandoc overrides for these features to be disabled.
2015-10-11Realign LaTeX and beamer templates.Andrew Dunning1-36/+77
Adds new language and bidi variables; removes duplicated `\VerbatimFootnotes`. The standard `fontspec` variables, previously omitted, are now included. Beamer defaults to the font set as `sansfont`. If `mainfont` is set, the `serif` font theme will also be used, which uses this for the slide text (does not have to be a serif font per se). The paragraph indentation and use of the `url` package seem to have had no visible effect, and have been removed.
2015-10-07Added space after colon in figure captions.John MacFarlane1-1/+1
Closes #128.
2015-09-29Addd support for inner/outer themeGuilhem Bonnefille1-0/+6
2015-05-27LaTeX, beamer: add setotherlanguages to polyglossia.John MacFarlane1-0/+1
2015-05-27Use polyglossia with xelatex in beamer. Closes #85.John MacFarlane1-1/+6
2015-05-27Provide the \tightlist commandAnders Persson1-0/+2
Just as it is provided the default.latex template. Pandoc-1.14 expexts this command.
2015-05-11Beamer, LaTeX templates: Use `bibliography` instead of `biblio-files`.John MacFarlane1-5/+5
Also use `\addbibresource` instead of `\bibliography` for biblatex. See jgm/pandoc#1661.
2014-06-01LaTeX/Beamer templates: Remove conditionalization around date.John MacFarlane1-2/+0
This restores the old behavior, where no date was printed if no date was specified. If the `\date` command is removed entirely, standard document classes will print today's date. Closes #1321. Partially reverts fc5229df167aa61cdbcf14ce24581b36bb0a5b90. See #61.
2014-05-06Load upquote after fontenc in latex template.John MacFarlane1-0/+1
2014-05-06upquote must be used after fontencYihui Xie1-1/+1
otherwise single quotes in verbatim environments will be in trouble; see an example at http://stackoverflow.com/a/12852815/559676
2014-04-11Use \setkeys{Gin}{} to set appropriate defaults for \includegraphics, ↵Yihui Xie1-6/+5
instead of entirely redefining this command. Note we also consider the height of images; if an image is too high, 0.8\textheight will be used for beamer slides, and \textheight is used for articles (see http://tex.stackexchange.com/q/11954/9128). If the user has explicitly provided the width/height options in \includegraphics[], our defaults will be overwritten, and this approach is better than the check `\@ifnextchar[` after \includegraphics because the latter approach simply gives up everything once it sees [, whereas \setkeys{Gin} can keep the good defaults unless they are explicitly overwritten in []. closes #30, closes #28, and closes #26
2014-04-11Merge pull request #44 from aaronwolen/beamer-captionsJohn MacFarlane1-0/+3
Beamer template: Consistent styles for figure and table captions
2014-04-11Fix issue #52: set max width and height of images in default.beamerGarrick Aden-Buie1-17/+8
2014-04-04Added caption package to beamer template.John MacFarlane1-0/+1
Closes #1200.
2014-02-26Backported changes from default.latex to default.beamer in order to improve ↵KarolS1-0/+10
Unicode support
2013-12-13Fixing default.beamer includegraphics redefinition to allow custom optionsKevin1-1/+4
2013-12-09Beamer template: add booktabs packageKevin1-1/+1
2013-10-23Beamer template: Consistent styles for figure and table captionsaaronwolen1-0/+3
2013-10-21Beamer template: put slide around bibliography with natbib or biblatex.John MacFarlane1-1/+5
2013-08-05default.beamer: Add font theme optionLuis Osa1-0/+3
Add font theme option to choose one of the sets of structural fonts that come predefined with Beamer.
2013-07-17LaTeX/Beamer templates: Add classoption variable.John MacFarlane1-1/+1
This is intended for class options like `oneside`; it may be repeated with different options.
2013-06-21Added subtitle to html and latex formats.John MacFarlane1-0/+3
2013-05-07default.beamer: Added comment to graphics section.John MacFarlane1-0/+4
2013-03-03Provide \Oldincludegraphics in beamer like in LaTeXBenjamin Bannier1-1/+2
In the old solution there was no way to use a LaTeX image where only the height was used to scale the image -- the width was always implicitly set as well leading to wrong aspect ratios. Provide a command \Oldincludegraphics which does just what \includegraphics would do in the LaTeX template. That we the same input markup could be used for beamer and LaTeX templates.
2013-02-03beamer: added lines to fix table captions with longtable.John MacFarlane1-0/+4
Thanks to Joost Kremers.
2012-09-16LaTeX, beamer templates: Don't require 'float' package.John MacFarlane1-1/+0
AS far as I can see, it isn't needed by anything pandoc does.
2012-09-16Beamer, LaTeX templates: removed enumerate package.John MacFarlane1-3/+0
2012-09-15LaTeX, beamer: Use longtable instead of ctable.John MacFarlane1-1/+1
2012-08-25Beamer template: In section pages, don't print "Section" and number.John MacFarlane1-4/+17
Similarly for parts and subsections. Reason: this is not properly internationalized, and for consistency with other slide formats. Closes #566.