如何在标题页之后和目录之前插入一个包含文本和图像的新页面(以便我能够编辑该页面),而不将该页面计入多文件格式?
非常感谢,
以下是 main.tex 、 Title.tex 、 Preamble.sty
主文本
\documentclass[11pt, letterpaper, twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage{import}
\usepackage{Preamble}
\titleformat{\chapter}{\normalfont\LARGE\bfseries}{\thechapter.}{10pt} {\LARGE\bfseries}
\begin{document}
\import{./}{Title.tex}
\afterpage{
\pagestyle{empty}
\newpage
\setcounter{page}{1}
}
\tableofcontents
\newpage
\chapter{text}
\import{Sections/}{Section1-1.tex}
\chapter{text}
\import{Sections/}{Section2-1.tex}
\chapter{text}
\import{Sections/}{Section3-1.tex}
\import{./}{Bibliography.tex}
\end{document}
标题.tex
\begin{titlepage}
\begin{center}
\vspace*{1cm}
\begin{figure}
\centering
\begin{subfigure}[b]{0.57\textwidth}
\centering
\includegraphics[width=\textwidth]{titlepic1}
\end{subfigure}
\end{figure}
\vspace{2cm}
\textbf{\LARGE{text}}
\vspace{2cm}
\textbf{text}\\
\vspace{1cm}
17/06/2016\\
text
\vspace{5cm}
\begin{flushright}
text
\end{flushright}
\vfill
\end{center}
\end{titlepage}
序言
\ProvidesPackage{Preamble}
\usepackage{afterpage}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{xr}
\usepackage{amsmath}
\usepackage{stmaryrd}
\usepackage{subcaption}
\usepackage{titlesec}
\DeclareGraphicsExtensions{.pdf,.png}
\graphicspath{{Images/}}
\usepackage[export]{adjustbox}
\usepackage[innercaption]{sidecap}
\usepackage{caption,lipsum}
\geometry{a4paper, portrait}
\geometry{top=20mm, left=20mm, right=20mm, footskip=50pt}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LO,RE]{\nouppercase{\leftmark}}
\fancyfoot[LO,RE]{\thepage}
\fancyfoot[CE,CO]{\small{text}}