Good morning/afternoon/evening
I have got this source code, below. The result is on the picture on the left. Why is the mark (the black circle) below the table? How to fix it? I want to have got the mark next to the table - top or middle (at one level).
I had to use table before tabular because compiler gave me an error message, the picture on the right. I have read some text on this forum and their advice was to use table. But the problem stayed. How to repair it?
Thank you for help.
\documentclass[10pt,a6paper]{book}
\usepackage[utf8]{inputenc}
\usepackage[main=english,slovak]{babel}
\usepackage[cm]{fullpage}
\usepackage[a6paper, top=10mm, left=10mm, right=10mm,
bottom=10mm,foot=5mm,marginparsep=0mm,showframe]{geometry}
\usepackage{tipa}
\usepackage{tabularx,booktabs}
\usepackage{multirow}
\begin{document}
\begin{itemize}
\item some text
\item
\begin{table}[h!]
\centering
\begin{tabular}{l l}
& {\multicolumn{1}{c}{Otázka}} \\
& {\multicolumn{1}{c}{\sffamily{Question}}} \\
\toprule
\sffamily{I am \ldots .} & \sffamily{Am I \ldots ?}\\
\sffamily{You are \ldots .} & \sffamily{Are you \ldots ?}\\
\sffamily{He is \ldots .} & \sffamily{Is he \ldots ?}\\
\sffamily{She is \ldots .} & \sffamily{Is she \dots ?}\\
\sffamily{It is \ldots .} & \sffamily{Is it \ldots ?}\\
\sffamily{We are \ldots .} & \sffamily{Are we \ldots ?}\\
\sffamily{You are \ldots .} & \sffamily{Are you \ldots ?}\\
\sffamily{They are \ldots .} & \sffamily{Are they \ldots ?}\\
\bottomrule
\end{tabular}
\end{table
\item some text
\end{itemize}
\end{document}


\end{table}... But to answer your question,i guess Latex moves the item marker below the table because there is no text (other than in the table environment). If you dont want to write something there you can just do the quick&dirty work arround of adding a space in textmath:$ $It's not pretty. Especially because It uses the usual vspace between text and the beginning of a table. So the point floats there somehow pointless... – SeverinBang Jul 16 '16 at 08:59