diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-02-07 17:17:38 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-02-07 17:17:38 +0100 |
commit | 583f9fa1018bb688323f2367e99c53bba9843f61 (patch) | |
tree | dd8dd456a459a870c93a4b823c556f60d07308c2 | |
parent | 992b433df308464d3a17385486c75686e2f606eb (diff) |
-rw-r--r-- | posts/latex.md | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/posts/latex.md b/posts/latex.md index 4234c84..e1f4163 100644 --- a/posts/latex.md +++ b/posts/latex.md @@ -42,12 +42,11 @@ different name in your distro's package manager. - `texlive-pstricks` - `texlive-publishers` - `texlive-science` -- `latex-mk` tl;dr ``` -# pacman -S texlive-most biber latex-mk +# pacman -S texlive-most biber ``` ### Force XeTeX compiler with latexmk @@ -65,6 +64,12 @@ $postscript_mode = 0; ## Hello world +> I have recently made another repository on my profile for template files, you +> can find it [here on github](https://github.com/lonkaars/templates) or [here +> on git.pipeframe.xyz](https://git.pipeframe.xyz/lonkaars/templates). It +> includes a latex starting point with more commonly used packages, and other +> files I tend to copy from other projects + LaTeX uses a lot of auxiliary files for compilation, so it's a good idea to create a new directory for every document. After creating a new directory, create a .tex file and open it with a text editor. @@ -110,11 +115,15 @@ Because LaTeX creates a lot of temporary files, you should add the following to your repository's `.gitignore`: ```gitignore -**/*.aux -**/*.fdb_latexmk -**/*.fls -**/*.log -**/*.out -**/*.synctex.gz +*.aux +*.bbl +*.bcf +*.blg +*.fdb_latexmk +*.fls +*.log +*.out +*.run.xml +*.synctex.gz ``` |