summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/Main.hs2
-rw-r--r--www/links/index.md1
-rw-r--r--www/links/tex/index.md9
3 files changed, 11 insertions, 1 deletions
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.