diff --git a/dotfiles/latex.org b/dotfiles/latex.org new file mode 100644 index 0000000..0b9161e --- /dev/null +++ b/dotfiles/latex.org @@ -0,0 +1,72 @@ +#+TITLE: LaTeX Configuration +:DRAWER: +#+STARTUP: overview + +#+LANGUAGE: en +#+EMAIL: dehaeze.thomas@gmail.com +#+AUTHOR: Dehaeze Thomas + +#+HTML_LINK_HOME: ./index.html +#+HTML_LINK_UP: ./index.html + +#+HTML_HEAD: +#+HTML_HEAD: +#+HTML_HEAD: +#+HTML_HEAD: +#+HTML_HEAD: +#+HTML_HEAD: +:END: + +* 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