From 40d8771ee659f6ce3e60f8ac24573ec8c0262354 Mon Sep 17 00:00:00 2001 From: Chris Wells Date: Sun, 30 Aug 2026 14:58:45 -0400 Subject: Basic latex page --- app/Main.hs | 2 +- www/links/index.md | 1 + www/links/tex/index.md | 9 +++++++++ 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 www/links/tex/index.md diff --git a/app/Main.hs b/app/Main.hs index 139d00c..62f0a51 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -102,7 +102,7 @@ main = do [ ("teaching/books/index.html", "/books/index.html") ] - match "www/links/index.md" $ do + match "www/links/**/*.md" $ do route $ dropParentRoute 1 `composeRoutes` setExtension ".html" compile $ getResourceBody >>= applyAsTemplate baseCtxt >>= myRenderPandoc >>= applyTemplate defaultTemplate baseCtxt diff --git a/www/links/index.md b/www/links/index.md index dcad7a8..0dcf718 100644 --- a/www/links/index.md +++ b/www/links/index.md @@ -29,6 +29,7 @@ * [Paul's Online Notes](https://tutorial.math.lamar.edu/) ## TeX +* [Tutorials](./tex) * [TeX StackExchange](https://tex.stackexchange.com/) * [DeTeXify](https://detexify.kirelabs.org/classify.html) diff --git a/www/links/tex/index.md b/www/links/tex/index.md new file mode 100644 index 0000000..4dfa7b8 --- /dev/null +++ b/www/links/tex/index.md @@ -0,0 +1,9 @@ +# LaTeX + +If you've never used LaTeX before, I highly recommend using [Overleaf](https://www.overleaf.com). +Overleaf has additionally published this pretty great [tutorial](https://www.overleaf.com/learn/latex/Learn_LaTeX_in_30_minutes) for getting started with LaTeX. + +If you want to use LaTeX locally, you should install [TeX Live](https://www.tug.org/texlive/). +An alternate option is [MiKTeX](https://miktex.org/), but I have no experience with this option. +There are many LaTeX-specific editors available (simply search google), along with plugins for popular editors/ides. +For example, I use Vim with the wonderful [VimTeX](https://github.com/lervag/vimtex) plugin. -- cgit v1.3.1