注意 当サイトは、Typst v0.12.0 公式ドキュメントを、日本語コミュニティが非公式に翻訳したものです。誤訳・未訳・古い情報が含まれている可能性があるため、公式ドキュメント との併用を推奨します。このサイトの内容に誤りを発見された方は、GitHubリポジトリまでご報告を頂けましたら幸いです。我々のコミュニティにご興味のある方は、ぜひ非公式Discordサーバー「くみはんクラブ」にご参加ください。
Warning: This site provides an unofficial translation of the Typst v0.12.0 documentation by the Japanese Community. Please note that there may be some inaccuracies, untranslated sections or outdated information. We highly recommend referring to the latest official documentation as well. If you find any errors in the content, please let us know through our GitHub repository. If you are interested in our community, feel free to join our unofficial Discord server, “Kumihan Club.”
Typst ドキュメント日本語版

bibliography Element
Element functions can be customized with set and show rules.

参考文献 / 引用文献リスト。

次の2つの形式のどちらかの参考文献ファイルへのパスを指定してこの関数を呼び出すと、新しい引用文献リストを作成できます。

文書内に参考文献を追加すると、参照構文(@key)や引用関数の明示的な呼び出し(#cite(<key>))を使って引用を始めることができます。 参考文献リストには、文書内で参照された作品の文献だけが表示されます。

スタイル

Typstは、内蔵の引用と文献スタイルを幅広く取り揃えています。 さらに、独自のCSL(Citation Style Language)ファイルを追加して使用することもできます。 どのスタイルを使えばいいか迷う方のために、分野ごとによく使われるスタイルを以下の表にまとめています。

分野Typical Styles
工学、IT"ieee"
心理学、ライフサイエンス"apa"
社会科学"chicago-author-date"
人文学"mla", "chicago-notes", "harvard-cite-them-right"
経済学"harvard-cite-them-right"
物理学"american-physics-society"

This was already noted by
pirates long ago. @arrgh

Multiple sources say ...
@arrgh @netwok.

#bibliography("works.bib")
Preview

引数
Parameters are the inputs to a function. They are specified in parentheses after the function name.

path
str array
RequiredPositional
Positional parameters are specified in order, without names.

Hayagriva .ymlやBibLaTeX .bibなどのファイルパス。

title
none auto content
Settable
Settable parameters can be customized for all following uses of the function with a set rule.

参考文献のタイトル。

参考文献の見出しはデフォルトでは番号が振られませんが、show-setルールで強制的に見出し番号をつけることも可能です。 show bibliography: set heading(numbering: "1.")

Default:auto

full
bool
Settable
Settable parameters can be customized for all following uses of the function with a set rule.

文書内で引用されていないものも含めて、参考文献ファイルにあるすべての文献を出力するかどうか。

個々の引用文献を表示させずに追加するには、 formnoneとして cite 関数を使用します。

Default:false

style
str
Settable
Settable parameters can be customized for all following uses of the function with a set rule.

参考文献スタイル。

下記にある内蔵スタイルや CSL ファイルへのパスを指定します。 以下に挙げるスタイルのいくつかは、フルネームと短いエイリアスの2回表示されています。

Default:"ieee"