我想删除标题“书目”和分页,这是自动使用\书目{myPublications}。到目前为止,我已经发现,通过使用\ remove命令{\bibname}{},您可以删除标题,并且\更新命令{\头}{}可以删除分页,但在pdf中留下一个星号。\更新命令{\章节*}{}给出错误:\章节*未定义。有什么解决办法吗?
\section*{Publications}
\renewcommand{\bibname}{}
\renewcommand{\chapter}{}
\nocite{myPaper}
\bibliographystyle{unsrt}
\bibliography{publications}发布于 2014-06-13 12:57:34
在这种非常特殊的情况下,您可以尝试
\makeatletter
\renewcommand{\chapter}{\@gobbletwo}
\makeatother这使得\chapter吞食了它后面的两个标记,这意味着*和title参数。
https://stackoverflow.com/questions/24181270
复制相似问题