aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-11-20Merge pull request #158 from xoolive/pr-titleJohn MacFarlane1-1/+1
Issue for title.meta when subtitle is set
2015-11-20Issue for title.meta when subtitle is setXavier Olive1-1/+1
2015-11-17beamer template: added 'navigation' variable.John MacFarlane1-0/+1
Valid values are empty (default), frame, vertical, horizontal.
2015-11-15Merge pull request #151 from vsivsi/masterJohn MacFarlane1-2/+2
reveal.js - Fix broken parallaxBackgroundHorizontal and parallaxBackgroundVertical support.
2015-11-15Removed quotes from around values inserted for parallaxBackgroundHorizontal ↵Vaughn Iverson1-2/+2
and parallaxBackgroundVertical. These values should be integers, not strings
2015-11-14opendocument template: Add "automatic-styles" tag.John MacFarlane1-1/+3
This allows more customization. See jgm/pandoc#2520.
2015-11-12Merge pull request #141 from adunning/keywordsJohn MacFarlane3-46/+68
ConTeXt/LaTeX/Beamer clean-up
2015-11-09Provide separate `linkcontrastcolor` in ConTeXt.Andrew Dunning1-1/+1
2015-11-09Rename ConTeXt `style` to `linkstyle`.Andrew Dunning1-1/+1
Not necessary to write `normal` to prevent links from rendering as bold.
2015-11-09Make LaTeX/ConTeXt link colour optional.Andrew Dunning2-9/+13
Prevents a conflict when base text is not black. This makes the `hidelinks` option redundant.
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-25Merge pull request #144 from adunning/html-keywordsJohn MacFarlane6-12/+51
Add keywords to HTML templates; realign.
2015-10-25Merge pull request #143 from adunning/patch-1John MacFarlane1-37/+107
Update dzslides template from source.
2015-10-25Merge pull request #142 from adunning/asciidocJohn MacFarlane1-4/+13
Fix author, date in AsciiDoc; add keywords, abstract.
2015-10-23Always use $for$ to allow multiple options in LaTeX/ConTeXt/Beamer.Andrew Dunning3-38/+56
Also makes minor improvements to spacing. Adds indenting option to ConTeXt and multiple header/footer texts.
2015-10-22Realign HTML templates.Andrew Dunning5-12/+33
Add lang, dir, quotes where not included previously; always make display of author and date conditional.
2015-10-22Add keywords to HTML templates.Andrew Dunning6-0/+18
2015-10-22Update dzslides template from source.Andrew Dunning1-37/+107
2015-10-22Fix author, date in AsciiDoc; add keywords, abstract.Andrew Dunning1-4/+13
AsciiDoctor did not parse previous output.
2015-10-20Merge pull request #139 from adunning/patch-2John MacFarlane1-24/+12
Simplify hyperref usage.
2015-10-20Merge pull request #140 from adunning/patch-1John MacFarlane1-29/+34
ConTeXt link colour to black; define all sections.
2015-10-20Write title block in ConTeXt using \title.Andrew Dunning1-19/+21
This prevents a page number from appearing on the first page.
2015-10-20ConTeXt link colour to black; define all sections.Andrew Dunning1-10/+13
Sets default link colour to black with normal style (default is bolded red/green links), per the discussion in #138. Provides heading styles for all section types applied by Pandoc.
2015-10-20Change default LaTeX link colour to black.Andrew Dunning1-3/+3
This reflects the default behaviour of `hyperref` when `colorlinks` is not enabled (but instead sets the colour to black when it is not specified by the user, for the sake of simplicity).
2015-10-20Merge pull request #138 from adunning/patch-1John MacFarlane1-27/+72
Expand ConTeXt variables; drop MkII support.
2015-10-19Merge pull request #137 from mb21/lang-inlinesJohn MacFarlane2-6/+8
LaTeX template: add babel-otherlangs and babel-newcommands
2015-10-19Simplify hyperref usage.Andrew Dunning1-21/+9
The different usage for `xetex` appears to have been a workaround for bugs fixed in 2009 (see my question on this at <http://tex.stackexchange.com/questions/273339/what-hyperref-options-should-be-used-for-correct-unicode-output>), meaning that the same options can be used for all engines. The `subtitle` is used to set the PDF subject, following ConTeXt. The `bookmarks` option is enabled by default and does not need to be repeated.
2015-10-19Expand ConTeXt variables; drop MkII support.Andrew Dunning1-27/+72
2015-10-18Merge pull request #136 from adunning/title-prefixJohn MacFarlane7-7/+7
Use en dash to separate title-prefix.
2015-10-18Merge pull request #135 from adunning/fontspecJohn MacFarlane2-2/+2
Use Ligatures=TeX for fontspec.
2015-10-18Man: insert "automatically generated" comment only if pandoc-version set.John MacFarlane1-0/+2
This will make it possible to deactivate it for automatic tests, so they don't need to be updated every time we bump a version.
2015-10-18LaTeX and beamer templates: add babel-otherlangs and babel-newcommandsmb212-6/+8
2015-10-16Use en dash to separate title-prefix.Andrew Dunning7-7/+7
2015-10-16Use Ligatures=TeX for fontspec.Andrew Dunning2-2/+2
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-14Merge pull request #134 from adunning/patch-1John MacFarlane1-31/+151
Update reveal.js template from 3.1 source.
2015-10-14Add width, height variables to reveal.js.Andrew Dunning1-0/+9
2015-10-14Update reveal.js template from 3.1 source.Andrew Dunning1-31/+142
All configuration options are now available as variables, but are only be included if set (reveal.js uses defaults otherwise).
2015-10-14Merge pull request #133 from adunning/latex-optionsJohn MacFarlane2-2/+8
Add fontenc, indent, subparagraph variables to LaTeX.
2015-10-13Merge pull request #113 from hugoroy/patch-1John MacFarlane1-1/+2
Enable to hide links as plain text (hyperref option)
2015-10-13Merge pull request #132 from adunning/patch-1John MacFarlane1-4/+4
Add `dir` variable to HTML5 and update shiv.
2015-10-13Merge pull request #131 from adunning/masterJohn MacFarlane2-40/+78
Realign LaTeX and beamer templates.
2015-10-13Move HTML5 Shiv after CSS.Andrew Dunning1-3/+3
Per usage notes at <https://github.com/aFarkas/html5shiv/blob/master/readme.md>.
2015-10-13Add `dir` variable to HTML5 and update shiv.Andrew Dunning1-2/+2
Project moved from Google Code to <https://github.com/aFarkas/html5shiv>.
2015-10-11Add fontenc, indent, subparagraph variables to LaTeX.Andrew Dunning2-2/+8
`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 Dunning2-40/+78
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-10Merge pull request #130 from adunning/xltxtraJohn MacFarlane1-1/+0
Remove xltxtra, xunicode from LaTeX template.
2015-10-10Merge pull request #127 from lyrixx/patch-1John MacFarlane1-2/+2
[Reveals] Be able to change customize 'progress' and 'controls'
2015-10-10Merge pull request #129 from mb21/polyglossia-langJohn MacFarlane1-2/+4
Change variable to polyglossia-lang.name and .options
2015-10-10Merge pull request #123 from alexvong1995/better-man-templateJohn MacFarlane1-0/+10
Better man template (Closes #117)