
저는 Latex로 논문을 작성하고 패키지로 제목 페이지를 만들려고 합니다 fancyhdr
. 그러나 오른쪽 헤더 Swinburne University of Technology(Sarawak Campus)는 제목 페이지에 표시되는 것을 거부합니다. 누군가 이 문제를 해결하도록 도와주실 수 있나요? 아래는 코드와 기본 제목 페이지입니다.
\begin{titlepage}
\thispagestyle{titlepage}
\begin{center}
\vspace*{1cm}
\Large
\textbf{Swinburne University of Technology \\Sarawak Campus\\ Faculty of Engineering, Computing \& Sciences}
\vspace{0.5cm}
\Large
Modelling of an Involute Spur Gear via Finite Element Method
\vspace{1.5cm}
Bachelor of Engineering\\
(Mechanical)
\vspace{0.8cm}
\includegraphics[width=0.6\textwidth]{Swinburne}
\Large
Name\\
June/2016
\end{center}
\end{titlepage}
답변1
나Johannes_B의 의견에 동의하다그 사용fancyhdr
어쨌든 문서의 모든 페이지에 대학 이름 헤더가 표시되기를 원하지 않는 한 여기로 가는 방법은 아닐 것입니다. 대신, 나는 \raggedleft
오른쪽 맞춤 정렬과 다음을 사용하여 헤드라인을 생성하기 위해 수동 접근 방식을 사용했습니다 \rule
.
\documentclass{report}
\usepackage{graphicx}
\begin{document}
\begin{titlepage}
\begin{center}
{\raggedleft\textit{Swinburne University of Technology (Sarawak Campus)}\\}
\rule{\textwidth}{0.5pt}
\vspace*{1cm}
\Large
\textbf{Swinburne University of Technology \\Sarawak Campus\\ Faculty of Engineering, Computing \& Sciences}
\vspace{\fill}
\Large
Modelling of an Involute Spur Gear via Finite Element Method
\vspace{\fill}
Bachelor of Engineering\\
(Mechanical)
\vspace{1cm}
\includegraphics[width=0.6\textwidth]{Swinburne}
\vspace{\fill}
\Large
Name
\vspace{\fill}
June/2016
\end{center}
\end{titlepage}
\end{document}