제목 페이지의 머리글과 바닥글에서 가로선 제거

제목 페이지의 머리글과 바닥글에서 가로선 제거

논문 제목 앞에 공백 페이지 두 개를 설정하려고 합니다. 그러나 제가 사용하는 해결 방법은 첫 번째 페이지에는 잘 작동하지만 제목 페이지에 가로줄이 표시됩니다("텍스트 텍스트..."가 있었습니다). 다음은 내 코드입니다.

\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}

두 개의 초기 페이지를 공백으로 만들고 제목 페이지를 수평선 없이 만드는 것이 가능합니까? 수평선은 문서의 나머지 부분에 필요하지만 제목 페이지에는 없어야 합니다.

답변1

\pagestyle{empty}대신 \fancyhf{}에 라인 없이 빈 발과 머리 라인을 얻을 수 있습니다 .

관련 정보