Skip to content

Instantly share code, notes, and snippets.

@naoh16
Last active October 31, 2016 02:02
Show Gist options
  • Save naoh16/9df82bbf562de3127a5a8bb2c1184532 to your computer and use it in GitHub Desktop.
Save naoh16/9df82bbf562de3127a5a8bb2c1184532 to your computer and use it in GitHub Desktop.
情報工学実験B(人工知能) 最終レポートのサンプルとMakefileの例
\documentclass[a4j,10pt]{jarticle}
\usepackage[dvipdfmx]{graphicx}
% 紙面のサイズ
\textwidth=160mm
\textheight=230mm
% マージンの自動調整(紙面の真ん中に配置する)
\setlength{\oddsidemargin}{-2in}
\addtolength{\oddsidemargin}{\paperwidth}
\addtolength{\oddsidemargin}{-\textwidth}
\setlength{\oddsidemargin}{.5\oddsidemargin}
\setlength{\topmargin}{-2in}
\addtolength{\topmargin}{\paperheight}
\addtolength{\topmargin}{-\headheight}
\addtolength{\topmargin}{-\headsep}
\addtolength{\topmargin}{-\topskip}
\addtolength{\topmargin}{-\footskip}
\addtolength{\topmargin}{-\textheight}
\setlength{\topmargin}{.5\topmargin}
% 画像とテキストの占有領域のバランス調整
\renewcommand\textfraction{.2}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{ %
情報工学実験B(メディア処理)% タイトル
\\
{\Large 人工知能実験2016 レポート} % サブタイトル
}
\author{ %
原 直 % 氏名
\\
09420987 % 学生番号
}
\date{ %
%出題日: 20xx年xx月xx日\\%
提出日: 20xx年xx月xx日\\%
締切日: 20xx年xx月xx日%
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\maketitle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{概要} % ※400~1,200文字程度
% - レポートの概要を述べる
XXXXXXXX XXXXXXXXXXX XXXXXXXXXXXX.
XXXXXXXX XXXXXXXXXXX XXXXXXXXXXXX.
\section{迷路の探索とグラフ探索}
% - 実施した内容に絞って,以下の内容についてまとめる
\subsection{迷路の探索問題とグラフ探索}
\subsection{グラフ探索方式}
\subsection{迷路の表現や探索の実装}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{実験}
\subsection{実験1:XXXXXに関する実験}
\subsubsection{実験概要}
\subsubsection{実験結果}
\subsubsection{考察}
\subsection{実験2:YYYYYに関する実験}
\subsubsection{実験概要}
\subsubsection{実験結果}
\subsubsection{考察}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{議論} % ※400~1,200文字程度
% - レポートのまとめをおこなう
%- 「迷路の探索」問題から「人工知能」が扱う問題について考察する.
%- 感想を書いても良いが,必ず考察とは節(副節)を分けて書くこと.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 参考文献リスト
% 本文で引用していない文献をリストに挙げてはいけない.
% 電子情報通信学会の書式に準拠する.
% http://www.ieice.org/jpn/shiori/iss_2.html#2.6
\begin{thebibliography}{9}
\bibitem{Yamagami1979}
山上一郎,山下二郎,
``パラメトリック増幅器,''
電子情報通信学会論文誌(B), vol.J62-B, no.1, pp.20--27,
Jan. 1979.
\bibitem{Yamada1989}
山田太郎,
移動通信,
木村次郎(編),(社)電子情報通信学会,東京,
1989.
\bibitem{Yamada1989_Chap1}
山田太郎,
``周波数の有効利用,''
移動通信,
木村次郎(編),pp.21--41,(社)電子情報通信学会,東京,
1989.
\end{thebibliography}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Appendixは必要ならつける
%\appendix
%\section{人工知能関連の文献調査}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% End-of-Document
\end{document}
#
# 演習室でのレポート作成用 Makefile 例
#
# by Sunao Hara 2016-10-31
#
##
## 作りたいPDFファイル名に変更する
## PDF は同名のTeXファイルから作成される
##
TARGET_PDF = expb2_ai_report_09420987.pdf
##
## 環境依存の設定
##
LATEX = edu-platex
PDFVIEW = evince-previewer
##
## 一般的な pLaTeX 作成用の設定
##
.SUFFIXES: .tex .pdf .bb .jpg .png
.PHONY: all pdf pv clean distclean
jpgfiles := $(wildcard *.jpg)
pngfiles := $(wildcard *.png)
jpgbbfiles = $(jpgfiles:.jpg=.bb)
pngbbfiles = $(pngfiles:.jpg=.bb)
.jpg.bb:
extractbb -m $<
.png.bb:
extractbb -m $<
.tex.pdf:
$(LATEX) $<
#$(LATEX) $<
all: bb pdf pv
pdf: $(TARGET_PDF)
bb: $(jpgbbfiles) $(pngbbfiles)
pv:
if ps w | grep $(PDFVIEW) | grep -v grep; then killall -HUP $(PDFVIEW); fi
$(PDFVIEW) $(TARGET_PDF) &
clean:
rm -f *.euc.tex *.dvi *.aux *.log *.bb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment