如何在乳胶中停止我的表格以不必要地从下一页开始,在前一页留下巨大的空间?我怎样才能在标题之后强制开始。这是我的代码:
我正在使用包:
\usepackage{tabularx,ragged2e,booktabs,caption},
\usepackage{float}
我的表的代码是:
\begin{table}[H]
\begin{tabular}{| l| l }
$.$ & Matches any character.\\
$*$ & Matches zero or more instances of the previous pattern item.\\
$+$ & Matches one or more instances of the previous pattern item.\\
$?$ & Matches zero or one instances of the previous pattern item.\\
$( )$ & Groups a subpattern. The repetition and alternation operators apply to the preceding subpattern.\\
$|$ & Alternation.\\
$[ ]$ & Delimit a set of characters. Ranges are specified as [x-y].\\
\textasciicircum & Anchor the pattern to the beginning of the string. Only when first.\\
\$ & Anchor the pattern to the end of the string. Only when last.\\
\end{tabular}
\end{table}
我试过了[!ht]
,[!htp]
但[htpb]
没有任何办法,而是桌子消失了。