Estou preparando a primeira página da minha dissertação e quero que fique assim:
Title
Doctoral
2017
Approved by:
Então, quero que todos eles estejam centralizados, mas apenas '2017' e 'Aprovado por' sejam ajustados. Eu tentei o seguinte, mas não funcionou:
\documentclass[12pt]{article}
\begin{document}
\pagenumbering{gobble}
\indent
\begin{center}
\textbf {\large { ESSAYS ON STRATEGIC MANAGEMENT}} \\
\indent by \\
\textbf {\large {\indent JOHN DOE \\
\indent DISSERTATION}} \\
\indent Submitted to the Graduate School \\
\indent of X State University, \\
\indent USA \\
\indent in partial fulfillment of the requirements \\
\indent for the degree of \\
\textbf {\large {\indent DOCTOR OF PHILOSOPHY }} \\
\indent 2017
\end{center}
\begin{multicols}{2}
\vfill\null
\columnbreak
\indent
\small{MAJOR: STRATEGIC MANAGEMENT \\
\indent
Approved By: \vspace{2mm}\\
\indent\rule{8cm}{0.4pt}
\indent Advisor \hspace{50mm} Date} \vspace{4mm}
\indent\rule{8cm}{0.4pt} \\
\indent\rule{8cm}{0.4pt} \\
\indent\rule{8cm}{0.4pt} \\
\indent\rule{8cm}{0.4pt}
\end{multicols}
\end{document}
Você poderia me dizer como posso resolver esse problema?
Responder1
Tenho outra ideia do que você pode querer e como alcançá-lo. No meu entendimento, você deseja que 2017 seja centralizado normalmente, mas deseja que a próxima linha fique alinhada à esquerda com esse 2017 centralizado.
Você pode colocar o conteúdo na \makebox
largura definida para a linha que deseja centralizar corretamente (neste caso 2017):
\documentclass[12pt]{article}
\begin{document}
\begin{titlepage}
\centering
{\huge Title}\par
\vspace{1cm} % change this to your liking!
{\Large Doctoral}\par
\vspace{1cm} % change this to your liking!
2017\\%
\setbox0\hbox{2017}% this sets a box with content 2017, you can access its width with \wd0
\makebox[\wd0][l]{Approved by: Prof. C. Xavier}
\end{titlepage}
\end{document}
Responder2
Você pode usar um tabular
ambiente dentro do ambiente centralizado:
\documentclass[]{report}
\begin{document}
\begin{titlepage}
\centering
{\huge Title}\par
\vspace{1cm} % change this to your liking!
{\Large Doctoral}\par
\vspace{1cm} % change this to your liking!
\begin{tabular}[t]{@{}l@{}}
2017\\
Approved by:
\end{tabular}
\end{titlepage}
\end{document}
Mas você tem certeza que quer isso? Juntamente com um nome, o espaçamento parece um pouco estranho: