This commit is contained in:
2026-02-05 19:54:03 +01:00
parent a8a06cf62f
commit 354626cf88
21 changed files with 252 additions and 286 deletions

15
src/core/index.sty Normal file
View File

@@ -0,0 +1,15 @@
% ┌ ┐
% │ Index │
% └ ┘
% For using index package
\newcommand{\prepareIndex}{
\RequirePackage[T1]{fontenc}
\RequirePackage{imakeidx}
\makeindex
}
\newcommand{\addIndexBold}[1]{\textbf{\index{\MakeLowercase{#1}} #1}}
\newcommand{\addIndexItalic}[1]{\textit{\index{\MakeLowercase{#1}} #1}}
\newcommand{\addIndex}[1]{\index{\MakeLowercase{#1}} #1}