diff --git a/README.md b/README.md
index dbad01839f05e41b1656da914936edc2e5924d89..3f7f1004860e15d72d9c91c3a3b010c557f47abb 100644
--- a/README.md
+++ b/README.md
@@ -183,6 +183,7 @@ All the prerequisites are packaged:
 - `texlive-fonts-extra` (for ccicons)
 - `texlive-science` (for amstex)
 - `lmodern` (for macroprocessor PDF)
+- `cm-super` (for BVAR à la Sims and GSA PDFs)
 - `python3-sphinx`
 - `tex-gyre`
 - `latexmk`
@@ -191,7 +192,7 @@ All the prerequisites are packaged:
 
 You can install them all at once with:
 ```sh
-apt install gcc g++ gfortran octave-dev libboost-graph-dev libgsl-dev libmatio-dev libslicot-dev libslicot-pic libsuitesparse-dev flex libfl-dev bison meson pkgconf texlive texlive-publishers texlive-latex-extra texlive-fonts-extra texlive-science lmodern python3-sphinx make tex-gyre latexmk libjs-mathjax x13as
+apt install gcc g++ gfortran octave-dev libboost-graph-dev libgsl-dev libmatio-dev libslicot-dev libslicot-pic libsuitesparse-dev flex libfl-dev bison meson pkgconf texlive texlive-publishers texlive-latex-extra texlive-fonts-extra texlive-science lmodern cm-super python3-sphinx make tex-gyre latexmk libjs-mathjax x13as
 ```
 If you use MATLAB, we strongly advise to also `apt install matlab-support` and confirm to rename the GCC libraries shipped with MATLAB to avoid possible conflicts with GCC libraries shipped by your distribution.
 
diff --git a/windows/install-packages.sh b/windows/install-packages.sh
index db0ed947ccbcedb113d17d5903066d39a04de4cd..94f5ac773fed60eb5b90fb236d09995e6d72c870 100755
--- a/windows/install-packages.sh
+++ b/windows/install-packages.sh
@@ -3,7 +3,7 @@
 # On a Debian system, install the packages needed for Windows
 # cross-compilation, and also setup the cross-compiler alternatives.
 
-# Copyright © 2017-2023 Dynare Team
+# Copyright © 2017-2024 Dynare Team
 #
 # This file is part of Dynare.
 #
@@ -26,7 +26,7 @@ PACKAGES=(make p7zip zip zstd wget meson mingw-w64-tools
           gcc-mingw-w64-x86-64-posix g++-mingw-w64-x86-64-posix
           gfortran-mingw-w64-x86-64-posix flex libfl-dev bison texlive
           texlive-publishers texlive-latex-extra texlive-science
-          texlive-fonts-extra lmodern python3-sphinx latexmk nsis)
+          texlive-fonts-extra lmodern cm-super python3-sphinx latexmk nsis)
 
 apt install "${PACKAGES[@]}"