I would like to have a little table without caption within my text. There should be, however, some space between the preceeding and following lines of text. The following snippet
\documentclass{report}
\begin{document}
Some text. Some text. Some text. Some text. Some text. Some text.
\\
\begin{center}
\begin{tabular}{r|c|c|}
&A&B\\\hline
C&AC&BC\\\hline
D&AD&DB\\\hline
\end{tabular}
\end{center}
\\\noindent
Some text. Some text. Some text. Some text.
\end{document}
does create a blank line above the table, but gives an error below as there is 'no line to end'. What's the right syntax here?