Age | Commit message (Collapse) | Author | Files | Lines |
|
The `unicode-math` package loads `fontspec` so explict loading of
`fontspec` before `unicode-math` is not necessary.
|
|
Use `mathspec` with only XeLaTeX on request.
|
|
|
|
LaTeX: Load geometry package after hyperref.
|
|
Remove comment about `geometry` and `hyperref` entirely.
|
|
|
|
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.
|
|
|
|
|
|
|
|
Copied a few changes from default.latex to default.beamer
|
|
|
|
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.
|
|
Add hyphen option to url package
|
|
|
|
Allow passing options to `microtype` LaTeX package
|
|
|
|
DocBook5: fix namespace declarations
|
|
|
|
Keyword definition used wrong separator
|
|
The option pdfkeywords from hyperref needs keywords separated with a comma `,` instead of a semicolon `;`.
|
|
DZSlides: Force word wrapping in code tags
|
|
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.
|
|
Add hypersetup options to beamer templates
|
|
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.
|
|
This requires the footnote package, which is imported only
if present.
See #208. Thanks to Václav Haisman.
|
|
Addition of notes-server option.
|
|
|
|
LaTeX: Set figure placement defaults.
|
|
|
|
Put only one heading element in top-level header
|
|
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
|
|
Custom font families for beamer template
|
|
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
```
|
|
This restores Pandoc's defaults after applicaiton of changes in
https://github.com/jgm/pandoc/pull/3093.
|
|
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
|
|
Support themeoptions for beamer themes
|
|
Load "beamerarticle" first (if needed)
|
|
see https://github.com/jgm/pandoc-templates/issues/206#issuecomment-236158334
|
|
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.
|
|
Closes #207.
I believe these lines were removed in error.
@adunning if you think otherwise, please comment here.
|
|
Added `\institute`
|
|
Fixes https://github.com/jgm/pandoc-templates/issues/204 by adding a dummy `\institute` command.
|
|
Pass $biblatexoptions$ directly to biblatex
|
|
Addresses https://github.com/jgm/pandoc-templates/issues/201
|
|
Addresses https://github.com/jgm/pandoc-templates/issues/201
|
|
ZimWiki template
|
|
|
|
|
|
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.
|