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
3 changes: 2 additions & 1 deletion .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
texlive-xetex \
latexmk \
xindy \
dvipng
dvipng \
cm-super
- name: Build HTML
shell: bash -l {0}
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
texlive-fonts-extra \
texlive-xetex \
latexmk \
xindy
xindy \
dvipng \
cm-super
- name: Display Conda Environment Versions
shell: bash -l {0}
run: conda list
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/execution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,19 @@ jobs:
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Install latex dependencies
run: |
sudo apt-get -qq update
sudo apt-get install -y \
texlive-latex-recommended \
texlive-latex-extra \
texlive-fonts-recommended \
texlive-fonts-extra \
texlive-xetex \
latexmk \
xindy \
dvipng \
cm-super
- name: Install Anaconda + Dependencies
shell: bash -l {0}
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
texlive-fonts-extra \
texlive-xetex \
latexmk \
xindy
xindy \
dvipng \
cm-super
- name: Display Conda Environment Versions
shell: bash -l {0}
run: conda list
Expand Down
2 changes: 1 addition & 1 deletion lectures/five_preferences.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ from numba import njit
%matplotlib inline
%config InlineBackend.figure_format='retina'

rc('text', usetex=True)
plt.rc('text', usetex=True)

label_size = 20
label_tick_size = 18
Expand Down