- Change underscores in file names to hyphens.

- Make color names clearer.
- Clean up commonincludes.
This commit is contained in:
2025-09-15 17:00:34 -05:00
parent 029916b8d6
commit 5e578de497
22 changed files with 70 additions and 62 deletions

View File

@@ -1,4 +1,10 @@
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{PrimeTeX/packages/Index}[2025-07-09]
\ProvidesExplPackage{PrimeTeX/packages/Index}{2025-09-15}{1.0}{
Index commands.
}
\NewDocumentCommand{\idx}{m}{\StrSubstitute{#1}{!}{ }\index{#1}}
\NewDocumentCommand{\idx}{m}{
\str_set:Nn \l_tmpa_str {#1}
\str_replace_all:Nnn \l_tmpa_str {!} {~}
\index{\l_tmpa_str}
}