如何在表格外插入校对结束符号(在表格右侧,同一最后一行)?
到目前为止,我只能在表格的右下角单元格或下一行插入证明结束符号。如能得到任何帮助,我将不胜感激。谢谢。
编辑:例如,请参阅以下代码:
\documentclass{article}
\usepackage{amssymb}
\begin{document}
\begin{tabular}{| c | c |}
\hline
A & B \\ \hline
C & D $\square$ \\ \hline $\square$
\end{tabular}
$\square$
\end{document}
我希望正方形位于我的表格的第二行 CD 上,但在表格之外。
答案1
这里的问题是,默认情况下,表格在其周围的文本中垂直居中,因此$\square$
表格后放置的内容与其余文本一起居中。
您可以使用以下方式覆盖此功能\begin{tabular}[b]{| c | c |}
:[b]
使表格底部与文本底部对齐,并使$\square
与表格底部单元格对齐:
\documentclass{article}
\usepackage{amssymb}
\begin{document}
Some text before the table and
\begin{tabular}[b]{| c | c |} % <-- here
\hline
A & B \\ \hline
C & D
\end{tabular}
$\square$ and then some after.
\end{document}
看此链接了解环境提供的更多选项tabular
。