diff options
author | Ian Jauslin <ian.jauslin@rutgers.edu> | 2023-02-26 18:05:07 -0500 |
---|---|---|
committer | Ian Jauslin <ian.jauslin@rutgers.edu> | 2023-02-26 18:05:07 -0500 |
commit | 7f0a6766b9a471796a8adcfca847a926cdbe5c97 (patch) | |
tree | df0045237111e9002be68ead550944cf32d533b1 /libs/largearray.sty |
Initial commitv0.0
Diffstat (limited to 'libs/largearray.sty')
-rw-r--r-- | libs/largearray.sty | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libs/largearray.sty b/libs/largearray.sty new file mode 100644 index 0000000..ad5753b --- /dev/null +++ b/libs/largearray.sty @@ -0,0 +1,19 @@ +%% +%% largearray package: +%% Array spanning the entire line +%% + +%% TeX format +\NeedsTeXFormat{LaTeX2e}[1995/12/01] + +%% package name +\ProvidesPackage{largearray}[2016/11/10] + +\RequirePackage{array} + +%% array spanning the entire line +\newlength\largearray@width +\setlength\largearray@width\textwidth +\addtolength\largearray@width{-10pt} +\def\largearray{\begin{array}{@{}>{\displaystyle}l@{}}\hphantom{\hspace{\largearray@width}}\\[-.5cm]} +\def\endlargearray{\end{array}} |