60 lines
2.0 KiB
TeX
60 lines
2.0 KiB
TeX
\newsection
|
|
\section{Usage}
|
|
You can type \texttt{latex-prepare} and press tab, if you have installed the VSCode snippets, or copy over this code snippet:
|
|
|
|
\begin{minted}{latex}
|
|
\documentclass{article}
|
|
|
|
\newcommand{\dir}{~/path/to/helper} % TODO: Change your path here! No trailing slashes!
|
|
\input{\dir/include.tex}
|
|
\load{recommended} % TODO: Change the inclusion level (if necessary), see below
|
|
|
|
\setup{Type your title here}
|
|
|
|
\begin{document}
|
|
\startDocument
|
|
|
|
Type your \LaTeX here
|
|
|
|
\end{document}
|
|
\end{minted}
|
|
|
|
The \verb|\load| command takes one parameter, which can be one of the following:
|
|
\begin{itemize}
|
|
\item \texttt{minimal} Just the core styling and core functionality.
|
|
\item \texttt{most} Includes Math, CS, Language and all styling.
|
|
\item \texttt{recommended} The recommended setup. Includes BibTeX in addition to what is in most
|
|
\item \texttt{all} If you want to also include glossaries or code with highlighting
|
|
\item \texttt{letter} If you want to typeset a letter (see \ref{sec:letters})
|
|
\end{itemize}
|
|
|
|
\subsection{Configuration}
|
|
You can set a global config in config file in helper files directory. The file is located at
|
|
|
|
\texttt{/<path to helpers>/config/config.tex}. All configs are documented there. Simply open that file using any text editor and edit your config.
|
|
|
|
\subsection{Letters}
|
|
\label{sec:letters}
|
|
Letters require a different setup compared to a normal \LaTeX document:
|
|
|
|
\begin{minted}{latex}
|
|
\documentclass[12pt,a4paper]{scrlttr2}
|
|
|
|
\newcommand{\dir}{~/path/to/helper} % TODO: Change your path here! No trailing slashes!
|
|
\input{\dir/include.tex}
|
|
\load{letter}
|
|
|
|
\setkomavar{subject}{} % type your subject here
|
|
\begin{document}\raggedright
|
|
% below, type the address, being careful not to remove the backslashes
|
|
\begin{letter}{Company \\ Name \\ Address \\ CH-Place}
|
|
\opening{Intro}
|
|
|
|
Your text
|
|
|
|
\closing{Kind regards} % Your closing sentence
|
|
\end{letter}
|
|
\end{document}
|
|
\end{minted}
|
|
|
|
If you are using the snippets, you can type \texttt{latex-letter} and press tab. |