diff options
-rw-r--r-- | Master/texmf-dist/tex/latex/makebox/makebox.sty | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/latex/makebox/makebox.sty b/Master/texmf-dist/tex/latex/makebox/makebox.sty new file mode 100644 index 00000000000..667dc51ba2a --- /dev/null +++ b/Master/texmf-dist/tex/latex/makebox/makebox.sty @@ -0,0 +1,35 @@ +%% +%% This is file `makebox.sty', +%% generated with the docstrip utility. +%% +%% The original source files were: +%% +%% makebox.dtx (with options: `package') +%% +%% makebox package +%% +%% Copyright 2004 Harald Harders +%% +%% This program can be redistributed and/or modified under the terms +%% of the LaTeX Project Public License Distributed from CTAN +%% archives in directory macros/latex/base/lppl.txt; either +%% version 1 of the License, or any later version. +%% +%% h.harders@tu-bs.de +%% +\NeedsTeXFormat{LaTeX2e} +\ProvidesPackage{makebox} + [2004/07/31 v0.1 extend makebox command] +\newcommand*\hh@orig@makebox{} +\let\hh@orig@makebox\makebox +\renewcommand*\makebox{% + \@ifnextchar*% + {\hh@makebox}{\hh@orig@makebox}% +} +\newcommand*\hh@makebox[2]{% + \settowidth\@tempdima{#2}% + \hh@orig@makebox[\@tempdima]% +} +\endinput +%% +%% End of file `makebox.sty'. |