summaryrefslogtreecommitdiff
path: root/tryk/_issue.yml
blob: fa94285d29a0add376b603eb08b1627553235258 (plain)
  1. format:
  2.   pdf:
  3. # links-as-notes: true
  4. colorlinks: false
  5. pdf-engine: lualatex
  6. documentclass: scrartcl
  7. csquotes: true
  8. papersize: a4
  9. # extract-media: img
  10. include-in-header:
  11. # support multiple tagged columns (class option twocolumn is not tagged)
  12. - text: |
  13. \usepackage[a4paper, margin=0.5in, bottom=1in]{geometry} % Set all margins to zero
  14. \usepackage{multicol}
  15. \setlength{\columnsep}{20pt} % Adjust space between columns
  16. \setlength{\columnwidth}{0.45\textwidth} % Set column width (optional)
  17. # avoid widow or orphan lines
  18. - text: |
  19. \usepackage[defaultlines=4,all]{nowidow}
  20. # set page footer to danish page count "side X af Y"
  21. - text: |
  22. \usepackage{lastpage}
  23. \usepackage{scrlayer-scrpage}
  24. \cfoot{side \thepage\ af \pageref{LastPage}}
  25. # suppress figure label
  26. - text: |
  27. \usepackage[labelformat=empty]{caption}
  28. include-before-body:
  29. - text: |
  30. # enable multiple tagged columns
  31. - text: |
  32. \begin{multicols}{2}
  33. \raggedcolumns
  34. include-after-body:
  35. # conclude multiple tagged columns
  36. - text: |
  37. \end{multicols}