diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/multirow')
-rw-r--r-- | Master/texmf-dist/source/latex/multirow/multirow.dtx | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/Master/texmf-dist/source/latex/multirow/multirow.dtx b/Master/texmf-dist/source/latex/multirow/multirow.dtx index 336e682858e..d79141407b5 100644 --- a/Master/texmf-dist/source/latex/multirow/multirow.dtx +++ b/Master/texmf-dist/source/latex/multirow/multirow.dtx @@ -1,7 +1,7 @@ % \iffalse meta-comment % % Parts of this file, Copyright (C) 1994 by Jerry Leichter -% Copyright (C) 2016 by Piet van Oostrum <piet@vanoostrum.org> +% Copyright (C) 2016, 2018 by Piet van Oostrum <piet@vanoostrum.org> % ------------------------------------------------------- % % This file may be distributed and/or modified under the @@ -24,7 +24,7 @@ % %<multirow|bigstrut>%% Copyright (C) 1994 by Jerry Leichter %<bigdelim>%% Copyright (C) 1994 by \O ystein Bache -%% Copyright (C) 2016 by Piet van Oostrum <piet@vanoostrum.org> +%% Copyright (C) 2016 , 2018 by Piet van Oostrum <piet@vanoostrum.org> %% % % \begin{macrocode} @@ -32,7 +32,7 @@ %<multirow>\ProvidesPackage{multirow}% %<bigstrut>\ProvidesPackage{bigstrut} %<bigdelim>\ProvidesPackage{bigdelim} -%<multirow|bigstrut|bigdelim> [2016/11/25 v2.2 +%<multirow|bigstrut|bigdelim> [2018/08/03 v2.3 %<multirow> Span multiple rows of a table]% %<bigstrut> Provide larger struts in tabulars] %<bigdelim> Create big delimiters in tabular or array] @@ -86,6 +86,7 @@ % % \changes{v1.7}{2016/09/13}{Give all the files the same version number} % \changes{v2.0}{2016/09/27}{Release v2.0} +% \changes{v2.3}{2018/08/03}{Small bugfix} % % \GetFileInfo{multirow.sty} % @@ -124,6 +125,12 @@ % \section{Changes in version 2} % \label{sec:changes-2} % +%\subsection*{version 2.3} +% +% \begin{itemize} +% \item Replaced \cs{textrm} with \cs{textnormal} in text beside big braces in bigdelim.sty. +% \end{itemize} +% %\subsection*{version 2.2} % % \begin{itemize} @@ -1695,26 +1702,28 @@ % The size of the delimiter is determined by putting a \cs{vbox} with the proper height and % zero width next to it. The height is the one that \cs{multirow} % already has calculated in \cs{multirow@dima}. +% \changes{bigdelim v2.3}{2018/08/03}{Replace \cs{textrm} by \cs{textnormal}} % \begin{macrocode} \newcommand\ldelim[3]{\@ifnextchar[{\@ldelim{#1}{#2}{#3}}{\@ldelim{#1}{#2}{#3}[\null]}} \def\@ldelim#1#2#3[#4]% {\multirow{#2}{#3}{% \ensuremath {\left.\vcenter{\hsize=0pt\vrule height \multirow@dima width 0pt}% - \textrm{#4}\right#1}}} + \textnormal{#4}\right#1}}} % \end{macrocode} % \end{macro} % % \begin{macro}{\rdelim} % This macro typesets a right delimiter. It calls \cs{multirow} with the % proper parameters, similar to \cs{ldelim}. +% \changes{bigdelim v2.3}{2018/08/03}{Replace \cs{textrm} by \cs{textnormal}} % \begin{macrocode} \newcommand\rdelim[3]{\@ifnextchar[{\@rdelim{#1}{#2}{#3}}{\@rdelim{#1}{#2}{#3}[\null]}} \def\@rdelim#1#2#3[#4]% {\multirow{#2}{#3}{% \ensuremath {\left#1\vcenter{\hsize=0pt\vrule height \multirow@dima width 0pt}% - \textrm{#4}\right.}}} + \textnormal{#4}\right.}}} % \end{macrocode} % \end{macro} % \iffalse |