article.yaml 931 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. # References and Reference Style
  3. csl: assets/journal-of-neurophysiology.csl
  4. bibliography: assets/references.bib
  5. citeproc: true # required in pandoc 2.14
  6. # Names of Input and Output Files
  7. input-file: article.md
  8. output-file: article.pdf # Change to .docx to make a Word file
  9. # Addition to LaTeX Template
  10. include-in-header: tex_templates/header.tex # Change margin and line spacing
  11. include-before-body: tex_templates/before_body.tex
  12. include-after-body: tex_templates/after_body.tex
  13. # LaTeX Specifications
  14. pdf-engine: xelatex
  15. variables:
  16. documentclass: article
  17. mainfont: "DejaVu Serif"
  18. sansfont: Ubuntu
  19. classoption:
  20. - 10pt # 11pt, 12pt
  21. # To have numbered sections, uncomment the following line.
  22. # But we don't want our Title or Abstract to be numbered,
  23. # so we will add {.unnumbered} next to our Title and Abstract
  24. # headers, separated by one space.
  25. # Example: # Abstract {.unnumbered}
  26. number-sections: true
  27. # etc