Age | Commit message (Collapse) | Author | Files | Lines |
|
- Added comment stating that the page is autogenerated by
pandoc, giving version.
- Added `adjusting` and `hyphenate` variables.
- Documented new variables.
|
|
|
|
and other packages that include hyperref or color.
Thanks to Xavier Olive.
|
|
Beamer: added `innertheme`, `outertheme` variables.
LaTeX: added `mainfontoptions`, `sansfontoptions`,
`monofontoptions`, `mathfontoptions`, `fontfamilyoptions`.
|
|
|
|
(LaTeX, ConTeXt, HTML)
|
|
Instead of directly using `lang`, we now use `babel-lang` and
`polyglossia-lang` and `context-lang`. These variables are set by
the writers to the necessary values, based on the `lang` variable
(which now always takes a value in BCP47 format).
|
|
|
|
This reverts commit aa08b4cd677b975cf63c451a3414df447e31b55c.
|
|
See
http://tex.stackexchange.com/questions/139469/to-have-abstract-in-the-docu
ment-class-revtex
|
|
(mb21)
|
|
Thanks to Xavier Olive.
The addition of the `CJKoptions` variable allows one to set (e.g.)
a bigger font size for Asian fonts than latin ones.
Including dvipsnames allows specifying colors like MidnightBlue
for link colors. This brings in a dependency on the color package,
but it is a standard package and required anyway by graphics.
|
|
|
|
|
|
|
|
This avoids an error "Please load package hyperref before bidi package,
and then try to run xelatex on your document again". See
jgm/pandoc-templates #96.
|
|
This uses an `otherlang` variable that takes a list of languages.
As requseted in #2174.
|
|
|
|
* Use polyglossia with xelatex in beamer (#85).
* Provide `\tightlist` in beamer template (Anders Persson).
* Add toccolor variable to control link color in toc (Kaixhin).
|
|
Also use `\addbibresource` instead of `\bibliography` for biblatex.
See #1661.
|
|
From last commit.
|
|
Closes #1834.
|
|
|
|
This avoids a conflict when memoir class is used.
Thanks to Joseph Harriott.
|
|
jlduran-latex-tightlist
Conflicts:
data/templates
|
|
to behave more like section headers. Closes #1658.
|
|
This properly handles filenames containing spaces and dots.
Closes #2074.
|
|
Using `text:h` causes problems with numbering. Closes #2059.
Thansk to @nkalvi for diagnosing this.
|
|
We use `` :raw-latex:`...` `` and add a definition for this
role to the template.
Closes #1961.
|
|
Closes #1987.
|
|
This allows custom css to modify themes, instead of being replaced
by themes.
|
|
(Dmitry Smirnov, jgm/pandoc-templates#89)
* Made option "center" configurable.
* Added new options "maxScale" and "slideNumber".
* Added comments to existing options.
|
|
Closes #1949.
|
|
The minified versions no longer ship with the library.
|
|
|
|
Not title page!
|
|
This fixes a bug introduced by the previous fix.
|
|
This aids styling, making it possible for example to set 0 margins
on the title page. Closes jgm/pandoc#1758.
|
|
Closes #1648.
|
|
Fixes jgm/pandoc-templates#70.
Thanks to bluebirch.
|
|
Fixes a bug when there is verbatim inside notes.
Closes #1616.
|
|
Currently, pandoc has hard-coded the following in order to make tight lists in
LaTeX:
```hs
text "\\itemsep1pt\\parskip0pt\\parsep0pt"
```
Which is fine, but does not allow customizations. For example, the `memoir`
class already has a `\tightlist` declaration for this purpose:
```tex
\newcommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
```
I'm proposing to use a similar solution:
```diff
@@ In Writers/LaTeX.hs:
-then text "\\itemsep1pt\\parskip0pt\\parsep0pt"
+then text "\\tightlist"
@@ In templates/default.latex:
+\newcommand{\tightlist}{%
+ \setlength{\itemsep}{1pt}\setlength{\parskip}{0pt}\setlength{\parsep}{0pt}}
```
This allows us to customize the tightness to our needs.
Backward Compatibility
If a person is using a custom LaTeX template (not based upon the `memoir`
class), the `\tightlist` declaration must be added.
|
|
Previously we just expected 'title', 'subtitle', 'author', 'date'.
Now we still support those, but also support the format recommended
for epub metadata in the pandoc README:
---
title:
- type: main
text: My Book
- type: subtitle
text: An investigation of metadata
creator:
- role: author
text: John Smith
- role: editor
text: Sarah Jones
identifier:
- scheme: DOI
text: doi:10.234234.234/33
publisher: My Press
rights: (c) 2007 John Smith, CC BY-NC
...
|
|
Closes #1549. Thanks to lemzwerg.
|
|
|
|
The templates are duel licensed, BSD3 and GPL2+.
|
|
|
|
Headers.
We might also want to do this elsewhere (for pars, for example).
|
|
|
|
These can be set to get `\listoftables` and `\listoffigures`.
Closes #1407.
At this point we won't add a command line argument, because
this only affects one writer. But the variables can be set
at the command line with
-Vlof -Vlot
or in YAML metadata.
|