Beamer
Beamer is the class that deals with presentations. Go to beamer to learn more.
Articles
Journals classes
Revtex
IUCR
Pour JAC:
- Liste à puce 1 seul fichier .tex ;
- les figures dans le même répertoire ;
- pas de subfigures ; (packages non supportés: subfig, subfigure, subcaption - en tout cas on n'a pas encore trouvé. La classe iucr a le bon goût de redéfinir l'environnement figure…)
- 1 seul fichier .bib.
- se compile avec latex, ou pdflatex si on donne l'option “pdf” à la classe.
Make your own package
Open a file “my\_own\_notations.sty”
%% some stuff ... % get home variable \def\newtemp{}% \newcommand{\getenv}[2][]{% \CatchFileEdef{\temp}{"|kpsewhich --var-value #2"}{}% \StrGobbleRight{\temp}{1}[\newtemp]% Delete the trailing whitespace character \if\relax\detokenize{#1}\relax\temp\else\edef#1{\newtemp}\fi% }% %======================================== %partial derivatives \newcommand{\pade}[2]{\frac{\partial #1}{\partial #2}} %% some other stuff ...
Put this file in a folder “texmf/tex/latex/local/my\_own\_notations.sty”.
You you shell rc (~/.bashrc , ~/.zshrc , etc), export this path:
export TEXMFHOME=path to the previous folder/texmf
Now you can use it as any other package.