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
36 changes: 36 additions & 0 deletions install
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/bin/bash

# List of LaTeX packages to install
PACKAGES=(
polyglossia
fontspec
geometry
listings
xcolor
soul
# graphicx
fancyhdr
# array
amsmath
amsfonts
fancyvrb
# verbatim
longfbox
setspace
titlesec
hyperref
# subcaption
caption
colortbl
options
pict2e
ellipse
)

echo "Installing LaTeX packages via tlmgr..."

for pkg in "${PACKAGES[@]}"; do
echo "Installing: $pkg"
tlmgr install "$pkg"
done