\documentclass[a4j,12pt]{jreport}
\usepackage{Dennou6}
\usepackage{graphics}
%  \usepackageは 〜 .sty というファイルを読み込む。
%  プリアンブルとは、\begin{document}より前の部分である。
\setlength{\parindent}{0pt}
  
% -------- ヘッダ・フッタの設定 --------

\Dauthor[江川 晋子]{}           % ノート作成者(ノートの右下に表示される)
\Ddate[2001/12/25]{}
\textheight=23.5cm
\pagestyle{DAheadings}

% ------------- 文書入力 --------------

\begin{document}
\clearpage


%%%%%% contents %%%%%%%%%%%%%%%%%%%
 \pagenumbering{roman} %{i, ii, ...}
 \setcounter{page}{1}
 \Dtitle{検定に関するノート}
 \tableofcontents
 \clearpage

%## main part #################################
%%%% 1. introduction %%%%%%%%%%%%%%%%

 \pagenumbering{arabic} %{1, 2, ...}
 \setcounter{page}{1}
 \input{chap1.tex}  % §1
 
%%%% 2. 統計的決定理論  %%%%%%%%%%%%%%%%%%%%%%%%
 \input{chap2.tex}    % §2

%%%% 3. 母数の推定  %%%%%%%%%%%%%%%%%%%%%%%%
 \input{chap3.tex}    % §3

%%%% 4. 検定 %%%%%%%%%%%%%%%%%%%%%%%%
 \input{chap4.tex}    % §4

%%%% 5. 未解決な問題 %%%%%%%%%%%%%%%%%%%%%%%%
 \input{chap5.tex}    % §5

%%%% Appendix A 正規分布の重要性とその応用 %%%%%%%%%%%%%%%%%
 \appendix
\input{appendix-a.tex}


%%%% Appendix B ガンマ関数とその性質 %%%%%%%%%%%%%%%%%
 \appendix
\input{appendix-b.tex}

%%%% Appendix C ベータ関数とその性質 %%%%%%%%%%%%%%%%%
 \appendix
\input{appendix-c.tex}

%%%% Appendix D 用語 %%%%%%%%%%%%%%%%%
 \appendix
\input{appendix-d.tex}

%%%% 参考文献 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 \addcontentsline{toc}{section}{\protect\numberline{}{参考文献}}
 \input{refer.tex}
 
\end{document}












