summaryrefslogtreecommitdiff
path: root/Master/texmf-doc/doc/english/FAQ-en/html/FAQ-conditional.html
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-doc/doc/english/FAQ-en/html/FAQ-conditional.html')
-rw-r--r--Master/texmf-doc/doc/english/FAQ-en/html/FAQ-conditional.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/Master/texmf-doc/doc/english/FAQ-en/html/FAQ-conditional.html b/Master/texmf-doc/doc/english/FAQ-en/html/FAQ-conditional.html
index b76b84ca806..cba1c195363 100644
--- a/Master/texmf-doc/doc/english/FAQ-en/html/FAQ-conditional.html
+++ b/Master/texmf-doc/doc/english/FAQ-en/html/FAQ-conditional.html
@@ -6,19 +6,19 @@
compiler, people regularly want to do compiler-like things using it.
Common requirements are conditional ‘compilation’ and ‘block
comments’, and several LaTeX-specific means to this end are available.
-<p/>The simple <code>\</code><code>newcommand{<code>\</code><code>gobble</code>}[1]</code><code>{</code><code>}</code> and
-<code>\</code><code>iffalse</code><code> ... </code><code>\</code><code>fi</code> aren&rsquo;t really satisfactory (as a general
-solution) for comments, since the matter being skipped is nevertheless
-scanned by TeX, not always as you would expect. The scanning
-imposes restrictions on what you&rsquo;re allowed to skip; this may not be a
-problem in <em>today&rsquo;s</em> job, but could return to bite you tomorrow.
-For an example of surprises that may come to bite you, consider the
-following example (derived from real user experience):
+<p/>The simple <code>\</code><code>newcommand{<code>\</code><code>gobble</code>}[1]</code><code>{</code><code>}</code>
+and <code>\</code><code>iffalse</code><code> ... </code><code>\</code><code>fi</code> aren&rsquo;t really satisfactory (as
+a general solution) for comments, since the matter being skipped is
+nevertheless scanned by TeX, not always as you would expect. The
+scanning imposes restrictions on what you&rsquo;re allowed to skip; this may
+not be a problem in <em>today&rsquo;s</em> job, but could return to bite you
+tomorrow. For an example of surprises that may come to bite you,
+consider the following example (derived from real user experience):
<blockquote>
<pre>
\iffalse % ignoring this bit
consider what happens if we
-use \verb|\iftrue| -- a surprise
+use \verb+\iftrue+ -- a surprise
\fi
</pre>
</blockquote><p>