diff options
Diffstat (limited to 'Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-ouparmd.html')
-rw-r--r-- | Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-ouparmd.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-ouparmd.html b/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-ouparmd.html index 40d1c2c3510..6db5ee5c795 100644 --- a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-ouparmd.html +++ b/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-ouparmd.html @@ -8,8 +8,8 @@ ! LaTeX Error: Not in outer par mode. </pre> </blockquote><p> -comes when some “main” document feature is shut up somewhere it -doesn’t like. +comes when some “main” document feature is shut up somewhere it +doesn’t like. <p/>The commonest occurrence is when the user wants a figure somewhere inside a table: <blockquote> @@ -24,7 +24,7 @@ inside a table: </pre> </blockquote><p> a construction that was supposed to put a frame around the diagram, -but doesn’t work, any more than: +but doesn’t work, any more than: <blockquote> <pre> \framebox{\begin{figure} @@ -35,7 +35,7 @@ but doesn’t work, any more than: </blockquote><p> The problem is, that the <code>tabular</code> environment, and the <code>\</code><code>framebox</code> command restrain the <code>figure</code> environment -from its natural métier, which is to float around the document. +from its natural métier, which is to float around the document. <p/>The solution is simply not to use the <code>figure</code> environment here: <blockquote> @@ -47,10 +47,10 @@ here: \end{tabular} </pre> </blockquote><p> -What was the float for? — as written in the first two examples, it +What was the float for? — as written in the first two examples, it serves no useful purpose; but perhaps you actually wanted a diagram and its caption framed, in a float. -<p/>It’s simple to achieve this — just reverse the order of the +<p/>It’s simple to achieve this — just reverse the order of the environments (or of the <code>figure</code> environment and the command): <blockquote> @@ -66,7 +66,7 @@ command): </pre> </blockquote><p> The same goes for <code>table</code> environments (or any other sort -of float you’ve defined for yourself) inside tabulars or box commands; +of float you’ve defined for yourself) inside tabulars or box commands; you <em>must</em> get the float environment out from inside, one way or another. <p/><p>This question on the Web: <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=ouparmd">http://www.tex.ac.uk/cgi-bin/texfaq2html?label=ouparmd</a> |