1234567891011121314151617181920212223242526272829303132 |
- ---
- # References and Reference Style
- csl: assets/journal-of-neurophysiology.csl
- bibliography: assets/references.bib
- citeproc: true # required in pandoc 2.14
- # Names of Input and Output Files
- input-file: article.md
- output-file: article.pdf # Change to .docx to make a Word file
- # Addition to LaTeX Template
- include-in-header: tex_templates/header.tex # Change margin and line spacing
- include-before-body: tex_templates/before_body.tex
- include-after-body: tex_templates/after_body.tex
- # LaTeX Specifications
- pdf-engine: xelatex
- variables:
- documentclass: article
- mainfont: "DejaVu Serif"
- sansfont: Ubuntu
- classoption:
- - 10pt # 11pt, 12pt
- # To have numbered sections, uncomment the following line.
- # But we don't want our Title or Abstract to be numbered,
- # so we will add {.unnumbered} next to our Title and Abstract
- # headers, separated by one space.
- # Example: # Abstract {.unnumbered}
- # number-sections: true
- ...
|