summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/multirow/multirow.dtx
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-08-05 21:01:54 +0000
committerKarl Berry <karl@freefriends.org>2018-08-05 21:01:54 +0000
commit97e209dcd0fde3344f46c73684ab43a68e9c0387 (patch)
treed8b7d096ddf717f3d16b3cfb10e93152fd2d3636 /Master/texmf-dist/source/latex/multirow/multirow.dtx
parentde1ff8108cc79531f98cc1ce402304e28b73cac7 (diff)
multirow (5aug18)
git-svn-id: svn://tug.org/texlive/trunk@48354 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/multirow/multirow.dtx')
-rw-r--r--Master/texmf-dist/source/latex/multirow/multirow.dtx19
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