feat: todonotes and simple colored boxes
Update helpers / build_helpers (push) Failing after 5s

This commit is contained in:
2026-07-11 17:30:11 +02:00
parent c9cd005e89
commit 76cde545cc
3 changed files with 24 additions and 0 deletions
+12
View File
@@ -43,6 +43,7 @@
\usepackage{parskip} \usepackage{parskip}
\usepackage{titlesec} \usepackage{titlesec}
\usepackage{centernot} \usepackage{centernot}
\usepackage{todonotes}
\newcounter{descriptorShadeStrength} \newcounter{descriptorShadeStrength}
\newcounter{shadeStrength} \newcounter{shadeStrength}
@@ -690,6 +691,17 @@
{\normalfont\small\bfseries}} {\normalfont\small\bfseries}}
\makeatother \makeatother
% Small color boxes
\newcommand\coloredbox[3]{%
\par\smallskip\noindent
\colorbox{#1!20}{%
\begin{minipage}{\dimexpr\linewidth-3\fboxsep-1pt\relax}%
\textbf{#2}\par\smallskip #3%
\end{minipage}
}%
\par\smallskip
}
% ┌ ┐ % ┌ ┐
% │ Setup │ % │ Setup │
+1
View File
@@ -29,6 +29,7 @@
\RequirePackage{parskip} \RequirePackage{parskip}
\RequirePackage{titlesec} \RequirePackage{titlesec}
\RequirePackage{centernot} \RequirePackage{centernot}
\RequirePackage{todonotes}
\newcounter{descriptorShadeStrength} \newcounter{descriptorShadeStrength}
\newcounter{shadeStrength} \newcounter{shadeStrength}
+11
View File
@@ -96,3 +96,14 @@
{.5\baselineskip}% {.5\baselineskip}%
{\normalfont\small\bfseries}} {\normalfont\small\bfseries}}
\makeatother \makeatother
% Small color boxes
\newcommand\coloredbox[3]{%
\par\smallskip\noindent
\colorbox{#1!20}{%
\begin{minipage}{\dimexpr\linewidth-3\fboxsep-1pt\relax}%
\textbf{#2}\par\smallskip #3%
\end{minipage}
}%
\par\smallskip
}