📄 PaperTemplate (LaTeX)
IEEEtran ベースの 最小論文テンプレート
Minimal academic paper template based on IEEEtran.
🎯 目的 | Purpose
- LaTeX を用いた論文執筆の最小セットを提供
Provide a minimal set for writing papers with LaTeX. - IEEEtran クラスを利用して国際会議・論文誌の形式に準拠
Use IEEEtran class to follow international conference/journal format.
📂 含まれるファイル | Contents
ファイル | 説明 |
---|---|
main.tex |
本文のメインソース Main LaTeX source file |
refs.bib |
参考文献(BibTeX 形式) Bibliography file (BibTeX) |
Makefile |
ビルド用(pdflatex → bibtex → pdflatex ×2 )Makefile for automated build |
README.md |
本ファイル(使い方と概要) This file (overview and usage) |
⚙️ 依存関係 | Dependencies
- TeX Live または MiKTeX
- IEEEtran.cls(多くの TeX 配布に同梱済み)
▶️ ビルド方法 | Build
1) Makefile を利用
make
2) 手動で実行
pdflatex main.tex
bibtex main
pdflatex main.tex
pdflatex main.tex
📝 カスタマイズ | Customization
\documentclass[conference]{IEEEtran}
% \documentclass[journal]{IEEEtran}
📊 出力例 | Example Output
- コンパイル後に
main.pdf
が生成され、IEEEtran スタイルの論文 PDF を確認できます。
Compile result:main.pdf
shows IEEEtran styled paper.