diff options
Diffstat (limited to 'build/latex/academia/headers/preamble')
3 files changed, 6 insertions, 6 deletions
diff --git a/build/latex/academia/headers/preamble/core/graphics_and_floats.tex b/build/latex/academia/headers/preamble/core/graphics_and_floats.tex index c0784c9..c71fc2a 100644 --- a/build/latex/academia/headers/preamble/core/graphics_and_floats.tex +++ b/build/latex/academia/headers/preamble/core/graphics_and_floats.tex @@ -7,9 +7,6 @@ \usepackage{pgfplots} % plots, 2D and 3D \pgfplotsset{compat=1.18} % Set a compatibility level, to be able to use the new versions -\usetikzlibrary{external} -\tikzexternalize[prefix=figures/, mode=list and make] - % \usetikzlibrary{intersections, angles, quotes, calc, positioning} % \usetikzlibrary{arrows.meta} %TODO maybe deprecated? @@ -17,6 +14,9 @@ % \usepackage{subcaption} % like caption package, but for subfigures % \usepackage{booktabs} % better tables - \usepackage{float} % Allows placing floats here (H) and creating new floats `\newfloat` \usepackage{wrapfig} % Wraps text around figures with the \begin{wrapfigure} environment + +\NewDocumentCommand{\IncludeTikz}{m}{ + \includegraphics{build/figures/#1/#1} +} diff --git a/build/latex/academia/headers/preamble/core/index.tex b/build/latex/academia/headers/preamble/core/index.tex index a52cc20..3efbfc4 100644 --- a/build/latex/academia/headers/preamble/core/index.tex +++ b/build/latex/academia/headers/preamble/core/index.tex @@ -4,5 +4,5 @@ \ifdraft{ \usepackage{showidx} } { - \message {Draft packages not loaded, showidx not loaded.} + \message {Draft option not enabled, 'showidx' not loaded.} } diff --git a/build/latex/academia/headers/preamble/core/references.tex b/build/latex/academia/headers/preamble/core/references.tex index e42b22f..179d903 100644 --- a/build/latex/academia/headers/preamble/core/references.tex +++ b/build/latex/academia/headers/preamble/core/references.tex @@ -33,5 +33,5 @@ \ifdraft{ \usepackage{showlabels} } { - \message {Draft packages not loaded, 'showlabels' not loaded.} + \message {Draft option not enabled, 'showlabels' not loaded.} } |