summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/subtext/subtext.sty
blob: 3c07899bf74c3d0e83c4096e7f1a9c5a70f3ee03 (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
%% 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