Added build scripts and ammended REAMDE accordingly
This commit is contained in:
parent
92263fdb8e
commit
508e0ee821
18
README.md
18
README.md
@ -1,5 +1,21 @@
|
|||||||
# ba_thesis
|
# ba_thesis
|
||||||
|
|
||||||
This repository contains resources related to the Bachelor-Thesis
|
This repository contains resources related to the Bachelor-Thesis
|
||||||
"Application of Optimization Algorithms for Channel Decoding"
|
`Application of Optimization Algorithms for Channel Decoding`
|
||||||
(The related sofware has it's own [repo](https://git.scc.kit.edu/ba_duo/ba_sw))
|
(The related sofware has it's own [repo](https://git.scc.kit.edu/ba_duo/ba_sw))
|
||||||
|
|
||||||
|
|
||||||
|
## Compiling the sources
|
||||||
|
|
||||||
|
The folders of each presentation (located in `latex/presentations`) and the thesis (`latex/thesis`)
|
||||||
|
contain a `build.sh` script.
|
||||||
|
|
||||||
|
In order to compile the sources for one of the documents, simply navigate into the corresponding
|
||||||
|
directory and run
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ ./build.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
A new `build` folder containing the compiled pdf will be created.
|
||||||
|
|
||||||
|
|||||||
2
latex/presentations/02_12_2022/.latexmkrc
Normal file
2
latex/presentations/02_12_2022/.latexmkrc
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
$pdflatex="pdflatex -interaction=nonstopmode %O %S";
|
||||||
|
$out_dir = 'build';
|
||||||
2
latex/presentations/02_12_2022/build.sh
Executable file
2
latex/presentations/02_12_2022/build.sh
Executable file
@ -0,0 +1,2 @@
|
|||||||
|
mkdir -p build/build
|
||||||
|
latexmk -pdf
|
||||||
2
latex/presentations/example/.latexmkrc
Normal file
2
latex/presentations/example/.latexmkrc
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
$pdflatex="pdflatex -interaction=nonstopmode %O %S";
|
||||||
|
$out_dir = 'build';
|
||||||
2
latex/presentations/example/build.sh
Executable file
2
latex/presentations/example/build.sh
Executable file
@ -0,0 +1,2 @@
|
|||||||
|
mkdir -p build/build
|
||||||
|
latexmk -pdf
|
||||||
2
latex/thesis/build.sh
Executable file
2
latex/thesis/build.sh
Executable file
@ -0,0 +1,2 @@
|
|||||||
|
mkdir -p build/build
|
||||||
|
latexmk -pdf
|
||||||
Loading…
Reference in New Issue
Block a user