73 lines
2.0 KiB
Org Mode
73 lines
2.0 KiB
Org Mode
|
#+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: <link rel="stylesheet" type="text/css" href="./css/htmlize.css"/>
|
||
|
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="./css/readtheorg.css"/>
|
||
|
#+HTML_HEAD: <script type="text/javascript" src="./js/jquery.min.js"></script>
|
||
|
#+HTML_HEAD: <script type="text/javascript" src="./js/bootstrap.min.js"></script>
|
||
|
#+HTML_HEAD: <script type="text/javascript" src="./js/jquery.stickytableheaders.min.js"></script>
|
||
|
#+HTML_HEAD: <script type="text/javascript" src="./js/readtheorg.js"></script>
|
||
|
: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
|