27 lines
765 B
TeX
27 lines
765 B
TeX
\ProvidesPackage{imports}
|
|
|
|
\RequirePackage{amssymb} % -- "bold" math letters (e.g. set of all integers `Z`)
|
|
\RequirePackage{amsmath} % -- advanced math symbols
|
|
|
|
\RequirePackage{listings} % -- code snippet styling block
|
|
|
|
\RequirePackage[english]{babel} % -- ensures correct compilation rules for English
|
|
|
|
% ---------------------------------------------------
|
|
% --- OPTIONAL IMPORTS ------------------------------
|
|
% ---------------------------------------------------
|
|
|
|
% graphic drawing / generation
|
|
%\RequirePackage{tikz}
|
|
|
|
%\usetikzlibrary{arrows,automata}
|
|
%\usetikzlibrary{trees}
|
|
|
|
% ---------------------------------------------------
|
|
|
|
% include images
|
|
%\RequirePackage{graphicx}
|
|
%\graphicspath{{./graphics/}}
|
|
|
|
% ---------------------------------------------------
|