为什么我的标题显示第 0 章?

为什么我的标题显示第 0 章?

为什么下面的代码会生成带有标题的第一页第 0 章?我需要消除它。

重现错误的 MWE

\documentclass[12pt,twoside
%,draft descomentando produce el pdf sin imágenes
]{report}
\usepackage[headheight=18pt,a4paper, width=150mm, top=25mm, bottom=25mm, bindingoffset=6mm, headsep=18pt]{geometry}
%aca utilizo la geometría de la hoja 
\usepackage[spanish,es-noquoting]{babel}
\usepackage[utf8]{inputenc} 
\usepackage[T1]{fontenc} 
\usepackage[hypcap=false]{caption}

\usepackage[activate={true,nocompatibility},final,tracking=true,kerning=true,spacing=true,factor=1100,stretch=10,shrink=10]{microtype}
\usepackage[hyphens]{url} %hyphens permite que se corten los url ( y quiza otras cosas) en algunos puntos, porque sino se alteran las oraciones.

\usepackage{caption}
\usepackage{csquotes} %"para citar bien"
\emergencystretch=2em

\title{\vspace{-6.0cm}{\small A}\\~\\
{\Large B} \\~\\
    {\large C}\\
    {\small D}\\
    {\small E}\\~\\
    }

\usepackage[pagestyles]{titlesec}
\newpagestyle{mystyle}{%
\headrule\footrule
\sethead[\small\itshape\thesection.\enspace\MakeUppercase{\sectiontitle}][][]{}{\small\itshape\MakeUppercase{\chaptername~\thechapter.\enspace \chaptertitle}}{}
\setfoot{}{\thepage}{}
}
\pagestyle{mystyle}

\begin{document}

\begin{center}
\maketitle
\end{center}

\titleformat{\chapter}[display]
{\normalfont\large\bfseries}{\chaptertitlename\ \thechapter}{0pt}{}
\titleformat{\section}
{\normalfont\Large\bfseries}{\thesection}{1em}{}
\titleformat{\subsection}
{\normalfont\large\bfseries}{\thesubsection}{1em}{}

\titlespacing{\chapter}{0pt}{-50pt}{0pt}
\titlespacing{\section}{0pt}{2.5ex plus 1ex minus .2ex}{1.3ex plus .2ex}
\titlespacing{\subsection}{0pt}{2ex plus 1ex minus .2ex}{1.0ex plus .2ex}
%formato de los títulos principales para cada capítulo(el formato de los subtítulos se indica dentro de cada capítulo
\tableofcontents

\chapter{Intro}
\end{document}

答案1

只需移动第 30 行:\pagestyle{mystyle};在\maketitle命令下它就会居中。

编辑

移除居中\maketitle

答案2

\maketitle无需环境即可使用center

\begin{document}
\maketitle

相关内容