Skip to content
Open
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
11 changes: 10 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,17 @@ RUN apt-get install -y --no-install-recommends \
gnat-12 \
# Elixir
erlang-dev elixir \
# Latex
# Latex
# texlive-latex-base alone is not enough for Manim's Tex/MathTex:
# - texlive-latex-extra provides standalone.cls + preview.sty
# (Manim's default \documentclass[preview]{standalone})
# - dvisvgm converts the compiled DVI/PDF to SVG (Manim calls it last)
# - fonts-recommended / science avoid follow-up font & amsmath errors
texlive-latex-base \
texlive-latex-extra \
texlive-fonts-recommended \
texlive-science \
dvisvgm \
# COBOL
gnucobol \
# Fortran
Expand Down