Таблица излишне, начиная со следующей страницы в латексе
Как я могу остановить свой стол в латексе, чтобы начать без необходимости со следующей страницы, оставляя огромное пространство на предыдущей странице? Как я могу заставить начать сразу после заголовка. Вот мой код:
Я использую пакеты:
\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]
ничто из этого не работает, вместо этого стол исчезает.
1 ответ
Не только в том случае, если ваша таблица слишком длинна для вертикального размещения на странице (например, ниже заголовка или какого-либо текстового абзаца), вы можете переключиться с плавающего подхода на:
%\begin{center}
\begin{longtable}{|l|l}
%
\endfirsthead
%
\endhead
%
\endfoot
%
\endlastfoot
$.$ & 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{longtable}
%\end{center}
При компиляции это выглядит так же, как ваш table
при условии, что вы включите \usepackage{longtable}
в вашей преамбуле (и longtable
с не плавает, а table
с).