-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpaper.bib
More file actions
58 lines (52 loc) · 2 KB
/
paper.bib
File metadata and controls
58 lines (52 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% BibTeX ファイルの書き方
%
% 文献の種類によって、使用するエントリタイプと必須フィールドが異なる
% 主なエントリタイプ:
% article : 学術論文(journal, volume, number, pages などが必要)
% book : 書籍(publisher, year などが必要)
% inproceedings: 会議論文(booktitle, pages などが必要)
% misc : その他(Web サイトなど、howpublished を使用)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%書籍の例
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@book{kimura-latex,
author = {木村優哉},
title = {実践LaTeX論文執筆入門},
publisher = {技術評論社},
year = {2023},
edition = {第2版}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 学術論文(ジャーナル)の例
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@article{kimura-docker,
author = {木村優哉 and 片山徹郎},
title = {Dockerを用いた再現可能な研究環境の構築手法},
journal = {情報処理学会論文誌},
volume = {64},
number = {11},
pages = {1850-1862},
year = {2023}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 会議論文の例
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@inproceedings{kimura-automation,
author = {木村優哉},
title = {LaTeX文書の自動コンパイルシステムの設計と実装},
booktitle = {International Conference on Artificial Life and Robotics (ICAROB2026)},
pages = {123-128},
year = {2023},
publisher = {International Symposium on Artificial Life and Robotics}
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Webサイトの例
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@misc{kimura-github,
author = {木村優哉},
title = {KatLab Master Thesis Template},
howpublished = {\url{https://github.com/kimura/thesis-template}},
note = {Accessed: 2024-11-20}
}