diff options
author | Karl Berry <karl@freefriends.org> | 2019-06-06 21:49:13 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-06-06 21:49:13 +0000 |
commit | 9de8d0c86f1c4b876080a3374d923c92876f56ac (patch) | |
tree | 567a862047780913fa0e97fa146d21d8a0d354da /Master/texmf-dist/tex/latex/doclicense/doclicense.sty | |
parent | 79fbe27423e43f95ee32ae7dbc3f6fc3cb09ad8b (diff) |
doclicense (6jun19)
git-svn-id: svn://tug.org/texlive/trunk@51332 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/doclicense/doclicense.sty')
-rw-r--r-- | Master/texmf-dist/tex/latex/doclicense/doclicense.sty | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/Master/texmf-dist/tex/latex/doclicense/doclicense.sty b/Master/texmf-dist/tex/latex/doclicense/doclicense.sty index d16ba96ee6f..c4a6ee73bad 100644 --- a/Master/texmf-dist/tex/latex/doclicense/doclicense.sty +++ b/Master/texmf-dist/tex/latex/doclicense/doclicense.sty @@ -1,7 +1,7 @@ %% See file 'doclicense.dtx' for copyright and license. \NeedsTeXFormat{LaTeX2e}[1998/12/01] \ProvidesPackage{doclicense} - [2019/04/07 v1.9.0 Support for putting documents under a license] + [2019/06/05 v1.10.0 Support for putting documents under a license] %% ^^A nag warned about the center environment and it really messes up spacing. %% Parameters ((( @@ -24,15 +24,17 @@ \RequirePackage{etoolbox} %% \ifcsdef \RequirePackage{xspace} \RequirePackage{verbatim} -\RequirePackage{enumitem} +%% ))) -%% \setlistdepth{4} seems not to be needed. Try without it to avoid changing global variables. -%% Enumeration scheme was chosen to match the html page once. -\newlist{doclicense@enumerate}{enumerate}{4} -\setlist[doclicense@enumerate,1]{label = (\alph*)} -\setlist[doclicense@enumerate,2]{label = (\arabic*)} -\setlist[doclicense@enumerate,3]{label = (\Alph*)} -\setlist[doclicense@enumerate,4]{label = (\roman*)} +%% Custom enumerate list with adjusted labels +%% that match the license text convetions +\newenvironment{doclicense@enumerate}{% + \begin{enumerate} + \renewcommand{\labelenumi}{(\alph{enumi})}% + \renewcommand{\labelenumii}{(\arabic{enumii})}% + \renewcommand{\labelenumiii}{(\Alph{enumiii})}% + \renewcommand{\labelenumiv}{(\roman{enumiv})}% +}{\end{enumerate}} \ifthenelse{ \equal{\doclicense@hyphenation}{} |