mirror of
https://forge.s1gm4.eu/GENIOMHE/machine-learning.git
synced 2023-09-27 18:56:25 +02:00
18 lines
352 B
TeX
Executable File
18 lines
352 B
TeX
Executable File
%----------------------------------------
|
|
% CHAPTERS
|
|
%----------------------------------------
|
|
|
|
\newcommand{\includechapters}[2]{%
|
|
\foreach \i in {0, ..., #2} {%
|
|
\edef\FileName{content/chapters/#1/\i}%
|
|
\IfFileExists{\FileName}{%
|
|
\input{\FileName}%
|
|
}
|
|
}
|
|
}
|
|
|
|
\includechapters{}{2}
|
|
|
|
% \includechapters{part2}{2}
|
|
|
|
% \includechapters{part3}{1} |