view final_main/main.tex @ 3:008ac0554ff5

add files
author akahori
date Tue, 05 Feb 2019 18:00:41 +0900
parents
children
line wrap: on
line source

\documentclass[a4j,12pt]{jreport}
\usepackage[dvipdfmx]{graphicx}
\usepackage{mythesis}
\usepackage{bussproofs}
\usepackage{multirow}
\usepackage{here}
\usepackage{listings}
\usepackage{url}
\usepackage{cite}
\usepackage{listings}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{listings,jlisting}
\usepackage[utf8]{inputenc}
\usepackage{docmute}

\lstset{
  basicstyle={\ttfamily},
  breaklines=true,%自動で折り返す。
  columns=[l]{fullflexible},
  commentstyle={\footnotesize\ttfamily},
  escapechar={@},
  frame=single,
  framerule=.5pt,
  identifierstyle={\ttfamily},
  keepspaces=true,
  keywordstyle={\footnotesize\ttfamily},
  language={},
  lineskip=-0.1zw,
  numbers=left,
  numbersep=1em,
  numberstyle={\scriptsize},
  stepnumber=1,
  stringstyle={\footnotesize\ttfamily},
  tabsize=4,
  xleftmargin=0zw,
  xrightmargin=0zw,
}

% \lstset{
%   language={C},
%   basicstyle={\footnotesize\ttfamily},
%   identifierstyle={\footnotesize},
%   commentstyle={\footnotesize\itshape},
%   keywordstyle={\footnotesize\bfseries},
%   ndkeywordstyle={\footnotesize},
%   stringstyle={\footnotesize\ttfamily},
%   frame={tb},
%   breaklines=true,
%   columns=[l]{fullflexible},
%   numbers=left,
%   xrightmargin=0zw,
%   xleftmargin=3zw,
%   numberstyle={\scriptsize},
%   stepnumber=1,
%   numbersep=1zw,
%   lineskip=-0.5ex
% }
\def\lstlistingname{ソースコード}
\def\lstlistlistingname{ソースコード目次}
\setlength{\itemsep}{-1zh}
\title{Christieによるブロックチェーンの実装}
\icon{
  \includegraphics[width=80mm,bb=0 0 595 642]{fig/ryukyu.pdf} %%元は 642じゃなくて842
}
\year{平成31年度 卒業論文}
\belongto{琉球大学工学部情報工学科}
\author{155753E 赤堀 貴一 \\ 指導教員 {河野 真治} }
%%
%% プリアンブルに記述
%% Figure 環境中で Table 環境の見出しを表示・カウンタの操作に必要
%%
\makeatletter
\newcommand{\figcaption}[1]{\def\@captype{figure}\caption{#1}}
\newcommand{\tblcaption}[1]{\def\@captype{table}\caption{#1}}
\def\lst@lettertrue{\let\lst@ifletter\iffalse} %
\makeatother
\setlength\abovecaptionskip{0pt}

\begin{document}

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

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

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

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

% 研究目的
\input{chapter1/chapter1.tex}

% ブロックチェーンについて
\input{chapter2/chapter2.tex}

% コンセンサスアルゴリズムについて
\input{chapter3/chapter3.tex}

% Christieについて
\input{chapter4/chapter4.tex}

% 評価
\input{chapter5/chapter5.tex}

% まとめ
\input{chapter6/chapter6.tex}

% 参考文献

% \bibliographystyle{junsrt}
% \bibliography{reference}

\input{bibliography.tex}

% 謝辞
\input{thanks.tex}

\appendix
% 付録
%\input{appendix.tex}

\end{document}