LaTeX-Paper-template/environments.tex

39 lines
576 B
TeX
Raw Permalink Normal View History

2021-10-28 09:42:13 +02:00
%
% Custom environments
%
% Code frame
\DefineVerbatimEnvironment{code}{Verbatim}
{
tabsize=4,
samepage=true,
frame=lines,
numbers=left,
}
2022-01-02 15:26:56 +01:00
% Nonpagebreaking chapters
2021-10-28 09:42:13 +02:00
\newenvironment{npbrChap}
{
\begingroup
\let\clearpage\relax
}
{
\endgroup
}
2022-01-02 15:19:25 +01:00
% Nicely placed image environment
% Features:
% Margin-top
% placed exactly where it's put in the source code
% image and caption always stays on same page
\newenvironment{nicepic}
{
\begin{minipage}{\textwidth}
\vspace{7.5mm}
\begin{center}
}
{
\end{center}
\end{minipage}
}