From 583f9fa1018bb688323f2367e99c53bba9843f61 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Mon, 7 Feb 2022 17:17:38 +0100 Subject: fix latex post --- posts/latex.md | 25 +++++++++++++++++-------- 1 file 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 ``` -- cgit v1.2.3