more pysty packages

This commit is contained in:
Maximilian Keßler 2021-10-06 20:46:27 +02:00
parent 6ad0a2b411
commit 147229261e
5 changed files with 31 additions and 40 deletions

View file

@ -1,7 +1,4 @@
\NeedsTeXFormat{LaTeX2e} __HEADER__(Package for managing different lectures within a document)
\ProvidesPackage{mkessler-lectures}[2021-09-06 - Package for managing different lectures within a document]
%%%%%%%%%%%%%%%%%%
% The core of the lecture command this package provides has been taken from the preamble in % The core of the lecture command this package provides has been taken from the preamble in
% https://github.com/gillescastel/university-setup % https://github.com/gillescastel/university-setup
% which is licensed under % which is licensed under
@ -29,21 +26,20 @@
%SOFTWARE. %SOFTWARE.
% This package extends the lecture command to make a summary of lectures at the beginning of a document, and has thus modified this command. % This package extends the lecture command to make a summary of lectures at the beginning of a document, and has thus modified this command.
\newif\ifenglish\englishtrue \RequirePackage{xkeyval}
\DeclareOption{german}{\englishfalse}
\DeclareOption{english}{\englishtrue}
\newif\iffancyhead\fancyheadfalse __LANGUAGE_OPTIONS__
\DeclareOption{fancyhead}{\fancyheadtrue}
\DeclareOption*{\PackageWarning{mkessler-lectures}{Unknown '\CurrentOption'}} __NEW_IF__(fancyhead,false)
\ProcessOptions\relax \DeclareOptionX{fancyhead}{__SET_IF__(fancyhead,true)}
__END_OPTIONS_X__
%Tocloft package for making a list of lectures %Tocloft package for making a list of lectures
\RequirePackage{tocloft} \RequirePackage{tocloft}
%Store name of the summary in a command to use it multiple times %Store name of the summary in a command to use it multiple times
\newcommand\listlecturename{\ifenglish Summary of lectures\else Übersicht der Vorlesungen\fi} \newcommand__PACKAGE_MACRO__(listlecturename){__IF__(english) Summary of lectures\else Übersicht der Vorlesungen\fi}
\newlistof{lecture}{lec}{\listlecturename} % Declare new list of lectures \newlistof{lecture}{lec}{__PACKAGE_MACRO__(listlecturename)} % Declare new list of lectures
%Settings how to print the summary %Settings how to print the summary
\renewcommand{\cftdot}{} \renewcommand{\cftdot}{}
\renewcommand\cftlecturefont{\normalfont\bfseries} \renewcommand\cftlecturefont{\normalfont\bfseries}
@ -59,19 +55,19 @@
} }
%Define the main lecture command to start a new lecture %Define the main lecture command to start a new lecture
\def\@lectureprefix{\ifenglish Lecture\else Vorlesung\fi} \def__PACKAGE_MACRO__(lectureprefix){__IF__(english) Lecture\else Vorlesung\fi}
\def\@lecture{}% \def\@lecture{}%
\newcommand{\lecture}[3][]{ \newcommand{\lecture}[3][]{
\refstepcounter{lecture} \refstepcounter{lecture}
%Store lecture name in the macro \@lecture %Store lecture name in the macro \@lecture
\ifthenelse{\isempty{#3}}{% \ifthenelse{\isempty{#3}}{%
\def\@lecture{\@lectureprefix\, \thelecture}% \def\@lecture{__PACKAGE_MACRO__(lectureprefix)\, \thelecture}%
}{% }{%
\def\@lecture{\@lectureprefix\, \thelecture: #3}% \def\@lecture{__PACKAGE_MACRO__(lectureprefix)\, \thelecture: #3}%
}% }%
\marginpar{\small\textsf{\parbox{10em}{\@lectureprefix\, \thelecture \\#2}}} \marginpar{\small\textsf{\parbox{10em}{__PACKAGE_MACRO__(lectureprefix)\, \thelecture \\#2}}}
%Add lecture as an entry to the lectures file %Add lecture as an entry to the lectures file
\addcontentsline{lec}{lecture}{\@lectureprefix\,\thelecture\,(#2)} \addcontentsline{lec}{lecture}{__PACKAGE_MACRO__(lectureprefix)\,\thelecture\,(#2)}
%If key words are provided, add the key words of the lecture below the entry %If key words are provided, add the key words of the lecture below the entry
\ifthenelse{\isempty{#1}}{}{\addtocontents{lec}{\smallskip\hspace{1.5em}\protect\parbox{\dimexpr\textwidth-\@pnumwidth - 2em}{#1}}} \ifthenelse{\isempty{#1}}{}{\addtocontents{lec}{\smallskip\hspace{1.5em}\protect\parbox{\dimexpr\textwidth-\@pnumwidth - 2em}{#1}}}
} }
@ -79,7 +75,7 @@
%Provide a command to show the summary of lectures %Provide a command to show the summary of lectures
\DeclareRobustCommand*{\summaryoflectures}{ \DeclareRobustCommand*{\summaryoflectures}{
\phantomsection \phantomsection
\addcontentsline{toc}{section}{\listlecturename} \addcontentsline{toc}{section}{__PACKAGE_MACRO__(listlecturename)}
\thispagestyle{plain} \thispagestyle{plain}
\listoflecture \listoflecture
} }
@ -97,9 +93,9 @@
\fancyhead[RE,LO]{} % Right even, Left odd \fancyhead[RE,LO]{} % Right even, Left odd
%%No fancy headers in the appendix (as there is no lecture) %%No fancy headers in the appendix (as there is no lecture)
\let\mkesslerlecturesoldappendix\appendix \let__PACKAGE_MACRO__(stored@appendix)\appendix
\renewcommand\appendix{ \renewcommand\appendix{
\mkesslerlecturesoldappendix __PACKAGE_MACRO__(stored@appendix)
\fancyhead[RO,LE]{} \fancyhead[RO,LE]{}
\renewcommand{\headrulewidth}{0pt} \renewcommand{\headrulewidth}{0pt}
} }

13
utils/counters.pysty Normal file
View file

@ -0,0 +1,13 @@
__HEADER__(Write LaTeX counters to auxiliary file)
\RequirePackage{etoolbox}
\newwrite__PACKAGE_MACRO__(out)
\immediate\openout__PACKAGE_MACRO__(out)\jobname.cnt\relax
\AtBeginDocument{
\let__PACKAGE_MACRO__(saved@stepcounter)\stepcounter
\def\stepcounter#1{
__PACKAGE_MACRO__(saved@stepcounter){#1}
\immediate\write__PACKAGE_MACRO__(out){#1: \csname the#1\endcsname}}
}

View file

@ -1,8 +1,4 @@
\NeedsTeXFormat{LaTeX2e} __HEADER__(Find a package that provides some command)
\ProvidesPackage{mkessler-findpackage}[2021-09-06 - Find a package that provides some command]
%%%%
% This is just a quick packaging of the post by % This is just a quick packaging of the post by
% 'Martin Nyolt' (https://tex.stackexchange.com/users/78783/martin-nyolt) % 'Martin Nyolt' (https://tex.stackexchange.com/users/78783/martin-nyolt)
% found at % found at

View file

@ -1,14 +0,0 @@
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{mkessler-counters}[2021-09-06 - Write counters to auxiliary file]
\RequirePackage{etoolbox}
\newwrite\mkessler@counters@out
\immediate\openout\mkessler@counters@out\jobname.cnt\relax
\AtBeginDocument{
\let\mkessler@counters@saved@stepcounter\stepcounter
\def\stepcounter#1{
\mkessler@counters@saved@stepcounter{#1}
\immediate\write\mkessler@counters@out{#1: \csname the#1\endcsname}}
}