サーチ…
構文
- 手作業で書式設定された参考文献の場合、文書内に
\cite
を引用する必要はありません。
パラメーター
パラメータ | 詳細 |
---|---|
thebibliography | この環境は、実際の参考文献の範囲を設定します。これは、 \bibitem を使用して参考文献アイテムを設定できるリストのような環境を定義します。 |
{x} | thebibliography 環境は、 \bibitem の列挙で予想される最も広い要素を表す単一の引数をとります。 10エントリー未満の場合は、単一の文字/数字を使用します。 100未満のエントリのために、2つの文字/数字を使用して... |
\bibitem{<a>} <b> | 書誌項目<b> を設定し、 <a> というラベルを使用して文書内で\cite できるようにします。 |
パッケージのない基本的な参考文献(手作業による書式設定)
\documentclass{article}% or book, report, ...
\begin{document}
See \cite{citeA} or \cite{citeB} or \cite{citeA, citeB}.
\begin{thebibliography}{x}
% \bibitem{<biblabel>} <citation>
\bibitem{citeA}
{\scshape Author, A}, {\itshape A title}, Journal of So-and-So, 2000.
\bibitem{citeB}
{\scshape Someone, B}, {\itshape Another title}, Book of books, 1900.
\end{thebibliography}
\end{document}
理由を本当に知っていない限り、おそらくこれをしないでください。指定されたパッケージを使用することが望ましい(他の例を参照)。
バイベルとの基本的な参考文献
参考文献を始めるには、ソースを定義する必要があります。 sources.bib
ようなデータベースファイルを作成し、いくつかの内容を含める:
@book{Doe1993,
Author = {John Doe},
Publisher = {Earth University},
Title = {Creating a bibliography with biber},
Year = {1993}}
その後、メイン・ドキュメントにデータベース・ファイルをDoe1993
、新しいソース( Doe1993
)を引用することができます。
\documentclass{article}
% Include the biblatex package and tell it to use biber as a backend.
% Without specifying the backend, it assumes biber.
\usepackage[backend=biber]{biblatex}
% Define where biber can find your sources
\addbibresource{sources.bib}
\begin{document}
"Biber isn't that difficult." \cite{Doe1993}
% Use \cite{source-ID} to generate a citation
% Print the bibliography
\printbibliography
\end{document}
ドキュメントをコンパイルするには、3つのコマンドを順番に実行する必要があります。
-
pdflatex
を使用して、どのソースが必要かをバイバーに伝える補助ファイルを作成する -
biber
で使用できるすべてのソースで補助ファイルを作成するpdflatex
- 補助ファイルをインクルードしてPDFを作成するには
pdflatex
bibファイルの多くのオプションと追加フィールドを見つけるには、 CTANのパッケージドキュメントを参照してください 。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow