Files
latex/src/style/cs.sty
2026-02-05 19:54:03 +01:00

18 lines
525 B
TeX

% ┌ ┐
% │ STYLE: Computer Science │
% └ ┘
\RequirePackage{forest}
\tikzset{algpxIndentLine/.style={draw=lightgray}}
\algrenewcommand{\alglinenumber}[1]{#1}
\newenvironment{algo}[1]{
\begin{algorithm}
\begin{spacing}{1.2}
\caption{\textsc{#1}}
\begin{algorithmic}[1]
}{
\end{algorithmic}
\end{spacing}
\end{algorithm}
}