这是一个过于简化的示例。我的问题是\justify
and/or\clearpage
在第一行产生错误\item
,提示“可能缺少 \item”。我使用过此部分上方的类似代码序列,没有出现错误;但是,它是一个表格、文本、另一个表格。我想知道是否有更有效的方法可以在表格\centering
或图形之后返回文本,使其对齐并看起来像文档的其余部分。此外,错误是由于另一个包引起的,还是因为枚举?
\documentclass[draft]{article}
\usepackage[showframe]{geometry}
\usepackage{ragged2e}
\usepackage{adjustbox}
\usepackage{caption}
\begin{document}
\paragraph{Paragraph 1}
Filler text is here. \\
\centering
\begin{adjustbox}{max width=\textwidth}
\begin{tabular}{|c|c|}
\hline
Filler & Whatever \\
\hline
\end{tabular}
\end{adjustbox}
\captionof{figure}{Filling for Figure}
\justify
\paragraph{Paragraph 2}
Filler Text
\centering
\captionof{table}{Table 1}
\begin{adjustbox}{max width=\textwidth}
\begin{tabular}{|c|c|}
\hline
x & 1 \\
\hline
y & 3 \\
\hline
\end{tabular}
\end{adjustbox}
\clearpage %Adding this errors out
\justify %Or this
\paragraph{Paragraph 3}
Filler text to show up.
\begin{enumerate}
\item Function
\item Filler Text
\end{enumerate}
\end{document}
编辑1:使文档包含适当的包。
修改 2:现在,在包含带注释的 2 行时,文档会出错。我的总体目标是使所有三个段落和枚举列表都像“普通”文档一样对齐。这两个表格及其标题应按原样居中。
答案1
正如评论中已经指出的那样,您应该使用\justifying
,而不是\justify
(该命令的存在仅仅是因为 LaTeX 实现环境的副作用justify
)。