diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/proofread/proofread.dtx')
-rw-r--r-- | Master/texmf-dist/source/latex/proofread/proofread.dtx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/texmf-dist/source/latex/proofread/proofread.dtx b/Master/texmf-dist/source/latex/proofread/proofread.dtx index 11161c71294..76fda4d2c8e 100644 --- a/Master/texmf-dist/source/latex/proofread/proofread.dtx +++ b/Master/texmf-dist/source/latex/proofread/proofread.dtx @@ -95,7 +95,7 @@ Running "make install" installs the files in the local TeX tree. %<package>\NeedsTeXFormat{LaTeX2e}[1999/12/01] %<package>\ProvidesPackage{proofread} %<*package> - [2018/07/31 v1.03 Commands for inserting annotations] + [2019/04/25 v1.04 Commands for inserting annotations] %</package> %<*driver> \documentclass{ltxdoc} @@ -144,7 +144,9 @@ Running "make install" installs the files in the local TeX tree. % - vim commands are provided for removing notes,\\ % either honoring or undoing the correction.} %\changes{v1.03}{2018/07/31}{added warning to use xetex or luatex for non-ASCII -% source} +% source.} +%\changes{v1.04}{2019/04/25}{removed overstriking in the \del command, as +% it forces the text on a single line.} % % \begin{abstract}\noindent % The |proofread| package defines a few \LaTeX\ commands that are useful when @@ -454,7 +456,6 @@ Running "make install" installs the files in the local TeX tree. % \end{macrocode} % We need a save box and a counter for prefixing the margin paragraphs: % \begin{macrocode} -\newbox\PR@soulbox \newcount\PR@markerno\PR@markerno=1 % \end{macrocode} % \begin{macro}{\com} @@ -485,8 +486,7 @@ Running "make install" installs the files in the local TeX tree. % \begin{macrocode} \newcommand{\del}[1]{% \com{delete}% - \sbox\PR@soulbox{\st{#1}}% - \hilite[red]{{\usebox\PR@soulbox}}% + \hilite[red]{#1}% } % \end{macrocode} % \end{macro} |