Texto ajustado a la izquierda y al centro en la primera página de la tesis.

Texto ajustado a la izquierda y al centro en la primera página de la tesis.

Estoy preparando la primera página de mi tesis y quiero que se vea como se muestra a continuación:

                               Title
                              Doctoral
                               2017
                               Approved by:

Por lo tanto, quiero que todos estén centrados, pero que solo queden ajustados '2017' y 'Aprobado por'. Intenté lo siguiente pero no funcionó:

    \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}

¿Podría decirme cómo puedo solucionar este problema?

Respuesta1

Tengo otra idea de lo que podrías querer y cómo lograrlo. Según tengo entendido, desea que 2017 esté centrado normalmente, pero desea que la siguiente línea quede alineada a la izquierda con ese 2017 centrado.

Podrías poner el contenido en un \makeboxancho cuyo ancho establezcas en la línea que deseas que esté correctamente centrada (en este 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}

ingrese la descripción de la imagen aquí

Respuesta2

Podrías usar un tabularentorno dentro del entorno centrado:

\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}

ingrese la descripción de la imagen aquí

¿Pero estás seguro de que quieres eso? Junto con un nombre, el espacio parece un poco extraño en mi humilde opinión:

ingrese la descripción de la imagen aquí

información relacionada