Skip to content

Commit

Permalink
fix(latex/latex-bib.md): bibファイルの作り方を追記した
Browse files Browse the repository at this point in the history
  • Loading branch information
shotakaha committed Jan 26, 2025
1 parent adc7e06 commit 56632c7
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions docs/source/latex/latex-bib.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
# 文献リストしたい(`.bib`

```bibtex
// @種類{引用キー,
// フィールド = {値},
// }
@種類{引用キー,
フィールド = {値},
}
```

文献リストは、BibLaTeX形式(`.bib`)のテキスト情報として管理します。
フィールドは、文献の種類によって変わりますが、
文字列は`{}`もしくは`""`で囲む必要があります。
また、LaTeXで解釈される特殊文字(`%``$``_``&`など)はエスケープが必要です。

```bibtex
@inproceedings{takahashi_rapporteur_2024,
author = {Takahashi, Shota},
booktitle = {Proceedings of 38th International Cosmic Ray Conference — {PoS}({ICRC2023})},
Expand All @@ -20,13 +28,9 @@
}
```

文献リストは、BibLaTeX形式(`.bib`)のテキスト情報として管理します。
フィールドは、文献の種類によって変わりますが、
文字列は`{}`もしくは`""`で囲む必要があります。
また、LaTeXで解釈される特殊文字(`%``$``_``&`など)はエスケープが必要です。

このサンプルは`Zotero`という文献管理ツールから出力したものです。
BibLaTeXファイルは手動でも作成できますが、
`Zotero`などの文献管理ツールから出力して作成するとよいと思います
文献管理ツールを使うのがよいと思います

## 文献の形式

Expand Down

0 comments on commit 56632c7

Please sign in to comment.