とらりもんHOME  Index  Search  Changes  Login

学位論文のTeX設定例

博士論文の例(1)

2009/02/02 本岡(筑波大)

\documentclass[11pt]{jreport}

\setlength{\topmargin}{0cm}
\setlength{\oddsidemargin}{0.6cm}
\setlength{\textwidth}{40zw}
\setlength{\headheight}{0mm}
\setlength{\headsep}{0mm}
\setlength{\footskip}{50pt}
\setlength{\textheight}{44\baselineskip}
\addtolength{\textheight}{\topskip}

\usepackage{txfonts}
\usepackage{booktabs}
\usepackage[dvipdfm]{graphicx}
\usepackage[dvipdfm]{color}
\usepackage{float}
\usepackage{natbib}

\renewcommand{\bibname}{参考文献}
\renewcommand{\baselinestretch}{1.4} 

%------------------ 箇条書き --------------------

\newenvironment{itemize2}%  
{%
  \begin{list}{$\bullet$\ \ }% 見出し記号/直後の空白を調節
  {%
     \setlength{\itemindent}{0pt}
     \setlength{\leftmargin}{3zw}%  左のインデント
     \setlength{\rightmargin}{0zw}% 右のインデント
     \setlength{\labelsep}{0zw}%    黒丸と説明文の間
     \setlength{\labelwidth}{3zw}%  ラベルの幅
     \setlength{\itemsep}{0em}%     項目ごとの改行幅
     \setlength{\parsep}{0em}%      段落での改行幅
     \setlength{\listparindent}{0zw}% 段落での一字下り
  }
}{%
   \end{list}%
}

%---------- 番号つき箇条書き -----------

\newcounter{enum2}
\newenvironment{enumerate2}{%
  \begin{list}%
  {%
     \arabic{enum2}.\ \,%  見出し記号/直後の空白を調節
  }%
  {%
     \usecounter{enum2}
     \setlength{\itemindent}{0zw}%  ここは 0 に固定
     \setlength{\leftmargin}{3zw}%  左のインデント
     \setlength{\rightmargin}{0zw}% 右のインデント
     \setlength{\labelsep}{0zw}%    黒丸と説明文の間
     \setlength{\labelwidth}{3zw}%  ラベルの幅
     \setlength{\itemsep}{0em}%     項目ごとの改行幅
     \setlength{\parsep}{0em}%      段落での改行幅
     \setlength{\listparindent}{0zw}% 段落での一字下り
  }
}{%
   \end{list}%
}
 
%----------- 表紙 ------------------

\begin{document}

\title{\huge リモートセンシングによる\\ \huge 植物季節の観測手法に関する研究\\[4.0cm] }
\date{\LARGE 筑波大学大学院\\ 生命環境科学研究科\\ 持続環境学専攻\\ 博士 (環境学) 学位論文\\[2.0cm] \huge 本岡 毅}
\maketitle

%----------- ページ番号 & 目次------------

\pagenumbering{roman}
\tableofcontents
\listoftables
\listoffigures
\newpage 
\pagenumbering{arabic}
 
%----------- 本文ここから ---------------

\chapter{はじめに}
 
\section{植物季節観測の重要性}

NDVIは以下のように定義される. 

\begin{equation}
 NDVI=\frac{R_\mathrm{NIR} - R_\mathrm{RED}}{R_\mathrm{NIR} + R_\mathrm{RED}}
\end{equation}
\\

\begin{table}[H]
\begin{center}
\caption{設置した分光放射計の仕様}
\begin{tabular}{lc}
\\
\toprule
{\small  製品名} & {\small  MS-700 } \\
{\small  メーカー} & {\small  英弘精機 } \\
{\small  波長範囲} & {\small  350 nm -- 1050 nm } \\
{\small  波長精度} & {\small  0.3 nm 以下 } \\
{\small  波長間隔} & {\small  3.3 nm } \\
{\small  波長分解能 (半値幅) } & {\small  10 nm } \\
\bottomrule
\end{tabular}
\end{center}
\end{table}

\begin{figure}
 \begin{center}
  \includegraphics[width=15cm,bb=0 0 920 852]{site.png} % epsの場合は、「bb=0 0 920 852」を「clip」に変える.
 \caption[地上観測サイトの位置と概観]{地上観測サイトの位置と概観. }
 \end{center}
\end{figure}

\chapter*{謝辞}
\addcontentsline{toc}{chapter}{謝辞}

\begin{thebibliography}{99}
\addcontentsline{toc}{chapter}{参考文献}

\bibitem[Sasai {\it et al}.(2005)]{sasai:2005}
Sasai, T., Ichii, K., Yamaguchi, Y., Nemani, R., 2005. 
Simulating terrestrial carbon fluxes using the new biosphere model "biosphere model integrating eco-physiological and mechanistic approaches using satellite data" (BEAMS). 
Journal of Geophysical
Research, 110, doi:10.1029/2005JG000045.

\end{thebibliography}
\end{document}
Last modified:2009/02/02 22:16:48
Keyword(s):
References:[TeX] [とらりもんHOME]