summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/comment/comm_bug.tex
blob: f0e8473b044fefd82bddffe794a57753c6ab8b90 (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}{\begingroup\em\Large}{\endgroup\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}