summaryrefslogtreecommitdiff
path: root/data/templates/default.epub2
AgeCommit message (Collapse)Author
2023-04-27add lang attribute to html tag in epub tplGabriel Lewertowski
2022-10-17Adjust tests for CSS change; add CSS comments to mark...John MacFarlane
highlighting CSS and citations CSS in the source.
2022-10-17EPUB CSS changes.John MacFarlane
With this change, we reduce the amount of inline CSS used for EPUBs. Almost everything is now in the default EPUB CSS (`data/epub.css`), which can be overridden either by putting `epub.css` in the user data directory or by using `--css` on the command line. Inline styles are only used for syntax highlighting (which depends on the style specified, and is only included on pages with highlighted code) and for bibliography formatting (which can depend on the CSL style, and is only used in the page containing the bibliography). Note that, for compatibility with older readers, we don't use flexbox to style `column/columns` divs by default, as we do in HTML. Instead, we use an older method which only works when there are two `column` divs inside a `columns` div. If you need more than two columns and aren't worried about support for older EPUB readers, you can modify the default CSS (there is a comment in the CSS telling you what to do). Closes #8379.
2022-01-09EPUB template improvements.John MacFarlane
Include abstract in default template. Also ensure that the essential styles needed by pandoc (`styles.html` partial) are included in the templates. This is important for correct formatting of CSL bibliographies. Note that much of the styling in `styles.html` will be ignored for EPUB, because of the conditional on `document-css`, but if it is desired, you can set the `document-css` variable.
2020-11-27EPUB: use preserveAspectRatio="xMidYMid" for cover image (#6895)Shin Sang-jae
This change affects both the epub2 and the epub3 templates. It avoids distortion of the cover image by requiring that the aspect ratio be preserved.
2019-07-13EPUB writer: Use svg tag wrapper for cover image.John MacFarlane
In addition, the code generating the image has been moved to the template, to make it more customizable. Those who use custom EPUB templates will need to adjust their templates, adding the code to generate the cover image. (Previously this was just inserted into 'body'.) Closes #5643.
2019-05-03EPUB2/3 templates: Move inline styles to default epub.css.John MacFarlane
Those who use a custom CSS stylesheet with EPUB should add these lines: ```css code{ white-space: pre-wrap; } span.smallcaps{ font-variant: small-caps; } span.underline{ text-decoration: underline; } q { quotes: "“" "”" "‘" "’"; } div.column{ display: inline-block; vertical-align: top; width: 50%; } ``` See #5466.
2017-12-26HTML writer: Use br elements in line blocks...John MacFarlane
instead of relying on CSS. Closes #4162. HTML-based templates have had the custom CSS for div.line-block removed. Those maintaining custom templates will want to remove this too. We still enclose line blocks in a div with class line-block.
2017-12-03Include default CSS for 'underline' class in HTML-based templates.John MacFarlane
2017-11-02Improved support for columns in HTML.John MacFarlane
* Move as much as possible to the CSS in the template. * Ensure that all the HTML-based templates (including epub) contain the CSS for columns. * Columns default to 50% width unless they are given a width attribute. Closes #4028.
2017-04-25HTML line block: Use class instead of style attribute.John MacFarlane
We now issue `<div class="line-block">` and include a default definition for `line-block` in the default templates, instead of hard-coding a `style` on the div. Closes #1623.
2017-03-04Regularized CSS in html/epub/html slide templates.John MacFarlane
All templates now include `code{white-space: pre-wrap}` and CSS for `q` if `--html-q-tags` is used. Previously some templates had `pre` and others `pre-wrap`; the `q` styles were only sometimes included. See #3485.
2017-03-04templates: CSS for .smallcaps, closes #1592 (#3485)Mauro Bieg
2017-02-20Merge commit '9e52ac6bb02afd7b4ed5dad61021a1fa33051203' as 'data/templates'John MacFarlane
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
2016-08-06Added `beamerarticle` variable.John MacFarlane
This causes the `beamerarticle` package to be loaded in beamer, to produce an article from beamer slides. (Carsten Gips)
2016-07-22Textile reader: support `bc..` extended code blocks.John MacFarlane
Also, remove trailing newline in code blocks (consistently with Markdown reader).
2016-07-20Restored whitespace between paragraphs in beamer template.John MacFarlane
See jgm/pandoc-templates#207.
2016-07-18LaTeX template: Added dummy definition for `\institute`.John MacFarlane
This isn't a standard command, and we want to avoid a crash when `institute` is used with the default template.
2016-07-01beamer, latex templates: pass biblatexoptions directly in package load.John MacFarlane
This allows runtime optinos to be used. Fixes jgm/pandoc-citeproc#201
2016-06-30Added Zim Wiki writer, template and tests.Alex Ivkin
2016-06-25Added `secnumdepth` variable to LaTeX template.John MacFarlane
Closes #2920.
2016-06-07latex template: fix for obscure hyperref/xelatex issue.John MacFarlane
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.
2016-05-19LaTeX template: support for custom font families.John MacFarlane
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 ``` (vladipus)
2016-05-01Added docbook5 template.John MacFarlane
2016-03-19Added `institute` variable in LaTeX and Beamer templates.John MacFarlane
2016-01-21Added default.tei TEI templateJohn MacFarlane
2016-01-01HTML slide templates: add toc. (Andrew Dunning)John MacFarlane
2015-12-23Added 'paper' after $papersize$ variable in latex template.John MacFarlane
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