diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/enumitem')
-rw-r--r-- | Master/texmf-dist/doc/latex/enumitem/README | 11 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/enumitem/enumitem.pdf | bin | 325585 -> 328451 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/enumitem/enumitem.tex | 43 |
3 files changed, 47 insertions, 7 deletions
diff --git a/Master/texmf-dist/doc/latex/enumitem/README b/Master/texmf-dist/doc/latex/enumitem/README index d4e7156aac5..945805d57c9 100644 --- a/Master/texmf-dist/doc/latex/enumitem/README +++ b/Master/texmf-dist/doc/latex/enumitem/README @@ -1,4 +1,4 @@ -Enumitem 3.3 +Enumitem 3.4 ~~~~~~~~~~~~ A package to customize the three basic lists (enumerate, @@ -75,11 +75,18 @@ checking. ~~~ - Using *-values with itemize and description didn't work. +3.4 +~~~ +- New key nosep, replacing nolistsep, which didn't work as +documented. +- Fixed spacing in inline boxed lists. +- Fixed (hopefully) the bug with noitemsep and shorlabels. + _________________________________________________________________ Javier Bezos | http://www.tex-tipografia.com ................................................................. -2011-07-14 +2011-08-06 diff --git a/Master/texmf-dist/doc/latex/enumitem/enumitem.pdf b/Master/texmf-dist/doc/latex/enumitem/enumitem.pdf Binary files differindex f137f551d37..46d388652b6 100644 --- a/Master/texmf-dist/doc/latex/enumitem/enumitem.pdf +++ b/Master/texmf-dist/doc/latex/enumitem/enumitem.pdf diff --git a/Master/texmf-dist/doc/latex/enumitem/enumitem.tex b/Master/texmf-dist/doc/latex/enumitem/enumitem.tex index 70e51ffaaef..876390ae9e2 100644 --- a/Master/texmf-dist/doc/latex/enumitem/enumitem.tex +++ b/Master/texmf-dist/doc/latex/enumitem/enumitem.tex @@ -5,7 +5,7 @@ % Copyright (c) 2003-2011 by Javier Bezos. % All Rights Reserved. % -% This file is part of the enumitem distribution release 3.2 +% This file is part of the enumitem distribution release 3.4 % ----------------------------------------------------------- % % It may be distributed and/or modified under the @@ -48,7 +48,7 @@ find mistakes in the manual. Other packages by the same author: \textsf{gloss} (with Jos\'e Luis D\'{\i}az), \textsf{accents, tensind, esindex, dotlessi, titlesec, titletoc}.}} -\date{Version 3.3\\2011-07-14} +\date{Version 3.4\\2011-08-06} \IfFileExists{enumitem.sty}{\usepackage{enumitem}}{} @@ -283,6 +283,14 @@ If the last thing in the definition is a skip (typically \verb|\hfil|), it is removed sometimes by description. If for some reason you want to avoid this, just add \verb|\null| at the end. +Although primarily intended for the alignment, this commands has other +uses (as in the provided \verb|parleft|). For example, with the +following all labels with |align=right| are set as superscripts: +\begin{verbatim} +\SetLabelAlign{right}{\hss\llap{\textsuperscript{#1}}} +\end{verbatim} +(A new name is also possible, of course.) + \subsection{Horizontal spacing of labels} @@ -603,12 +611,14 @@ future, because the current one is not what one could expect). \subsection{Compact lists} \begin{desc} -|noitemsep|\qquad|nolistsep| +|noitemsep|\qquad|nosep| \end{desc} The key |noitemsep| kills the space between items and paragraphs (i.e., |itemsep=0pt| and |parsep=0pt|), while -|nolistsep| kills all vertical spacing. +|nosep| kills all vertical spacing.\footnote{The key +\texttt{nolistsep}, now deprecated, introduced a thin stretch, which +was not the intended behaviour.} \subsection{``Wide'' lists} @@ -906,7 +916,23 @@ example: \SetEnumitemKey{midsep}{topsep=3pt,partopsep=0pt} \end{verbatim} -Keys so defined can then be used like the others. +Keys so defined can then be used like the others. Another example is +multicolumn lists, with \textsf{multicol}: +\begin{verbatim} +\SetEnumitemKey{twocol}{ + itemsep=1\itemsep, + parsep=1\parsep, + before=\raggedcolumns\begin{multicols}{2}, + after=\end{multicols}} +\end{verbatim} + +(The settings for \texttt{itemsep} and \texttt{parsep} kill the +stretch and shrink parts. Of course, you may want to define a new +list or a key.) + +Note the package may introduce new keys in the future, so +\verb|\SetEnumitemKey| is a potential source of forward +incompatibilities. \begin{desc} |\SetEnumitemValue{<key>}{<string-value>}{<replacement>}|\3 @@ -1382,6 +1408,13 @@ overlap. \textsf{enumitem}. \item (3.3) Fixes a serious bug -- with \verb|*| neither \verb|itemize| nor \verb|description| worked. +\item (3.4) Fixes bad spacing in mode boxed (misplaced \verb|\unskip| +before the first item and wrong spacefactor between items). +\item (3.4) \verb|nolistsep| did not work as intended, but since the +error has been there for several years, a new key \verb|nosep| is +provided. +\item (3.4) The issue with \verb|nolistsep| with \verb|shortlabels| +(see above) was not fixed in all cases. Hopefully now it is. \end{itemize} \subsection{Acknowledgements} |