Como alinhar um título com um subscrito abaixo dele

Como alinhar um título com um subscrito abaixo dele

No momento, tenho este código:

\documentclass{book}

\renewcommand\sfdefault{cmss}
\renewcommand{\familydefault}{\sfdefault}

\usepackage[top = 2.54cm, bottom = 2.54cm, left = 1.5cm, right = 1.5cm]{geometry}   % en mecanica dejarlo en 2.54x2 y 2.1x2

\usepackage{fancyhdr}  
    \pagestyle{fancy}
    \fancyhf{}


    \renewcommand{\headrulewidth}{0.5pt}
    %\renewcommand{\footrulewidth}{0.5pt}

    \fancypagestyle{plain}{%
        \fancyhf{}
        \fancyhead[R]{\thepage}
        \renewcommand{\headrulewidth}{0pt}
        \renewcommand{\footrulewidth}{0pt}
    }


\usepackage{mathtools}


\begin{document}

\begin{titlepage}
    \begin{center}
        {\scshape\large Some text book} 
        \\ \vspace{0.2cm}
        %

        {\scshape\Huge Algebra and Calculus} \\
        {\small\hspace{11.5cm} $^{\displaystyle\text{\textit{by} Peluche!}}$}

    \end{center}
    This is just some text without indent to let you see the width of the page.
\end{titlepage}
\end{document}

que produz

insira a descrição da imagem aqui

ondeÁlgebra e Cálculoé o título epor Peluche!o autor do documento. Este é um código que escrevi há muito tempo. Para cada "livro didático" tenho que alterar o \hspacepara alinhá-lo com o título do "livro didático". Mas agora, gostaria de alinhá-lo automaticamente para cada "livro didático". Para tentar fazer isso, escrevi o seguinte código:

\documentclass{book}

\renewcommand\sfdefault{cmss}
\renewcommand{\familydefault}{\sfdefault}

\usepackage[top = 2.54cm, bottom = 2.54cm, left = 1.5cm, right = 1.5cm]{geometry}   % en mecanica dejarlo en 2.54x2 y 2.1x2

\usepackage{fancyhdr}  
    \pagestyle{fancy}
    \fancyhf{}


    \renewcommand{\headrulewidth}{0.5pt}
    %\renewcommand{\footrulewidth}{0.5pt}


    \fancypagestyle{plain}{%
        \fancyhf{}
        \fancyhead[R]{\thepage}
        \renewcommand{\headrulewidth}{0pt}
        \renewcommand{\footrulewidth}{0pt}
    }


\usepackage{mathtools}


\begin{document}

\begin{titlepage}
    \begin{center}
        {\scshape\large Some text book} 
        \\ \vspace{0.2cm}
        %
        {\scshape\Huge $\text{Algebra and Calculus}_{\text{\normalfont\small \textit{by} Peluche!}}$}

    \end{center}
    This is just some text without indent to let you see the width of the page.
\end{titlepage}
\end{document}

que produz

insira a descrição da imagem aqui

O problema aqui é o não alinhamento do título ao centro da página por causa do subscrito “por Peluche!”.

A questão é como centralizar o título e como posicionar/alinhar (automaticamente) o nome do autor no/com o final do título. Em outras palavras, como escolher o argumento do \hspaceprimeiro código automaticamente. Obrigado por ler!

Responder1

  • Sua pergunta não está totalmente clara, o que você procura.
  • Não escreva título em ambiente matemático.
  • O autor deve ser escrito como título subscrito ou como é habitual nos livros centralizados abaixo do título do livro?
  • No primeiro caso você pode centralizar o título escrevendo subscriptusando a rlapmacro:

insira a descrição da imagem aqui

\documentclass{book}
\usepackage{lipsum}

\renewcommand\sfdefault{cmss}
\renewcommand{\familydefault}{\sfdefault}

\usepackage[vmargin = 2.54cm, hmargin = 1.5cm]{geometry}   % en mecanica dejarlo en 2.54x2 y 2.1x2+
\usepackage{fancyhdr}
    \pagestyle{fancy}
    \fancyhf{}
    \renewcommand{\headrulewidth}{0.5pt}

    \fancypagestyle{plain}{%
        \fancyhf{}
        \fancyhead[R]{\thepage}
        \renewcommand{\headrulewidth}{0pt}
        \renewcommand{\footrulewidth}{0pt}
    }

\begin{document}

\begin{titlepage}
    \begin{center}
\scshape\large Some text book\

\medskip
        %
\scshape\Huge Algebra and Calculus\rlap{\textsubscript{\small\textit{by Peluche!}}}

    \end{center}
\lipsum[66]
\end{titlepage}

\end{document}

Responder2

Não há necessidade \textno modo matemático, \textsubscriptestá tudo bem. E você pode usar \phantompara preencher a esquerda do título.

\documentclass{book}
\usepackage[top=2.54cm,bottom=2.54cm,left=1.5cm,right=1.5cm]{geometry}
\begin{document}
\newcommand{\xxxx}{\normalfont\small\textit{by} Peluche!}
\begin{titlepage}
\begin{center}
{\scshape\large Some text book}
\\\vspace{0.2cm}
{\textsubscript{\phantom{\xxxx}}{\scshape\Huge Algebra and Calculus}\textsubscript{\xxxx}}
\end{center}
This is just some text without indent to let you see the width of the page.
\end{titlepage}
\end{document}

insira a descrição da imagem aqui

informação relacionada