summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/subtext
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-05-24 21:21:10 +0000
committerKarl Berry <karl@freefriends.org>2019-05-24 21:21:10 +0000
commit69e636169cd6533e5aacbe16b2edaeb9e3d8f7e5 (patch)
tree25395ed67d3425ea7ff1c1b567171a0b1b2c9bae /Master/texmf-dist/tex/latex/subtext
parent08389ad18f40230695bf434e4a1a5de4f83b1862 (diff)
subtext (24may19)
git-svn-id: svn://tug.org/texlive/trunk@51214 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/latex/subtext')
-rw-r--r--Master/texmf-dist/tex/latex/subtext/subtext.sty34
1 files changed, 34 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/latex/subtext/subtext.sty b/Master/texmf-dist/tex/latex/subtext/subtext.sty
new file mode 100644
index 00000000000..3c07899bf74
--- /dev/null
+++ b/Master/texmf-dist/tex/latex/subtext/subtext.sty
@@ -0,0 +1,34 @@
+%% subtext.sty Look further down for brief description
+%%
+%% Copyright (C) 2019 Palle Jorgensen
+%%
+%% This program is free software: you can redistribute it and/or
+%% modify it under the terms of the GNU General Public License as
+%% published by the Free Software Foundation, either version 3 of the
+%% License, or (at your option) any later version.
+%%
+%% This program is distributed in the hope that it will be useful, but
+%% WITHOUT ANY WARRANTY; without even the implied warranty of
+%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+%% General Public License for more details.
+%%
+%% You should have received a copy of the GNU General Public License
+%% along with this program. If not, see
+%% <https://www.gnu.org/licenses/>.
+
+\ProvidesPackage{subtext}[2019/05/24 v. 1.0 LaTeX package for easy
+text-style subscripts in math mode.]
+
+\RequirePackage{amstext}
+
+\let\saved@sub_
+\catcode`_\active
+\def\new@sub@text[#1]{\saved@sub{\text{#1}}}
+\def\new@sub@other#1{\saved@sub{#1}}
+
+\def\new@sub{%
+ \@ifnextchar[%]
+ {\new@sub@text}{\new@sub@other}}
+\def_{\new@sub}
+
+\endinput \ No newline at end of file