分割texファイルを一つにまとめてpdf出力しているのですが、改ページが入ってしまい困っています。
元々、\includeを使用していたのですが、\includeの場合は前後が改ページされるとネットに書いてあったので\inputに変更しました。
しかし、出力結果は変わらず改ページが存在しています。
pdfの出力は、summary.texのpdf(ページ1)+空ページ(ページ2)+目次A.texのpdf(ページ3-6)+空ページ(ページ7)+B.texのpdf(ページ8-10)という感じです。
どこに原因があるのでしょうか。
よろしくお願いいたします。
A.texとB.texの中身
\chapter{chap}
\section{sec1}
\section{sec2]
\subsection{subsec2}
\begin{thebibliography}{99}
\bibitem{hoge}
hoge
\bibitem{hogehoge}
hogehoge
\end{thebibliography}
main.texの中身
\documentclass[dvipdfmx,book,10.5pt]{jlreq}
\usepackage[left=25mm,right=15mm,top=25mm,bottom=20mm]{geometry}
\usepackage[draft]{graphicx}
\usepackage{xcolor, tikz}
\usepackage{mathtools, amssymb}
\usepackage{newtxmath}
\usepackage[defaultsups]{newtxtext}
\usepackage{bm}
\usepackage{mystyle}
\usepackage{subcaption}
\usepackage{array, booktabs}
\usepackage{multirow}
\usepackage{threeparttable}
\usepackage{overcite}
\renewcommand\citeform[1]{#1)}
\begin{document}
\frontmatter
\pagenumbering{roman}
\input{summary}
\mytableofcontents
\mainmatter
\pagenumbering{arabic}
\input{chap01}
\input{chap02}
\backmatter
\end{document}
mystyle.texの中身
\makeatletter
\def\l@chapter{%
% |\@dottedtocline|の代わりに独自の命令を使う
\my@dottedtocline
{0}% 見出しのレベル(chapterは0)
{1.0\baselineskip}% 前の行とのアキ
{0pt}% 字下げ
{6\zw}% ラベル(「第1章」等)の幅
{\sffamily\gtfamily\Large}% フォント
}
% jlreqの|\@dottedtocline|を元に独自の命令を定義
\def\my@dottedtocline#1#2#3#4#5#6#7{%
\jlreq@set@top@contents{#1}%
\ifnum #1>\c@tocdepth \else
\vskip #2\relax
{\leftskip #3\relax \rightskip \@tocrmarg \parfillskip -\rightskip
\parindent #3\relax\@afterindenttrue
\interlinepenalty\@M
\leavevmode
\@lnumwidth #4\relax
\@tempcnta=#1\relax
\advance\@tempcnta by -\jlreq@top@contents
\@tempdima=1\jlreq@mol
\multiply \@tempdima by \@tempcnta
\advance\leftskip \@lnumwidth \hbox{}\hskip -\leftskip
\advance\leftskip\@tempdima
{#5#6}\nobreak
\leaders\hbox{$\m@th\mkern \@dotsep mu$\null\inhibitglue ・\inhibitglue\null$\m@th\mkern \@dotsep mu$}%
\hfill\nobreak
\hb@xt@\@pnumwidth{\hss\normalfont\normalcolor #7}%
\par}%
\fi}
\makeatother
\renewcommand{\contentsname}{目\hspace{2\zw}次}
\newcommand{\mytableofcontents}{%
\SaveHeading{chapter}{\restorechapter}% 現在の\chapterを保存
\ModifyHeading{chapter}{align=center}% \chapter変更
\tableofcontents
\restorechapter
}
\newcommand{\red}[1]{\textcolor{red}{#1}}
\renewcommand{\thefootnote}{*\arabic{footnote}}