summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/tagging/tagging.sty
blob: 5f8c4b994cd356a467334de96c60e833f5168392 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
% tagging.sty
% Copyright 2011 Brent Longborough
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3
% of this license or (at your option) any later version.
% The latest version of this license is in
%   http://www.latex-project.org/lppl.txt
% and version 1.3 or later is part of all distributions of LaTeX
% version 2005/12/01 or later.
%
% This work has the LPPL maintenance status `maintained'.
% The Current Maintainer of this work is Brent Longborough.
%
% This work consists of these files: 
%     tagging.sty, tagging.tex, and tagging.pdf
% --------------------------------------------------------------
\ProvidesPackage{tagging}[2019/09/07 v1.1]
\RequirePackage{etoolbox,verbatim}


\newcommand{\taggedy}{\relax}
\newcommand{\taggedn}{\relax}
\newcomment{tagged@ignore}
\newcommand\usetag[1]{%
  \def\do##1{\csdef{tagged@##1}{}}%
  \docsvlist{#1}}%
\newcommand\droptag[1]{%
  \def\do##1{\csundef{tagged@##1}{}}%
  \docsvlist{#1}}%


\newenvironment{taggedblock}[1]%
    {\def\do##1{%
        \ifcsname tagged@##1\endcsname%
        \let\tagged@ignore\relax%
        \let\endtagged@ignore\relax%
    \fi}%
    \docsvlist{#1}%
    \tagged@ignore\ignorespaces}% FMi
    {\endtagged@ignore\ignorespacesafterend}% FMi
\newenvironment{untaggedblock}[1]{%
    \csdef{@tagged@flag}{}% FMi
    \def\do##1{%
        \ifcsname tagged@##1\endcsname%
            \csundef{@tagged@flag}{}
        \fi}%
    \docsvlist{#1}%
    \ifcsname @tagged@flag\endcsname%
        \let\tagged@ignore\relax%
        \let\endtagged@ignore\relax%
    \fi%
    \tagged@ignore\ignorespaces}% FMi
    {\endtagged@ignore\ignorespacesafterend}% FMi


\newcommand{\iftagged}[3]%
  {\renewcommand{\taggedy}{#2}%
   \renewcommand{\taggedn}{#3}%
   \def\do##1{%
     \ifcsdef{tagged@##1}{\renewcommand{\taggedn}{\taggedy}}{}}%
   \docsvlist{#1}%
   \taggedn%
  }%
\newcommand{\tagged}[2]{\iftagged{#1}{#2}{}}
\newcommand{\untagged}[2]{\iftagged{#1}{}{#2}}

%FMi Allow tags to be activated as package options
\DeclareOption*{\usetag{\CurrentOption}} 
\ProcessOptions