Skip to content

Commit

Permalink
fix(latex/latex-bib.md): 見出しを整理した
Browse files Browse the repository at this point in the history
  • Loading branch information
shotakaha committed Jan 26, 2025
1 parent 3f2a83e commit 88e5c45
Showing 1 changed file with 49 additions and 49 deletions.
98 changes: 49 additions & 49 deletions docs/source/latex/latex-bib.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,54 +54,7 @@ BibLaTeXは、BibTeX形式に最適化された古いスタイルファイルと

:::

## 学術雑誌したい(`article`

```bibtex
@article{引用キー,
// 必須
author = {著者名},
title = {タイトル},
journal = {ジャーナル名},
year = {発行年},
// オプション
volume = {巻号},
number = {号数},
pages = {ページ範囲},
doi = {DOI番号},
}
```

## プロシーディングスしたい(`inproceedings`

```bibtex
@inproceedings{引用キー,
author = {著者名},
title = {タイトル},
booktitle = {会議名},
year = {発行年},
pages = {ページ範囲},
publisher = {出版社},
}
```

## 書籍したい(`book`

```bibtex
@book{引用キー,
author = {著者名},
title = {書籍タイトル},
publisher = {出版社},
year = {発行年},
month = {発行月},
edition = {版数},
volume = {巻号},
series = {シリーズ名},
address = {出版社の所在地},
doi = {DOI識別子}
}
```

## 文献の種類をしりたい
## 文献の種類

| 文献の種類 | 説明 |
|---|---|
Expand All @@ -121,7 +74,7 @@ BibLaTeXは、BibTeX形式に最適化された古いスタイルファイルと
自分で考えると迷うこともあるので、
公開されている文献に関しては、文献管理ツール自動分類してもらうと楽ちんです。

## 文献のフィールドをしりたい
## 文献のフィールド

| フィールド名 | 説明 |
|---|---|
Expand Down Expand Up @@ -155,3 +108,50 @@ BibLaTeXは、BibTeX形式に最適化された古いスタイルファイルと
| `url` | 文献のURL |
| `eprint` | プレプリントの識別子 |
| `language` | 文献の言語 |

## 学術雑誌したい(`article`

```bibtex
@article{引用キー,
// 必須
author = {著者名},
title = {タイトル},
journal = {ジャーナル名},
year = {発行年},
// オプション
volume = {巻号},
number = {号数},
pages = {ページ範囲},
doi = {DOI番号},
}
```

## プロシーディングスしたい(`inproceedings`

```bibtex
@inproceedings{引用キー,
author = {著者名},
title = {タイトル},
booktitle = {会議名},
year = {発行年},
pages = {ページ範囲},
publisher = {出版社},
}
```

## 書籍したい(`book`

```bibtex
@book{引用キー,
author = {著者名},
title = {書籍タイトル},
publisher = {出版社},
year = {発行年},
month = {発行月},
edition = {版数},
volume = {巻号},
series = {シリーズ名},
address = {出版社の所在地},
doi = {DOI識別子}
}
```

0 comments on commit 88e5c45

Please sign in to comment.