1

前のページに巨大なスペースを残して、次のページから不必要に開始するラテックスのテーブルを停止するにはどうすればよいですか? 見出しの直後に強制的に開始するにはどうすればよいですか。これが私のコードです:

私はパッケージを使用しています:

\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]

4

1 に答える 1