Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
run: |
python3 --version
sphinx-build --version
DEBIAN_FRONTEND=noninteractive apt-get update -y
DEBIAN_FRONTEND=noninteractive apt-get install texlive-fonts-recommended -y
- name: Lint .rst files
run: |
if find . -name '*.rst' | xargs grep -P '\t'; then echo 'Tabs are bad, please use four spaces in .rst files.'; false; fi
Expand Down
4 changes: 3 additions & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ def get_git_revision_short_hash():

\usepackage{titling}
\usepackage{fancyhdr}
\usepackage{times}
\usepackage{courier}
\makeatletter
\fancypagestyle{normal}{
\fancyhf{}
Expand Down Expand Up @@ -249,7 +251,7 @@ def get_git_revision_short_hash():

# The font size ('10pt', '11pt' or '12pt').
#
'pointsize': '12pt',
'pointsize': '11pt',

# Other document class options - ensure uniform header/footer
'classoptions': ',oneside,openany',
Expand Down