aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-02-06LaTeX: Don't load `fontspec` before `unicode-math`Vaclav Haisman1-2/+0
The `unicode-math` package loads `fontspec` so explict loading of `fontspec` before `unicode-math` is not necessary.
2017-02-06Use `unicode-math`.Vaclav Haisman1-0/+13
Use `mathspec` with only XeLaTeX on request.
2017-01-29Merge branch 'typeclass'John MacFarlane3-0/+0
2017-01-29Merge pull request #241 from wilx/master-geometry-after-hyperrefJohn MacFarlane1-3/+3
LaTeX: Load geometry package after hyperref.
2017-01-29LaTeX: Remove comment entirely.Vaclav Haisman1-1/+0
Remove comment about `geometry` and `hyperref` entirely.
2017-01-28Redact comment.Vaclav Haisman1-2/+1
2017-01-28LaTeX: Load geometry package after hyperref.Vaclav Haisman1-3/+5
This implements suggestion from geometry package manual section 9 Known problems: > With mag ≠ 1000, no truedimen and hyperref, hyperref should be loaded > before geometry. Otherwise the resulted PDF size will become wrong.
2017-01-26Rename default.docbook -> default.docbook4.John MacFarlane1-0/+0
2017-01-26Moved default.epub -> default.epub2.John MacFarlane1-0/+0
2017-01-25Rename default.html -> default.html4.John MacFarlane1-0/+0
2017-01-25Merge pull request #239 from Wandmalfarbe/masterJohn MacFarlane1-2/+2
Copied a few changes from default.latex to default.beamer
2017-01-24Copied a few changes from default.latex to default.beamerWandmalfarbe1-2/+2
2017-01-24Changed position of \VerbatimNotes and fancyvrb in latex, beamer templates.John MacFarlane2-8/+13
This fixes hyperlinks on footnotes in documents that contain verbatim in notes. (Note: the beamer template was updated to match the LaTeX template, but at this point verbatim in notes seems not to work in beamer.) Supersedes #238.
2017-01-10Merge pull request #233 from wilx/JelteF-patch-1John MacFarlane1-0/+1
Add hyphen option to url package
2017-01-09Merge from master to update #193.Vaclav Haisman10-24/+112
2017-01-03Merge pull request #229 from wilx/masterJohn MacFarlane1-1/+1
Allow passing options to `microtype` LaTeX package
2017-01-03Allow passing options to `microtype` LaTeX packageVaclav Haisman1-1/+1
2016-12-30Merge pull request #226 from mb21/patch-1John MacFarlane1-3/+4
DocBook5: fix namespace declarations
2016-12-28DocBook5: fix namespace declarationsMauro Bieg1-3/+4
2016-12-04Merge pull request #224 from Wandmalfarbe/patch-1John MacFarlane1-1/+1
Keyword definition used wrong separator
2016-12-04Keyword definition used wrong separatorWandmalfarbe1-1/+1
The option pdfkeywords from hyperref needs keywords separated with a comma `,` instead of a semicolon `;`.
2016-11-25Merge pull request #223 from Nicop06/patch-1John MacFarlane1-1/+1
DZSlides: Force word wrapping in code tags
2016-11-24 Force word wrapping in code tagsNicolas Porcel1-1/+1
For instance, if you try to compile the following markdown code with pandoc (using 1.12): ``` markdown Page 1 ------ This is a very long code line that will appear on every slide even on page three Page 2 ------ My content Page 3 ------ My last content ``` using this command: pandoc -s -t dzslides test.md -o /tmp/test.html the long code line will appear on every slide. Using pre-wrap fixes the problem by forcing word wrap of code. The only drawback is that it requires IE 8 [according to MDN](https://developer.mozilla.org/fr/docs/Web/CSS/white-space), which make it less compatible. A workaround it to wrap the code when writing it, but if you consider inline code tags using the accents \`\` in markdown this is not possible.
2016-10-25Merge pull request #222 from jez/jez-beamer-hypersetupJohn MacFarlane1-0/+19
Add hypersetup options to beamer templates
2016-10-20Add hypersetup options to beamer templatesJacob Zimmerman1-0/+19
I'm not sure if there is a reason why these were witheld from the default beamer template, but it seemed to work when I added it in to my Beamer project. There was some previous discussion about this at jgm/pandoc#1600.
2016-09-28LaTeX template: fix footnotes in tables.John MacFarlane1-0/+2
This requires the footnote package, which is imported only if present. See #208. Thanks to Václav Haisman.
2016-09-28Merge pull request #212 from greut/notes-serverJohn MacFarlane1-0/+4
Addition of notes-server option.
2016-09-28Added a comment.John MacFarlane1-0/+1
2016-09-28Merge pull request #215 from wilx/master-figure-placementJohn MacFarlane1-0/+5
LaTeX: Set figure placement defaults.
2016-09-25Use p tag for subtitle, author, date in epub, revealjs, slidy.John MacFarlane4-10/+10
2016-09-25Merge pull request #218 from tarleb/html5-semantical-headerJohn MacFarlane1-3/+3
Put only one heading element in top-level header
2016-09-23Put only one heading element in top-level headerAlbert Krewinkel1-3/+3
Every heading element semantically creates a new section. Three consecutive heading elements, e.g. `<h1></h1>`, `<h2></h2>`, `<h3></h3>`, are semantically equivallent to a section with two nested subsections. This is not the intended meaning of subtitle, author, and date, making plain `<p>` elements the better choice. This is one of the W3C's [common idioms]. This change is the result of discussions on issue jgm/pandoc#3119. [common idioms]: https://www.w3.org/TR/html5/common-idioms.html#common-idioms Fixes: jgm/pandoc#3119
2016-09-23Merge pull request #216 from artemklevtsov/patch-1John MacFarlane1-0/+3
Custom font families for beamer template
2016-09-14Custom font families for beamerArtem Klevtsov1-0/+3
Adding ability to define custom font families. Needed for correct `polyglossia` operation with Cyrillic fonts and perhaps can find some other usages. Example usage in YAML metadata: ``` fontfamilies: - name: \cyrillicfont font: Liberation Serif - name: \cyrillicfonttt options: Scale=MatchLowercase font: Liberation Mono ```
2016-08-29LaTeX: Set figure placement defaults.Vaclav Haisman1-0/+5
This restores Pandoc's defaults after applicaiton of changes in https://github.com/jgm/pandoc/pull/3093.
2016-08-12Addition of notes-server option.Yoan Blanc1-0/+4
Enable to run the slides on various hosts and still control it from a master point of view. https://github.com/hakimel/reveal.js#server-side-speaker-notes
2016-08-11Merge pull request #211 from cagix/beamer-themeJohn MacFarlane1-1/+1
Support themeoptions for beamer themes
2016-08-06Merge pull request #210 from cagix/fix_beamerarticleJohn MacFarlane1-0/+3
Load "beamerarticle" first (if needed)
2016-08-05Support options for beamer themesCarsten Gips1-1/+1
see https://github.com/jgm/pandoc-templates/issues/206#issuecomment-236158334
2016-08-04Load "beamerarticle" first (if needed)Carsten Gips1-0/+3
The beamerarticle package needs to be loaded directly after the documentclass declaration. Loading it later (e.g. using the -H option) leads to several errors due to package dependencies. This patch also introduces a new variable "beamerarticle" to activate the beamerarticle package.
2016-07-20Restore space between paragraphs in beamer template.John MacFarlane1-0/+2
Closes #207. I believe these lines were removed in error. @adunning if you think otherwise, please comment here.
2016-07-18Merge pull request #205 from twsh/masterJohn MacFarlane1-0/+1
Added `\institute`
2016-07-14Added `\institute`Thomas Hodgson1-0/+1
Fixes https://github.com/jgm/pandoc-templates/issues/204 by adding a dummy `\institute` command.
2016-07-01Merge pull request #203 from twsh/masterJohn MacFarlane2-4/+2
Pass $biblatexoptions$ directly to biblatex
2016-07-01Pass $biblatexoptions$ directly to biblatexThomas Hodgson1-2/+1
Addresses https://github.com/jgm/pandoc-templates/issues/201
2016-07-01Pass $biblatexoptions$ directly to biblatexThomas Hodgson1-2/+1
Addresses https://github.com/jgm/pandoc-templates/issues/201
2016-06-30Merge pull request #202 from alexivkin/masterJohn MacFarlane1-0/+16
ZimWiki template
2016-06-29ZimWiki templateAlex1-0/+16
2016-06-25Added secnumdepth variable to LaTeX template.John MacFarlane1-1/+1
2016-06-07Fix for obscure hyperref/xelatex issue.John MacFarlane1-2/+2
Here's a minimal case: \documentclass[]{article} \usepackage{hyperref} \begin{document} \section{\%á} \end{document} Without this change, this fails on the second invocation of xelatex. See https://tex.stackexchange.com/questions/313266/and-non-ascii-characters-in-headings This affects inputs this like # %á with pdf output via xelatex.