summaryrefslogtreecommitdiff
path: root/data/templates/default.ms
AgeCommit message (Collapse)Author
2022-07-12ms template: redefine rather than removing .CH macro.John MacFarlane
This responds to feedback in #8175.
2022-07-11ms writer: add comment in preamble stating generator.John MacFarlane
2019-11-16Ms template: Use Palatino for default font.John MacFarlane
This is less ugly than Times.
2019-11-16Ms template: slightly wider default interparagraph space.John MacFarlane
2019-11-16ms template: default to page numbers on bottom, no paragaraph indent.John MacFarlane
To be more like the default LaTeX output.
2019-07-04Remove misleading comment in man, ms templates.John MacFarlane
2018-04-25Ms template: Fix date.John MacFarlane
Previously .ND was used, but this only works if you have a title page, which we don't. Thanks to @teoric.
2018-01-19hlint code improvements.John MacFarlane
2018-01-03Ms writer: Added papersize variablePhilip K
2017-04-04Ms writer improvements:John MacFarlane
- added some variables to the default template. - cleaner output for images (stringify alt text).
2017-04-04Small fixes to ms template.John MacFarlane
2017-04-01Ms writer: added syntax highlighting.John MacFarlane
Closes #3547. Macro definitions are inserted in the template when there is highlighted code. Limitations: background colors and underline currently not supported.
2017-03-26default.ms template: move header-includes and .1C up.John MacFarlane
2017-03-26Ms writer: Hyperlink table of contents and other improvements.John MacFarlane
2017-03-26Ms writer: Use @ instead of | for inline math delimiter.John MacFarlane
The `|` delimiter had a bad interaction with tbl. See discussion in #1839.
2017-03-26Ms writer: Support external links.John MacFarlane
Also add config options for link color.
2017-03-25Ms writer: Implement header identifiers and internal links.John MacFarlane
2017-03-25Ms writer: use light gray for strikeout.John MacFarlane
Pending groff definitions for striking out an arbitrary section of text (not just a few words).
2017-03-25Ms writer: improved pdf metadata.John MacFarlane
2017-03-25ms template: beginnings of support for PDF metadata.John MacFarlane
This will have to be refined along the lines of what is now done in the latex writer/template. For help, see http://pipeline.lbl.gov/code/3rd_party/licenses.win/groff/1.19.2/pdf/pdfmark.pdf
2017-03-25Ms template: don't include www macros.John MacFarlane
2017-03-24Ms writer: Use indented paragraphs after first in section.John MacFarlane
Note that the current indentation setting is 0; see the settings in the template.
2017-03-24default.ms: Add settings for document variables like width.John MacFarlane
2017-03-24Use www.tmac in default.ms.John MacFarlane
This will allow us to use link macros, etc.
2017-03-24Ms writer: support --toc, date, abstract.John MacFarlane
2017-03-24Ms writer: Use custom .HRULE macro for horizontal rule.John MacFarlane
2017-03-23Ms writer: Super/subscript support.John MacFarlane
Also added some macro definitions to default template to support subscripts + better superscripts.
2017-03-23Initial addition of groff ms writer.John MacFarlane
* New module: Text.Pandoc.Writers.Ms. * New template: default.ms. * The writer uses texmath's new eqn writer to convert math to eqn format, so a ms file produced with this writer should be processed with `groff -ms -e` if it contains math.
2017-02-20Removed data/templates submodule.John MacFarlane
2017-02-06default.beamer changes (Thomas Hodgson):John MacFarlane
- Use dvipsnames options when colorlinks specified (otherwise we get an error for 'maroon') - Added titegraphic and logo variables.
2017-02-06Use unicode-math by default in default.latex template.John MacFarlane
mathspec will be used in xelatex if the `mathspec` variable is set; otherwise unicode-math will be used. Thanks to Václav Haisman.
2017-01-29Use latest master HEAD for templates.John MacFarlane
2017-01-26Split writeDocbook into writeDocbook4, writeDocbook5.John MacFarlane
Removed writerDocbookVersion in WriterOptions. Renamed default.docbook template to default.docbook4. Allow docbook4 as an output format. But alias docbook = docbook4.
2017-01-26EPUB writer: split writeEPUB into writeEPUB2, writeEPUB3.John MacFarlane
Also include explicit epub2 output format in CLI tool.
2017-01-25Rename default.html template to default.html4.John MacFarlane
2017-01-25Copied a few changes from default.latex to default.beamer.John MacFarlane
(Wandmalfarbe)
2017-01-24Changed position of \VerbatimNotes and fancyvrb in latex, beamer templates.John MacFarlane
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.) Closes #3361.
2017-01-10LaTeX template: Add hyphen option to url package.John MacFarlane
2017-01-03LaTeX template: allow passing `microtypeoptions` to microtype.John MacFarlane
Thanks to Vaclav Haisman.
2016-12-30docbook5template: fix namespace declarations (Mauro Bieg).John MacFarlane
2016-12-04LaTeX template: use correct separator for pdfkeywords.John MacFarlane
Needs a comma not a semicolon. Thanks to Wandmalfarbe.
2016-11-25Use pre-wrap for code in dzslides template (Nicolas Porcel).John MacFarlane
Otherwise overly long code will appear on every slide.
2016-10-25Add hypersetup options to beamer templates (Jake Zimmerman).John MacFarlane
2016-09-28LaTeX template: use footnote package to fix notes in tables.John MacFarlane
Thanks to Václav Haisman.
2016-09-28revealjs template: Added `notes-server` option (Yoan Blanc).John MacFarlane
jgm/pandoc-templates#212
2016-09-28LaTeX template: set default figure placement.John MacFarlane
Thanks to Václav Haisman. This accompanies #3093. This change allows users to set the default figure placement for figures, instead of enforcing one choice. Users with custom templates will need to add this.
2016-09-25Use p tags for subtitle, author, date in epub, revealjs, slidy templates.John MacFarlane
See #3119.
2016-09-25HTML template: use p instead of h1 for subtitle, author, date.John MacFarlane
Closes #3119.
2016-09-23Beamer template: added support for fontfamilies.John MacFarlane
As already in LaTeX. Closes #216.
2016-08-11Added `themeoptions` variable to beamer template (Carsten Gips).John MacFarlane