blob: 667dc51ba2a620a6638f49fb8c92d36a3aa90135 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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'.
|