【发布时间】:2010-12-17 13:56:56
【问题描述】:
我正在使用 multibib 在附录中创建文章列表。
%Preamble...
%Create new macros for citation in "lit" group
\newcites{lit}{My list of articles}
%The appendix
\appendix
\chapter{My list of articles}
%Force use of citations
\nocitelit{ref01}
...
\nocitelit{refNN}
%Stop clear double page
\newcommand{\foo}{}
\let\cleardoublepage\foo
%Will print bib heading
\bibliographylit{myrefs}
我遇到的问题是我希望用 NULL 命令替换由\bibliographylit 命令(我猜它反过来使用 bibtex)生成的自动章节标题,以便我可以使用我自己的附录章节标题。我可以使用以下命令删除双页清除:
\newcommand{\foo}{}
\let\cleardoublepage\foo
我也希望这样做,但要使用整个章节的标题。重新定义 \chapter 给我留下了一个 * 来代替章节。
这里建议:Bibliography as section in LaTeX / BibTeX
这没有用:
http://www.flakery.org/search/show/568
(\bibsection 未定义)
【问题讨论】: