論文のタイトル ページの前に 2 ページの空白ページを設定するつもりです。ただし、私が使用した回避策は最初のページには適していますが、タイトル ページに水平線 (「テキスト テキスト...」) が表示されます。以下は私のコードです。
\documentclass[a4paper,12pt]{book}
\usepackage{amsmath, amsthm, amssymb}
\usepackage{url}
\usepackage[algoruled,vlined]{algorithm2e}
\usepackage{graphicx,subfigure}
% for nice tables
\usepackage{booktabs}
% end for nice tables
% for using color names
\usepackage[usenames,dvipsnames]{color}
% end for using color names
% for nicer figure captions
\usepackage[font=small,format=plain,labelfont=bf,up,textfont=it,up]{caption}
% end for nicer figure captions
% fancy headers and footers
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0.1pt} % for upper line
\renewcommand{\footrulewidth}{0.1pt} % for lower line
\fancyhead[LE,RO]{\itshape \nouppercase \rightmark}
\fancyhead[LO,RE]{\itshape \nouppercase \leftmark}
\fancyfoot[C]{\thepage}
% end fancy headers and footers
% for shaded table cells
\usepackage{colortbl}
% for multirow option in the tables
\usepackage{multirow}
\usepackage[semicolon]{natbib}
\usepackage{fancybox}
\usepackage{xcolor}
\usepackage{framed}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\newenvironment{myfancybox}{%
\def\FrameCommand{\fboxsep=\FrameSep \fcolorbox{black}}%
\color{black}\MakeFramed {\FrameRestore}}%
{\endMakeFramed}
% for theorems, lemmas...
\theoremstyle{plain} % use "default" font
\newtheorem{thm}{Theorem}[chapter]
\newtheorem{lemma}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\newtheorem{cor}[thm]{Corollary}
\newtheorem*{thma}{Theorem}
%\theoremstyle{definition} % use "definition-style" font for the rest
%\bibliographystyle{plain} %Choose a bibliograhpic style
\usepackage{sectsty}
\allsectionsfont{\itshape}
% for height of the heading
\setlength{\headheight}{15pt}
\parskip1ex
\begin{document}
\begin{titlepage}
\fancyhf{}
\newpage
\mbox{}
\newpage
\mbox{}
\newpage
{\large text text text text
text text text text text text text text
text text text text text text text text
text text text text text text text text}
\end{titlepage}
\end{document}
最初の 2 ページを空白にして、タイトル ページに横線を入れないようにすることは可能ですか? ドキュメントの残りの部分には横線が必要ですが、タイトル ページには横線を入れないことに注意してください。
答え1
\pagestyle{empty}
の代わりにを使用すると\fancyhf{}
、線のない空の脚線と頭線が得られます。