mirror of
https://github.com/agresdominik/paper-template.git
synced 2026-04-21 18:05:49 +00:00
Paper template in LaTeX from my Bachelors Thesis
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
|
||||
# LaTeX Template for any basic scientific paper / thesis
|
||||
|
||||
## Prerequisites
|
||||
|
||||
### LaTeX / BiTeX
|
||||
|
||||
Arch:
|
||||
```bash
|
||||
sudo pacman -S texlive latexmk biber
|
||||
```
|
||||
|
||||
Fedora:
|
||||
```bash
|
||||
sudo dnf install latexmk texlive-scheme-medium biber
|
||||
```
|
||||
|
||||
Debian:
|
||||
```bash
|
||||
sudo apt install latexmk texlive-latex-recommended texlive-latex-extra texlive-bibtex-extra biber
|
||||
```
|
||||
|
||||
### Extra (pdf viewer, change make watch to remove)
|
||||
|
||||
```bash
|
||||
sudo pacman -S zathura
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
First create a out:
|
||||
|
||||
```bash
|
||||
mkdir out
|
||||
```
|
||||
|
||||
### Compile main.tex into a PDF:
|
||||
|
||||
```bash
|
||||
make all
|
||||
```
|
||||
|
||||
### Compile and watch for changes, then recompile
|
||||
|
||||
```bash
|
||||
make watch
|
||||
```
|
||||
|
||||
### Clean the out dir
|
||||
|
||||
```bash
|
||||
make clean
|
||||
```
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user