Master thesis LaTeX template for Kyushu University Science Faculty
Author
Harunobu Takeda
Last Updated
5 years ago
License
Creative Commons CC BY 4.0
Abstract
LaTeX Template for the bachelor and master thesis of Kyushu University Science Faculty.
LaTeX Template for the bachelor and master thesis of Kyushu University Science Faculty.
%%%%%%%%%%%%%%%%%%
\documentclass[a4paper,titlepage,12pt]{Qrigaku}
%\usepackage[sectionbib]{chapterbib}%章ごとにリファレンスを付ける場合
%\usepackage{backref}
\usepackage[deluxe,jis2004]{otf}
\usepackage[noto-otc,unicode]{pxchfon}%noto serif和文書書体の呼び出し
\usepackage{makeidx}
\usepackage[dvipdfmx]{graphicx}
\usepackage{titlesec}
\usepackage{qpaper}
\usepackage{epsbox}
\usepackage{amsmath,amssymb}%\approxなどの特殊文字の呼び出し
\usepackage{cite}%複数の文献を引用したとき1-4)などにしたい場合
%\usepackage{bm}
%\usepackage{tpic}
%\usepackage{tpic2e}
%\usepackage{plext}
\usepackage{syntonly}%%%文法チェック用パッケージ
\usepackage{showidx}%%%索引チェック用パッケージ
%\syntaxonly %%%%%文法チェックコマンド
\makeindex%%%索引を作成
%%%%%%%%%%%%%%%% 論文題目 %%%%%%%%%%%%%%%%%%%%%%%%%
%qdai.clsファイルの400行付近で英字タイトルのフォントサイズなどを指定
\engtitle{Type english title in this brankets. 18pt}
%qdai.clsファイルの400行付近で日本語タイトルの詳細指定
\title{日本語タイトルを記入. 16pt}
%%%%%%%%%%%%%%%% 修 論 生 %%%%%%%%%%%%%%%%%%%%%%%%%
\author{名前を記入}
%%%%%%%%%%%%%%%% 所 属 %%%%%%%%%%%%%%%%%%%%%%%%%
\department{所属を記入}
%%%%%%%%%%%%%%%% 日 付 %%%%%%%%%%%%%%%%%%%%%%%%%
\date{\today}
\pagestyle{denheadings}
%
%%%%%%%%%%% 特定の章をコンパイルする時はこれを使う %%%%%%%%%%%%%%%
%\includeonly{Section4-Result}
%
%%%%%% TEXT START %%%%%%
\begin{document}
\maketitle
\clearpage
%%%%%%%%%%%%%%% 要 旨 %%%%%%%%%%%%%%%%%%%%%%%
\include{abstract}
\include{engabstract}
%%%%%%%%%%%%%%% 目 次 %%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{edheadings}
\pagenumbering{roman}
\setcounter{page}{1}
\tableofcontents
\listoffigures
\listoftables
\clearpage
\pagenumbering{arabic}
\setcounter{page}{1}
%%%%%%%%%%%%%%% 第一章:序論 %%%%%%%%%%%%%%%%%%%%%%%%%
\include{section1}
%%%%% 第二章: %%%%%%%%%%%%
\include{section2}
%%%%% 第三章: %%%%%%%%%%%%
\include{section3}
%%%%% 第四章: %%%%%%%%%%%%
\include{section4}
%%%%% 第五章: %%%%%%%%%%%%
\include{section5}
\clearpage
%%%%%%%%%%%%%%%%%%%% 謝辞 %%%%%%%%%%%%%%%%%%%%
\addcontentsline{toc}{section}{謝辞}
\markboth{謝辞}{謝辞}
\include{thanks}
%%%%%%%%%%%%%% 参考文献 %%%%%%%%%%%%%%%%%%%%%%%%%
\addcontentsline{toc}{section}{参考文献}
\bibliographystyle{osajnl}%osajnl.bstでOSA形式の引用文献リストを作っている。AIPやIEEEなどいろいろあるので適宜探してアップロードして利用されたし。
\bibliography{reference.bib}
%%%%%%%%%%%%% 付 録 %%%%%%%%%%%%%%%
\appendix
\include{appendix}
\newpage
%%%%%%%%%%%%%%%%%%% 索 引 %%%%%%%%%%%%%%%%%%
%\addcontentsline{toc}{section}{索引}
%\markboth{索引}{索引}
%\printindex
%
\end{document}