3

我想删除标题“参考书目”和使用 \bibliography{myPublications} 自动放置的分页符。到目前为止,我发现使用 \renewcommand{\bibname}{} 可以删除标题,而 \renewcommand{\chapter}{} 会删除分页符,但会在 pdf 中留下一个星号。\renewcommand{\chapter*}{} 给出错误:\chapter *undefined。任何解决方法?

\section*{Publications}
\renewcommand{\bibname}{}
\renewcommand{\chapter}{}

\nocite{myPaper}

\bibliographystyle{unsrt} 
\bibliography{publications}
4

1 回答 1

4

在这种非常特殊的情况下,您可以尝试

\makeatletter
\renewcommand{\chapter}{\@gobbletwo}
\makeatother

这使得\chaptergobble 后面有两个标记,表示 the*和 title 参数。

于 2014-06-13T12:57:34.870 回答