I have a question related to Empty line after a tabular environment.
I have a document using package lineno to enumerate lines. The rendered document enumerates a line exactly after any tabular environment. Is there an empty line after the tabular environment? If there is one, how can I erase it?
Example:
\documentclass[10pt,english,final,a4paper]{book}
\usepackage{lineno} % Line numbers
\begin{document}
\linenumbers
1st Para: Bablabla...
\begin{table}[htpb]
\begin{flushleft}
\begin{tabular}{|l|c|c|}
\hline
Mass & $m_1$ & 2.18 \\
Length & $l_1$ & 0.335\\
Center of mass (fraction of length) & $f_1$ & 0.39\\
Joint limits (relative angles) & elbow, shoulder & $[-7,100]$, $[0,160]$\\
\hline
\end{tabular}
\caption{\label{tab:} Parameters.}
\end{flushleft}
\end{table}
2nd Para: blablabla
\end{document}
The rendered document shows a 2 after the table. Erasing the new line in the second paragraph does not solve the "problem".
Bablabla...and\begin{table}should solve it. – cgnieder Mar 27 '12 at 15:06\begin{table}– egreg Mar 27 '12 at 15:09