blob: 879205255869e4e0f4f93077403ed1ad64d6d850 (
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
|
\documentclass[12pt]{article}
\usepackage{comment}
\excludecomment{conditional}
\specialcomment{redcomment}{\em\Large}{\tiny}
\begin{document}
plain text.
\newcommand{\Redcomment}[1]{Original Definition. (#1).}
\begin{conditional}
Conditional Text.
More Conditional Text in next paragraph.
\renewcommand{\Redcomment}[1]{Redefinition Worked! (#1).}
\end{conditional}
\begin{redcomment}
the first redcomment paragraph.
the second redcomment paragraph.
\end{redcomment}
Because redcomment has ended, this should be tiny.
\Redcomment{This is the command line version.}
\end{document}
|