2010-12-17 7 views
1

私は付録の記事のリストを作成するためにmultibibを使用しています。bibtexが参考文献ヘッダーを作成するために使用するコマンドはどれですか?

%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} 

私はに走った問題は、私は(私が推測する、順番にBibTeX用を使用しています)\bibliographylitコマンドによって生成された自動チャプターの見出しを交換したいということでしたNULLコマンドを使用して、私は自分の付録の章を使用できるように、見出し。

\newcommand{\foo}{} 
\let\cleardoublepage\foo 

そして、私は全体の章見出しで同じことをしたいと思います。 \chapterを再定義すると、章の代わりに*が残されました。

ここで示唆したように:Bibliography as section in LaTeX/BibTeX これは動作しませんでした: http://www.flakery.org/search/show/568\bibsectionが定義されていない)

答えて

1

を[OK]を、\renewcommandの私の理解が欠けていました。 2つの引数を次のように追加します。

\renewcommand{\chapter}[2]{} 

すべてが機能します。

編集:かなり甘い

\chapter{Appendix with references} 
{ %Disable chapter command 
\renewcommand{\chapter}[2]{} 
\bibliography{myrefs} 
} 

:私はまた、あなたが「スコープ」redefintionは、そう私はこの参考文献の後にそのまま\章コマンドを残すことができることを学んだ

関連する問題