mirror of
https://github.com/Wandmalfarbe/pandoc-latex-template.git
synced 2025-01-01 03:46:39 +00:00
30c292c95b
- The example demonstrates the use of the filter `pandoc-latex-environments` to create custom admonition boxes with the `awesomebox` package. *pandoc-latex-environment* is a pandoc filter for adding LaTeX environement on specific HTML div tags. - Added LaTeX package `awesomebox` to the `travis.yml` file
17 lines
613 B
YAML
17 lines
613 B
YAML
sudo: required
|
|
dist: trusty
|
|
language: r
|
|
pandoc_version: 2.0.2
|
|
install:
|
|
# for rendering the PDFs
|
|
- sudo apt-get install poppler-utils
|
|
# for executng python based pandoc filters
|
|
- sudo apt-get install python3
|
|
# packages needed for the template
|
|
- tlmgr install xecjk filehook unicode-math ucharcat pagecolor babel-german ly1 mweights sourcecodepro sourcesanspro mdframed needspace fvextra footmisc footnotebackref background
|
|
# packages only needed for some examples (that include packages via header-includes)
|
|
- tlmgr install awesomebox
|
|
before_script:
|
|
- cd examples
|
|
script:
|
|
- sh build-examples.sh |