Compare commits
No commits in common. "531424f6adec4377f9170fc06d61256a4e9ddd1e" and "b03abe6400554b450954d19b7dfbc11cfbedbd2f" have entirely different histories.
531424f6ad
...
b03abe6400
|
@ -318,5 +318,5 @@ main.pdf
|
||||||
|
|
||||||
# ignore build directories
|
# ignore build directories
|
||||||
# these hold all the clutter we do not want to have
|
# these hold all the clutter we do not want to have
|
||||||
tmp
|
.tmp
|
||||||
build
|
.build
|
15
README.md
15
README.md
|
@ -28,22 +28,11 @@ This project requires the following:
|
||||||
- python
|
- python
|
||||||
- pygments (python package for minted)
|
- pygments (python package for minted)
|
||||||
|
|
||||||
## Quick start for Linux/WSL and Devbox
|
|
||||||
In the repository you will find a `devbox.json`. If you have devbox installed you can simply setup a ready to go container by running:
|
|
||||||
```shell
|
|
||||||
devbox shell
|
|
||||||
```
|
|
||||||
then inside the container compile with:
|
|
||||||
```shell
|
|
||||||
latexmk
|
|
||||||
```
|
|
||||||
Alternatively you can launch VSCode/VSCodium inside the devbox and compile with the LaTeX workstation plugin.
|
|
||||||
|
|
||||||
## Files created during build
|
## Files created during build
|
||||||
The build process of latexmk will create two folders for storing temporary cache files for faster rebuilds. The primary folder being `.tmp` which will hold every created .aux file. Additionally the resulting pdf file will be located besides main.tex as well as an index file called `main.synctex.gz` used for indexing between main.tex and main.pdf (unused by VSCode, used by Overleaf).
|
The build process of latexmk will create two folders for storing temporary cache files for faster rebuilds. The primary folder being `.tmp` which will hold every created .aux file. Additionally the resulting pdf file will be located besides main.tex as well as an index file called `main.synctex.gz` used for indexing between main.tex and main.pdf (unused by VSCode, used by Overleaf).
|
||||||
|
|
||||||
Build files:
|
Build files:
|
||||||
- main.pdf
|
- main.pdf
|
||||||
- main.synctex.gz
|
- main.synctex.gz
|
||||||
- build/*
|
- .build/*
|
||||||
- tmp/*
|
- .tmp/*
|
10
devbox.json
10
devbox.json
|
@ -1,10 +0,0 @@
|
||||||
{
|
|
||||||
"packages": [
|
|
||||||
"texlive.combined.scheme-small",
|
|
||||||
"python311",
|
|
||||||
"python311Packages.pygments"
|
|
||||||
],
|
|
||||||
"nixpkgs": {
|
|
||||||
"commit": "f80ac848e3d6f0c12c52758c0f25c10c97ca3b62"
|
|
||||||
}
|
|
||||||
}
|
|
Reference in New Issue