\documentclass[oneside,openany]{jsbook}
\usepackage[dvipdfmx]{graphicx}
\usepackage{amssymb,amsmath}
\usepackage{nitSot}         

% 目次はsectionレベルまで。
% subsectionレベルまで出したいのであれば、次のコマンドを有効にする。
% \setcounter{tocdepth}{2}

\begin{document}

% 表紙
\thispagestyle{empty}
\include{title}

% 要約
\renewcommand{\thepage}{\roman{page}}
\setcounter{page}{1}
\include{summary}

% 目次
\tableofcontents

% 本文
\newpage
\setcounter{page}{1}
\renewcommand{\thepage}{\arabic{page}}
\include{chap1}
\include{chap2}
\include{chap3}
\include{chap4}
\include{chap5}

% 参考文献
\include{ref}


\setcounter{page}{12}	% 設定したいページ番号
\include{appendB}

\end{document}
