You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# ST40-report
|
|
|
|
|
|
|
|
Report for my fourth-year internship, in latex.
|
|
|
|
|
|
|
|
## Quick setup (arch linux)
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# Download required programs and libraries
|
|
|
|
sudo pacman -S texlive-core texlive-latexextra texlive-fontsextra texlive-langextra
|
|
|
|
git clone https://github.com/pinam45/utbm-latex-internship-report-covers
|
|
|
|
git clone https://aur.archlinux.org/ttf-tahoma.git
|
|
|
|
git clone https://git.shadamethyst.xyz/amethyst/ST40-report
|
|
|
|
|
|
|
|
# Copy the utbmcovers library to the texmf folder
|
|
|
|
cd utbm-latex-internship-report-covers
|
|
|
|
mkdir -p ~/texmf/tex/latex/
|
|
|
|
cp -r utbmcovers ~/texmf/tex/latex/
|
|
|
|
sudo mktexlsr
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
# Download and install the Tahoma font
|
|
|
|
cd ttf-tahoma
|
|
|
|
makepkg -si
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
# Build the report
|
|
|
|
cd ST40-report
|
|
|
|
make
|
|
|
|
```
|