我希望標题頁顯示頁碼1,之後每頁顯示一个没有中斷的頁碼.我需要改變什麼?
\documentclass[pdftex,12pt,a4paper]{report}
\usepackage[pdftex]{graphicx}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\begin{document}
\input{./title.tex}
\clearpage
\tableofcontents
\chapter{Chapter One}
\section{Abstract}
test
\end{document}
title.tex:
\begin{titlepage}
\begin{center}
\textsc{\LARGE University of Beer}\\[1.5cm]
This thesis is Submitted to UoB\\[0.5cm]
For the degree of Doctor of Philosophy\\[0.5cm]
% Title
\HRule \\[0.4cm]
{ \huge \bfseries Finance \\[0.4cm] }
\HRule \\[1.5cm]
\begin{minipage}{0.45\textwidth}
\begin{flushleft} \large
\emph{Author:}\\
John \textsc{Smith}
\end{flushleft}
\end{minipage}
\begin{minipage}{0.45\textwidth}
\begin{flushright} \large
\emph{Supervisor:} \\
Prof.~John \textsc{Smith Snr}
\end{flushright}
\end{minipage}
\vfill
% Bottom of the page
{\large \today}
\end{center}
\end{titlepage}
最新回復
- 2019-12-51 #
相似問題
- 標题頁和摘要用相同的罗马數字編號LaTeXtitlesLaTeXpagenumberingLaTeXabstract2019-08-16 10:17
我添加了一个自動
\stepcounter{page}
明確地在titlepage
結束時 使用\xpatchcmd
的環境 来自egreg的xpatch
包.結合werner關於\[email protected]
的建議 命令,這應该提供所需的功能.自从
titlepage
是一个環境,有一个自動\endtitlepage
命令/ hook,在命令結束時呼叫,因此附加\stepcounter
就足够了 命令\endtitlepage
title.tex
檔案不受影响,應该从上面的OP中使用。