literate-dotfiles/latex.org

62 lines
1.5 KiB
Org Mode
Raw Normal View History

2020-11-03 16:45:22 +01:00
#+TITLE: LaTeX Configuration
2021-01-01 20:12:34 +01:00
#+SETUPFILE: ./setup/org-setup-file.org
2020-11-03 16:45:22 +01:00
2022-02-06 21:43:13 +01:00
* LatexMK
#+begin_src conf :tangle ~/.latexmkrc
$pdf_previewer = "zathura %O %S";
#+end_src
2020-11-03 16:45:22 +01:00
* Awesome LaTeX
- https://github.com/cmichi/latex-template-collection
- https://github.com/latex3/latex3
- https://github.com/egeerardyn/awesome-LaTeX
- https://github.com/simonharrer/latex-best-practices
- https://github.com/dspinellis/latex-advice
* Learn LaTeX
- https://www.youtube.com/user/AlainOlivetti/playlists
* Tools
- https://tectonic-typesetting.github.io/en-US/
- https://github.com/gpoore/minted
* Theme/class
- https://github.com/derric/cleanthesis
- https://github.com/tdehaeze/clean-latex-template
- https://github.com/deedy/Deedy-Resume
- https://github.com/deselaers/latex-beamerposter
* Beamer
- https://github.com/josephwright/beamer
Themes:
- https://github.com/matze/mtheme
- https://github.com/martinbjeldbak/ultimate-beamer-theme-list
* Tikz
- https://github.com/walmes/Tikz
- https://github.com/xiaohanyu/awesome-tikz
- https://github.com/circuitikz/circuitikz
- https://github.com/cbersch/pst-optexp
- https://github.com/hackl/TikZ-StructuralAnalysis
- https://github.com/fhackenberger/ktikz
* Packages
- https://github.com/T-F-S/tcolorbox
* Snippets
** Make arrows with text above and bellow
#+BEGIN_SRC latex
\documentclass{article}
\usepackage{mathtools}
\begin{document}
$\xrightarrow[\text{world}]{\text{hello}}$
$\xRightarrow[\text{world}]{\text{hello}}$
$\xrightarrow[g(x)]{f(x)}$
$\xRightarrow[g(x)]{f(x)}$
\end{document}
#+END_SRC