55 lines
1.4 KiB
Org Mode
55 lines
1.4 KiB
Org Mode
|
#+TITLE: Awesome LaTeX
|
||
|
|
||
|
* Other Awezome 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
|
||
|
|
||
|
** Theme
|
||
|
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
|
||
|
* Math
|
||
|
** Make arrows with text above and bellow
|
||
|
https://tex.stackexchange.com/questions/103988/rightarrow-with-text-above-it
|
||
|
|
||
|
#+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
|