summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-eqnarray.html
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-eqnarray.html')
-rw-r--r--Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-eqnarray.html41
1 files changed, 0 insertions, 41 deletions
diff --git a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-eqnarray.html b/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-eqnarray.html
deleted file mode 100644
index 15c062e1065..00000000000
--- a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-eqnarray.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<head>
-<title>UK TeX FAQ -- question label eqnarray</title>
-</head><body>
-<h3>Why not use <code>eqnarray</code>?</h3>
-<p/>The environment <code>eqnarray</code> is attractive for the
-occasional user of mathematics in LaTeX documents: it seems to
-allow aligned systems of equations. Indeed it <em>does</em> supply such
-things, but it makes a serious mess of spacing. In the system:
-<blockquote>
-<pre>
-\begin{eqnarray}
- a & = & b + c \\
- x & = & y - z
-\end{eqnarray}
-</pre>
-</blockquote><p>
-the spacing around the &#8220;=&#8221; signs is <em>not</em> that defined in the
-metrics for the font from which the glyph comes &#8212; it&#8217;s
-<code>\</code><code>arraycolsep</code>, which may be set to some very odd value for reasons
-associated with real arrays elsewhere in the document.
-<p/>The user is far better served by the AMSLaTeX bundle, which
-provides an <code>align</code> environment, which is designed with
-the needs of mathematicians in mind (as opposed to the convenience of
-LaTeX programmers). For this simple case (align is capable of far
-greater things), code as:
-<blockquote>
-<pre>
-\begin{align}
- a & = b + c \\
- x & = y - z
-\end{align}
-</pre>
-</blockquote><p>
-The matter is discussed in more detail in a
-<a href="http://tug.org/pracjourn/2006-4/madsen/madsen.pdf">PracTeX journal paper</a>
-by Lars Madsen.
-<dl>
-<dt><tt><i>AMSLaTeX</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/required/amslatex.zip">macros/latex/required/amslatex</a> (or <a href="http://mirror.ctan.org/macros/latex/required/amslatex/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/amslatex.html">catalogue entry</a>
-</dl>
-<p/><p>This question on the Web: <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=eqnarray">http://www.tex.ac.uk/cgi-bin/texfaq2html?label=eqnarray</a>
-</body>