summaryrefslogtreecommitdiff
path: root/data
Commit message (Collapse)AuthorAge
* HTML slide templates: add toc. (Andrew Dunning)John MacFarlane2016-01-01
|
* Added 'paper' after $papersize$ variable in latex template.John MacFarlane2015-12-23
| | | | | | | | | | | | | | | | Thus you can say `papersize: a4` and the latex will contain `a4paper`. This change may break some existing workflows; if you currently specify `a4paper`, you'll get `a4paperpaper` which is meaningless. However, the change seems worth it, as it will make the `papersize` variable work uniformly across ConTeXt, LaTeX, and html->pdf via wkhtmltopdf. See https://github.com/jgm/pandoc/commit/3861df510c45ecfc0ac9581dc6f16b07eac4a 62d#commitcomment-15135193
* Beamer: Moved header-includes before setting of title etc.John MacFarlane2015-12-19
| | | | | This matches a change already made in the LaTeX template (Thomas Hodgson). Closes jgm/pandoc-templates#168
* LaTeX/Beamer template changes (Thomas Hodgson):John MacFarlane2015-12-19
| | | | | | | | | | | | | | | * Added `thanks` variable * Use `parskip.sty` when `indent` isn't set (fall back to using `setlength` as before if `parskip.sty` isn't available). * Use `biblio-style` with biblatex. * Added `biblatexoptions` variable. * Added `section-titles` variable (defaults to true) to enable/suppress section title pages in beamer slide shows. * Moved beamer themes after fonts, so that themes can change fonts. (Previously the fonts set were being clobbered by lmodern.sty.)
* Implemented SoftBreak and new `--wrap` option.John MacFarlane2015-12-11
| | | | | | | | | | | | | | | | Added threefold wrapping option. * Command line option: deprecated `--no-wrap`, added `--wrap=[auto|none|preserve]` * Added WrapOption, exported from Text.Pandoc.Options * Changed type of writerWrapText in WriterOptions from Bool to WrapOption. * Modified Text.Pandoc.Shared functions for SoftBreak. * Supported SoftBreak in writers. * Updated tests. * Updated README. Closes #1701.
* Beamer template: make `\euro` conditional on presence of character.John MacFarlane2015-12-04
| | | | | | for xelatex and lualatex, as it is for pdflatex. Andrew Dunning.
* LaTeX template changes:John MacFarlane2015-12-03
| | | | | | | | - only pass options to color package if colorlinks is set - make definition of `\euro` conditional in xelatex/lualatex, as it is already for pdflatex (Andrew Dunning)
* Fixed man template so disabling hyphenation actually works.John MacFarlane2015-12-03
| | | | The command needs to come after .TH.
* context template: use simplefonts for font loading.John MacFarlane2015-11-20
| | | | | | | This is needed for things to work on ConTeXt stable from TeXLive 2015. Thanks to Pablo Rodríguez.
* context template: Revert use of `\setuphead` in title block.John MacFarlane2015-11-20
| | | | Thanks to Andrew Dunning and Rik Kabel.
* latex template changes.John MacFarlane2015-11-20
| | | | | | | | | | | | | | | | | | | | | * Removed setting of `subject` in PDF metadata. This used to be set to the subtitle, but really the subtitle need not give the subject. Also, `subtitle` can contain formatting, so we'd need, at least, a plain text version for this. * Moved `header-includes` before setting of `\title`, `\author`, etc. This allows these macros to be redefined. * Use `\subtitle` command for `subtitle`, instead of tacking it on to the title as before. We give a no-op fallback definition if it is not defined. This change should produce much better results in classes that support `\subtitle`. With the default article class, which does not define `\subtitle`, subtitles will no longer be printed unless the user defines `\subtitle` and redefines `\maketitle`. * Moved redefinitions of `\paragraph` and `\subparagraph` to before header-includes.
* Added 'navigation' variable to beamer template.John MacFarlane2015-11-17
| | | | | | Valid values are `empty` (the default), `horizontal`, `vertical`, and `frame`. Note that this changes the default behavior from `horizontal` to `empty`. Closes #2543.
* reveal.js template: Fixed parallaxBackground options.John MacFarlane2015-11-16
| | | | | `parallaxBackgroundHorizontal` and `parallaxBackgroundVertical` need integer values, not strings. (Vaughn Iverson)
* Allow more customization of opendocument styles.John MacFarlane2015-11-14
| | | | | | | | Automatic styles can now be inserted in the template, since the template, not the writer, now provides the enclosing `<office:automatic-styles>` tags. Closes #2520.
* ConTeXt and LaTeX templates: more cleanup (Andrew Dunning).John MacFarlane2015-11-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Formatting of some conditionals is adjusted to provide cleaner spacing and punctuation in generated preamble. - `$for$` is always provided where the user might want to use multiple options (does not change existing functionality). - `hyperref` link rendering revised per discussion in https://github.com/jgm/pandoc-templates/commit/a84f822c30fde1802131c1c7d69d6ebae4550f72: - the `hidelinks` option is now effectively the default (and has been removed as a separate option), rather than setting all links to black; - link colours can be enabled more easily (using a slightly darker version of the old Pandoc defaults) using a new `colorlinks` variable; - `pdfborder={0 0 0}` is automatically enabled in `hyperref` when `colorlinks` is enabled, and is now only applied. - ConTeXt only: - microtype applied to both regular text and small caps; - `indenting` variable added; - renamed `style` to `linkstyle` for consistency (had not yet made it into the README through my oversight, which I will correct); - separated `linkcontrastcolor` from `linkcolor`; - matching LaTeX `hyperref` usage, only disable link styling rather than providing a specific setting.
* Beamer template: added code to prevent slide breaks inside paragraphs.John MacFarlane2015-10-30
| | | | | | | | This will matter, in practice, only when `allowframebreaks` is used. It is especially helpful for bibliography slides. Closes #2442. Thanks to Nick Bart for the solution.
* Beamer template: fix incompatibility of section slides with natbib.John MacFarlane2015-10-29
| | | | | | | | | | | | | | 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. Thinks to Yihui Xie for bringing the problem to my attention. This supersedes #145. See discussion there.
* Template improvements (Andrew Dunning).John MacFarlane2015-10-25
| | | | | | | | | - Added `keywords` to HTML templates and fixed alignment. - Updated dzslides template from source. - Added `lang`, `dir`, `quotes` to HTML templates; always make author and date display conditional. - Fixed `author` and `date` in asciidoc; added `keywords`, `abstract`. - Updated tests.
* LaTeX template: simplify hyperref usage.John MacFarlane2015-10-20
| | | | Andrew Dunning. #139.
* ConTeXt template: link color to black, define all sections.John MacFarlane2015-10-20
| | | | Andrew Dunning.
* Updated latex, beamer templates to support language divs/spans.John MacFarlane2015-10-19
| | | | | | | | Mainly this adds a template variable that can be filled by commands that make babel understand the polyglossia-style language directives. Thanks to mb21.
* HTML-based templates: Use en dash between title prefix & title.John MacFarlane2015-10-18
| | | | | Instead of a hyphen. (Andrew Dunning.)
* Man template: make "generated by" comment conditional.John MacFarlane2015-10-18
| | | | | This allows it to be disabled for automated tests, so they needn't be updated every version bump.
* reveal.js template changes (Andrew Dunning).John MacFarlane2015-10-14
| | | | | | | | | - Add width, height variables to reveal.js. - Update reveal.js template from 3.1 source. All configuration options are now available as variables, but are only be included if set (reveal.js uses defaults otherwise).
* LaTeX template: Add fontenc, indent, subparagraph variables.John MacFarlane2015-10-14
| | | | Thanks to Andrew Dunning.
* Template changes:John MacFarlane2015-10-13
| | | | | | | - Move HTML5 shiv after CSS (Andrew Dunning). - Fix HTML5 shiv URL (Andrew Dunning). - Add dir attribute in html5 (Andrew Dunning). - Realign beamer and LaTeX templates (Andrew Dunning).
* Removed xltxtra, xunicode from LaTeX template.John MacFarlane2015-10-10
| | | | | | Thanks Andrew Dunning. Updated tests and changelog.
* reveal.js template: add controls, progress variables.John MacFarlane2015-10-10
| | | | Thanks to Grégoire Pineau.
* Adjusted latex template for changes to polyglossia-lang variable.John MacFarlane2015-10-10
|
* Man template improvements:John MacFarlane2015-10-10
| | | | | | | - Added comment stating that the page is autogenerated by pandoc, giving version. - Added `adjusting` and `hyphenate` variables. - Documented new variables.
* Beamer template: Added space after colon in figure caption.John MacFarlane2015-10-07
|
* Updated latex template to work better with tufte...John MacFarlane2015-10-04
| | | | | | and other packages that include hyperref or color. Thanks to Xavier Olive.
* Template updates.John MacFarlane2015-10-03
| | | | | | | Beamer: added `innertheme`, `outertheme` variables. LaTeX: added `mainfontoptions`, `sansfontoptions`, `monofontoptions`, `mathfontoptions`, `fontfamilyoptions`.
* Beamer template: allow setting outer/inner theme.John MacFarlane2015-09-29
|
* Changes to templates to support handling of bidirectional text.John MacFarlane2015-09-26
| | | | (LaTeX, ConTeXt, HTML)
* LaTeX, ConTeXt templates: more specific language variables.John MacFarlane2015-09-25
| | | | | | | 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).
* sample.lua - define CaptionedImage, add newline at end.John MacFarlane2015-09-15
| | | | Cloess #2393.
* Merge pull request #2352 from ousia/masterJohn MacFarlane2015-08-16
|\ | | | | added selectors for nested emphasis (epub.css)
| * added selectors for nested emphasis (epub.css)Pablo Rodríguez2015-08-07
| |
* | Added `--bash-completion` option.John MacFarlane2015-08-13
| | | | | | | | | | | | | | | | This generates a bash completion script. To use: eval "$(pandoc --bash-completion)"
* | LaTeX template: reverted change in abstract position.John MacFarlane2015-08-11
| |
* | Revert "LaTeX template: move abstract to before `\maketitle`."John MacFarlane2015-08-11
| | | | | | | | This reverts commit aa08b4cd677b975cf63c451a3414df447e31b55c.
* | LaTeX template: move abstract to before `\maketitle`.John MacFarlane2015-08-09
|/ | | | | | See http://tex.stackexchange.com/questions/139469/to-have-abstract-in-the-docu ment-class-revtex
* Merge pull request #2303 from hftf/h6John MacFarlane2015-07-15
|\ | | | | Add missing Heading 6 style in reference Docx
| * Reference Docx: Add missing Header 6 style (steel blue)Ophir Lifshitz2015-07-15
| | | | | | | | Based on Header 4 (bold, steel blue) and Header 5 (italic, steel blue)
| * Reference Docx: Correct outlineLvl for Header stylesOphir Lifshitz2015-07-15
| | | | | | | | Not sure if this actually affects anything
* | Updated dzslides template.John MacFarlane2015-07-13
| |
* | ConTeXt template: activate hanging indent for definition lists.John MacFarlane2015-07-06
|/ | | | (mb21)
* New method for building man pages.John MacFarlane2015-07-01
| | | | | | | | | | | | | | | | | | + Removed `--man1`, `--man5` options (breaking change). + Removed `Text.Pandoc.ManPages` module (breaking API change). + Version bump to 1.15 because of the breaking changes, even though they involve features that have only been in pandoc for a day. + Makefile target for `man/man1/pandoc.1`. This uses pandoc to create the man page from README using a custom template and filters. + Added `man/` directory with template and filters needed to build man page. + We no longer have two man pages: pandoc.1 and pandoc_markdown.5. Now there is just pandoc.1, which has all the content from README. This change was needed because of the extensive cross-references between parts of the README. + Removed old `data/pandoc.1.template` and `data/pandoc_markdown.5.template`.
* New method for producing man pages.John MacFarlane2015-06-28
| | | | | | | | | | | | | | | | | | | | | This change adds `--man1` and `--man5` options to pandoc, so pandoc can generate its own man pages. It removes the old overly complex method of building a separate executable (but not installing it) just to create the man pages. The man pages are no longer automatically created in the build process. The man/ directory has been removed. The man page templates have been moved to data/. New unexported module: Text.Pandoc.ManPages. Text.Pandoc.Data now exports readmeFile, and `readDataFile` knows how to find README. Closes #2190.