如果之前有人问过这个问题,我很抱歉,但是我没有在任何地方找到针对此特定问题的解决方案。
在撰写论文的简短版本时,我使用了小册子包。不幸的是,我在目录中的页码编号方面遇到了问题。确切地说,所有页码都显示 (iii),这实际上是放置目录的页面,而不是该部分的正确页码。当我 %%“\usepackage 小册子”时,问题就消失了。
因为我需要在周三之前提交我的工作,所以我非常感谢您的帮助。
下面是我的代码。
提前致谢!
\documentclass[twoside,a4paper]{article}
\usepackage[polish,czech,english]{babel}
\usepackage{graphicx}
\usepackage[T1]{fontenc}
\usepackage[polish]{babel}
\usepackage[utf8]{inputenc}
\setlength{\oddsidemargin}{2cm}
\setlength{\evensidemargin}{2cm}
\addtolength{\topmargin}{2.5cm}
\addtolength{\textheight}{-5cm}
% orange box to emphasise undefined references
\usepackage[usenames,dvipsnames]{color}
\makeatletter
\def\@setref#1#2#3{%
\ifx#1\relax
\protect\G@refundefinedtrue
\nfss@text{\reset@font\bfseries\fcolorbox{black}{Orange}{??}}%
\@latex@warning{Reference `#3' on page \thepage \space
undefined}%
\else
\expandafter#2#1\null
\fi}
\newcommand\Affiliation{%
\Department{}\\
\Faculty\\
\University\\
\Address}
\newcommand\SupervisorAffiliation{
\Department\\
\Faculty\\
\University\\
\Address}
% % % % % % % % % % % % % % % % %
% modify/specify below as needed
% % % % % % % % % % % % % % % % %
\newcommand\DissTitle{Behavioural analysis of drivers in Czech Republic with respect to Variable Speed Limit system.}
\newcommand\TitlesBefore{Ing.}
\newcommand\FirstandFamilyName{Michał Matowicki}
\newcommand\TitlesAfter{}
\newcommand\Email{[email protected]}
\newcommand\Location{Prague}
\newcommand\Month{April}
\newcommand\Year{2019}
\newcommand\PhDProgram{Engineering Informatics of Transportation and Communication}
\newcommand\Department{Department of Applied Mathematics}
\newcommand\Faculty{Faculty of Transportation sciences}
\newcommand\University{Czech Technical University in Prague}
\newcommand\Address{removed for privacy, 110 00 Prague 1, Czech Republic}
\newcommand\Supervisor{prof. Ing. removed for privacy Ph.D.}
\newcommand\SupervisorEmail{[email protected]}
%-> remove comments if you have thesis co-supervisor
%\newcommand\CoSupervisor{removed for.privacy}
%\newcommand\CoSupervisorAffiliation{
%Computer Science and Engineering Department\\
%Faculty of Electrical Engineering\\
%Czech Technical University in Prague\\
%Karlovo n\'{a}m.~13\\
%121 35 Prague 2\\
%Czech Republic}
% % % % % % % % % % % % % % % % % % % % % % % % %
% uncomment the following lines to produce a booklet
% % % % % % % % % % % % % % % % % % % % % % % % %
\usepackage[print]{booklet} % final printing run
\setpdftargetpages
% % % % % % % % % % % % % % % % % % % % % % % % %
\pagenumbering{roman}
\begin{document}
\begin{titlepage}
\thispagestyle{empty}
\begin{center}
{\sffamily\University\\
\Faculty\\
\Department\\
\vfill
{\large\bfseries\DissTitle}\\
\bigskip
{by}\\
\bigskip
{\large\emph{\FirstandFamilyName}}\\
\vfill
Doctoral Degree Study Program: \PhDProgram
\vglue 1cm
\ifx\PhDSpecialization\undefined\relax\else{Specialisation: \PhDSpecialization}\fi
\vfill
Dissertation thesis statement for obtaining \\ the academic title of ``Doctor'' abbreviated to ``Ph.D.''
\vglue 1cm
\Location, \Month~\Year}
\end{center}
\end{titlepage}
\newpage
{\footnotesize
\noindent The dissertation thesis was written during full-time doctoral study at the \Department, \Faculty{} of the Czech Technical University in Prague.
\vglue .5cm
\noindent\hbox to 3cm{\hbox{Ph.D. Candidate:}\hss}\parbox[t]{8cm}{\FirstandFamilyName\\
\Affiliation\\
\Email
}
\vglue .5cm
\noindent\hbox to 3cm{\hbox{Supervisor:}\hss}\parbox[t]{8cm}{%
\Supervisor\\
\SupervisorAffiliation\\
\SupervisorEmail}
\vglue 1cm
\noindent\hbox to 3cm{\hbox{Reviewers:}\hss}\parbox[t]{8cm}{%
\vrule width 5cm height 0pt depth 0.5pt\\[.5cm]
\vrule width 5cm height 0pt depth 0.5pt\\[.5cm]
\vrule width 5cm height 0pt depth 0.5pt
}
\bigskip\bigskip
\noindent The dissertation thesis statement was distributed on April 19, 2019.
\bigskip
\noindent The defence of the dissertation thesis will be held before the Committee for the presentation and defence of the dissertation thesis in the doctoral degree study program Engineering Informatics of Transportation and Communication \ifx\PhDSpecialization\undefined\relax\else{in the \PhDSpecialization{} specialisation}\fi\\
on June 14th 2019 in the Department of Applied Mathematics the meeting room No. 3 .
\bigskip
\noindent In accordance with Para. 8 of Art. 30 of the Study and Examination Regulations for Students of the CTU, those who are interested may look into the dissertation thesis and make notes, copies, or duplicates from it at their own expense. A copy of the dissertation thesis is available in the Science and Research Office of the \Faculty{}, room No. K210.
\begin{center}
\bigskip
\bigskip
prof. Ing. Zdeněk Votruba, CSc.\\
\medskip
Chairman of the Committee for the presentation and defence of the dissertation thesis
\ifx\PhDSpecialization\undefined\relax\else{\\ in the \PhDSpecialization{} specialization}\fi\\
% \Department\\
\Faculty\\
\University\\
Konviktská 20, 110 00 Praha 1, Czech Republic
\end{center}}
%\newpage
\tableofcontents
\cleardoublepage
%\pagestyle{headings}\pagenumbering{arabic}\setcounter{page}{1}
\section{Introduction and Motivation}
\pagenumbering{arabic}
The need for deployment of Intelligent Transport Systems in a modern transport network is a widely accepted fact nowadays. A simple idea behind it is that there is no more space for further construction of wider road...
\end{document}
再次提前感谢。