我正在尝试插入没有页眉/页脚的第一页。当我在第一页之后立即插入目录时,它可以工作,但当我执行以下操作时则不行:
\documentclass{article}
\usepackage{Preamble}
\begin{document}
% \mytitle{Title}{SubTitle}{SubSubTitle}
\mytitle{name}{group-number}{version}
\include{Introduction.tex}
有效的版本:
\documentclass{article}
\usepackage{Preamble}
\begin{document}
% \mytitle{Title}{SubTitle}{SubSubTitle}
\mytitle{name}{group-number}{version}
\tableofcontents
\include{Introduction.tex}
使用 Preamble.sty 中定义的这个命令
\makeatletter
\newcommand\mytitle[3]{
\let\ps@plain\ps@empty
\begingroup
\newlength\drop
\setlength\drop{0.08\textheight}
\centering
% \vspace*{\drop}
\rule{\linewidth}{0.5mm} \\ \vspace*{20pt}
{\huge\bfseries subTitle - #1 %Titel
}\\[\baselineskip]
{\scshape \Large #2} %Undertitel
\\[\baselineskip]
{\scshape #3} %Undertitel
\\ \vspace*{10pt}{\scshape
}
\rule{\linewidth}{0.5mm}
\\[\baselineskip]
\vspace*{0.4\drop}
\begin{figure}[H]
\centering
\includegraphics[width=0.6\textwidth]{logo.png}
\end{figure}{}
% \vfill
\vspace*{0.4\drop}
{\begin{table}[H]
\centering
\begin{tabular}{l r}
Name & Study number \\\hline
person & studyNumber \\\hline
\end{tabular}
\end{table}}\par
\vfill
{\scshape university \\ \today %Dato og sted
\\
}\par
\setcounter{page}{0}
\endgroup}
\makeatother
我尝试过使用\newpage
和\clearpage
。请帮我找到一个解决方案,让我可以拥有没有页面格式(页眉/页脚/页码)的首页,并且仍然保留目录之前的内容
答案1
我找到了答案。我在命令\thispagestyle{empty}
开头添加了\mytitle