【发布时间】:2015-04-15 10:46:04
【问题描述】:
如何在乳胶中停止我的表格以不必要地从下一页开始,在前一页留下巨大的空间?我怎样才能在标题之后强制开始。这是我的代码:
我正在使用包:
\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] 没有任何效果,而是桌子消失了。
【问题讨论】:
-
嗨!请贴出可以编译的代码,包括
\documentclass{...}和\begin{document} ... \end{document}。只有这样的代码重现了问题,才有可能给你一个有针对性的答案。
标签: latex texnic-center