Skip to content

Commit

Permalink
#23 cat
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Mar 23, 2024
1 parent d9162c8 commit 4de244c
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .rultor.yml
Expand Up @@ -35,7 +35,9 @@ merge:
release:
script: |-
l3build tag ${tag}
l3build ctan --show-log-on-error
l3build ctan --show-log-on-error || echo 1
cat build/doc/yb-book.log
exit 1
texsc
texqc
git commit -am "version set to ${tag}"
Expand Down
34 changes: 33 additions & 1 deletion yb-book.dtx
Expand Up @@ -300,21 +300,53 @@ Hello, world!
\RequirePackage{lmodern}
% \end{macrocode}

% Then, we load many important packages:
% Then, we load \href{https://ctan.org/pkg/anyfontsize}{anyfontsize} to enable all sizes of fonts:
% \begin{macrocode}
\RequirePackage{anyfontsize}
% \end{macrocode}

% Then, we load \href{https://ctan.org/pkg/tikz}{tikz} for graphics:
% \begin{macrocode}
\RequirePackage{tikz}
\usetikzlibrary{positioning}
\usetikzlibrary{shapes}
\usetikzlibrary{fit}
% \end{macrocode}

% Then, we load \href{https://ctan.org/pkg/chngcntr}{chngcntr} for something else:
% \begin{macrocode}
\RequirePackage{chngcntr}
\counterwithout{footnote}{chapter}
% \end{macrocode}

% Then, we load \href{https://ctan.org/pkg/lastpage}{lastpage} to enable rendering of the last page number:
% \begin{macrocode}
\RequirePackage{lastpage}
% \end{macrocode}

% Then, we load \href{https://ctan.org/pkg/paralist}{paralist} for inline enumeration:
% \begin{macrocode}
\RequirePackage{paralist}
% \end{macrocode}

% Then, we load \href{https://ctan.org/pkg/xcolor}{xcolor} for colors:
% \begin{macrocode}
\RequirePackage{xcolor}
% \end{macrocode}

% Then, we load \href{https://ctan.org/pkg/graphicx}{graphicx} to enable graphic files inclusion:
% \begin{macrocode}
\RequirePackage{graphicx}
% \end{macrocode}

% Then, we load \href{https://ctan.org/pkg/enumitem}{enumitem} for inline enumeration:
% \begin{macrocode}
\RequirePackage[inline]{enumitem}
\setlist{nosep}
% \end{macrocode}

% Then, we load more packages:
% \begin{macrocode}
\RequirePackage{float}
\RequirePackage[normalem]{ulem}
\RequirePackage{xfp}
Expand Down

0 comments on commit 4de244c

Please sign in to comment.