当尝试在表格环境中包含参考列表时,我收到来自 .bbl 文件的以下错误:
错误:LaTeX 错误:出现问题 - 也许缺少 \item。
有简单的解决方法吗?下面是一个例子:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@article{auth00a,
author = {Author, A},
journal = {Journal A},
title = {MyBook A},
year = {2000}
}
\end{filecontents*}
\begin{document}
\begin{tabular}{l}
\nocite{*}
\bibliographystyle{plain}
\bibliography{\jobname}
\end{tabular}
\end{document}
答案1
l
列类似于\mbox
,不能像列表那样垂直显示材料,而是使用p
类似于的列,因此可以用或任何您需要的\parbox
替换,但 1 列没有多大用处,因此只需删除也可以。l
p{5cm}
tabular
tabular