[Beamer] Add notes about it plus snippets
All checks were successful
Update docs / build_docs (push) Successful in 22s
All checks were successful
Update docs / build_docs (push) Successful in 22s
This commit is contained in:
BIN
docs/docs.pdf
BIN
docs/docs.pdf
Binary file not shown.
@@ -37,6 +37,7 @@
|
|||||||
% └ ┘
|
% └ ┘
|
||||||
\input{./parts/intro.tex}
|
\input{./parts/intro.tex}
|
||||||
\input{./parts/usage.tex}
|
\input{./parts/usage.tex}
|
||||||
|
\input{./parts/beamer.tex}
|
||||||
\input{./parts/migration.tex}
|
\input{./parts/migration.tex}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
7
docs/parts/beamer.tex
Normal file
7
docs/parts/beamer.tex
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
\section{Beamer}
|
||||||
|
\LaTeX Beamer can be used to create presentations. The official user guide can be found \hlhref{https://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf}{here}
|
||||||
|
and a simple introduction by overleaf can be found \hlhref{https://www.overleaf.com/learn/latex/Beamer}{here}.
|
||||||
|
|
||||||
|
These helpers should mostly work in conjunction with beamer, you should however \bi{absolutely not} use the setup commands, as they are specifically meant for the \textit{article} class.
|
||||||
|
|
||||||
|
If you use the snippets, a basic setup for beamer is provided that also includes the helpers.
|
||||||
@@ -20,4 +20,3 @@ The docs contain a section (section \ref{sec:migration}) on migrating from V1.X
|
|||||||
You can install these helper files by downloading this repo and storing it to any location on your PC, remembering where that location is.
|
You can install these helper files by downloading this repo and storing it to any location on your PC, remembering where that location is.
|
||||||
|
|
||||||
You may also install the VSCode snippets found in the vscode-snippets folder. These snippets provide autocompletion for many of the commands that this helper file provides.
|
You may also install the VSCode snippets found in the vscode-snippets folder. These snippets provide autocompletion for many of the commands that this helper file provides.
|
||||||
|
|
||||||
|
|||||||
@@ -64,6 +64,37 @@
|
|||||||
],
|
],
|
||||||
"description": "Prepares a full LaTeX Summary"
|
"description": "Prepares a full LaTeX Summary"
|
||||||
},
|
},
|
||||||
|
"LaTeX Beamer Setup": {
|
||||||
|
"prefix": "latex-beamer",
|
||||||
|
"body": [
|
||||||
|
"\\documentclass{beamer}\n",
|
||||||
|
"\\input{~/projects/latex/janishutz-helpers.tex}\n",
|
||||||
|
"\\usepackage{lmodern}",
|
||||||
|
"\\setFontType{sans}\n",
|
||||||
|
"\\title{$1}",
|
||||||
|
"\\author{\\authorTitle}\n",
|
||||||
|
"\\usetheme{default}",
|
||||||
|
"\\usecolortheme{beaver}\n",
|
||||||
|
"\\AtBeginSection[]{",
|
||||||
|
"\t\\begin{frame}",
|
||||||
|
"\t\\frametitle{Table of Contents}",
|
||||||
|
"\t\\tableofcontents[currentsection]",
|
||||||
|
"\t\\end{frame}",
|
||||||
|
"}\n",
|
||||||
|
"\\begin{document}\n",
|
||||||
|
"\\frame{\\titlepage}\n\n",
|
||||||
|
"\\begin{frame}\n",
|
||||||
|
"\t\\frametitle{Table of Contents}",
|
||||||
|
"\t\\tableofcontents",
|
||||||
|
"\\end{frame}\n\n",
|
||||||
|
"\\begin{frame}\n",
|
||||||
|
"\t\\frametitle{$2}",
|
||||||
|
"\t$3",
|
||||||
|
"\\end{frame}\n\n",
|
||||||
|
"\\end{document}"
|
||||||
|
],
|
||||||
|
"description": "Prepares to write a LaTeX CheatSheet"
|
||||||
|
},
|
||||||
"Fancy table": {
|
"Fancy table": {
|
||||||
"prefix": "table",
|
"prefix": "table",
|
||||||
"body": [
|
"body": [
|
||||||
|
|||||||
Reference in New Issue
Block a user