view paper/thesis.tex @ 4:3b3b014765a2

minor change
author sugi
date Wed, 13 Feb 2013 17:33:02 +0900
parents c874088754a4
children 52dff3fd4f40
line wrap: on
line source

\documentclass[a4j,12pt]{jreport}
\usepackage[dvipdfm]{graphicx}
%\usepackage[dvips]{graphicx}
\usepackage{listings,jlisting}
\usepackage{mythesis}
\usepackage{multirow}
\usepackage{here}

\setlength{\itemsep}{-1zh}

\title{}
\year{平成23年度 卒業論文}
\belongto{琉球大学工学部情報工学科}
\author{095732 杉本 優  \\ 指導教員 {河野 真治} }
%%
%% プリアンブルに記述
%% Figure 環境中で Table 環境の見出しを表示・カウンタの操作に必要
%%
\makeatletter
\newcommand{\figcaption}[1]{\def\@captype{figure}\caption{#1}}
\newcommand{\tblcaption}[1]{\def\@captype{table}\caption{#1}}
\makeatother
\setlength\abovecaptionskip{0pt}

\begin{document}

% タイトル
\maketitle
\baselineskip 17pt plus 1pt minus 1pt

\pagenumbering{roman}
\setcounter{page}{0}

\lstset{%
  frame=single,
  stringstyle={\ttfamily},
  commentstyle={\ttfamily},
  identifierstyle={\ttfamily}, 
  keywordstyle={\ttfamily},
  basicstyle={\ttfamily},
  breaklines=true,
  xleftmargin=0zw,
  xrightmargin=0zw,
  framerule=.2pt,
  columns=[l]{fullflexible},
  numbers=left,
  stepnumber=1,
  numberstyle={\scriptsize},
  numbersep=1em,
  language={Java},
  tabsize=4,
  lineskip=-0.5zw,
  morecomment={[s][]{/**}{*/}},
}

\tableofcontents	% 目次
\listoffigures		% 図目次
\listoftables		% 表目次

%以下のように、章ごとに個別の tex ファイルを作成して、
% main.tex をコンパイルして確認する。
%章分けは個人で違うので下のフォーマットを参考にして下さい。

% はじめに
\input{chapter1.tex}

% 基礎概念 (Aliceについて)
\input{chapter2.tex}

% Aliceを用いた例題
\input{chapter3.tex}

% 他の論文との比較
\input{chapter4.tex}

% 今後の課題
\input{chapter5.tex}

% 参考文献
%\input{bibliography.tex}

% 謝辞
%\input{thanks.tex}

% 付録
%\input{appendix.tex}

\end{document}