Skip to content

Commit

Permalink
add changes
Browse files Browse the repository at this point in the history
  • Loading branch information
huangyxi committed Oct 3, 2024
1 parent d7cd321 commit a2505cd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .latexmkrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,16 @@ $silence_logfile_warnings = 1;

$out_dir = 'build';
$pdf_mode = 1;
$show_time = 1;

@default_files = ('useclass.dtx');

$makeindex = "makeindex %O -s gind.ist -o %D %S";
# Process index
$makeindex = "makeindex -s gind.ist %O -o %D %S";

# Process glossary (change history)
add_cus_dep('glo', 'gls', 0, 'makeglo2gls');
$makeglossaries = makeglossaries;
sub makeglo2gls {
system("makeindex -s gglo.ist -o \"$_[0].gls\" -t \"$_[0].glg\" \"$_[0].glo\"");
}
6 changes: 5 additions & 1 deletion useclass.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,14 @@
\documentclass{article}
\usepackage{useclass}
\useclass*[full]{l3doc}
\RecordChanges
\usepackage{mdframed}

\providecommand{\name}{\jobname}
\providecommand{\pkgname}{\pkg{\name}}
\begin{document}
\DocInput{\jobname.dtx}
\PrintChanges
\PrintIndex
\end{document}
%</driver>
Expand Down Expand Up @@ -106,6 +108,8 @@
%
% \tableofcontents
%
% \changes{v1.0}{2024-03-05}{Initial release.}
%
% \begin{documentation}
%
% \section{Introduction}
Expand Down Expand Up @@ -439,6 +443,7 @@
%
% \subsection{Classes Configuration}
% \begin{variable}{\c_@@_classes_prop}
% \changes{v1.1}{2024-10-03}{Support \cls{ctex} classes.}
% Configuration for classes to restore after loading.
% The defined property is NOT nested, where values in the prop are token lists but not properties or sequences.
% \begin{macrocode}
Expand Down Expand Up @@ -472,4 +477,3 @@
% \end{macrocode}
%
% \end{implementation}
% \PrintIndex

0 comments on commit a2505cd

Please sign in to comment.