Como colocar texto após o autor no título

Como colocar texto após o autor no título

Tenho uma dúvida sobre como colocar o texto após o autor no meu documento. Este é o meu código:

\documentclass[12pt, fleqn]{report}
\usepackage[utf8]{inputenc}
\usepackage[english,greek]{babel}
\usepackage{graphicx}
\graphicspath{{images/}}
\usepackage{afterpage}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[load=accepted]{siunitx}
\usepackage{caption}
\usepackage{ragged2e}
\usepackage{graphicx}
\usepackage{afterpage}
\usepackage{fancyhdr}
\usepackage{lipsum}
\usepackage{mathptmx}
\usepackage{anyfontsize}
\usepackage{t1enc}

\newcommand{\R}{\mathbb{R}}
\newcommand{\S}{\mathbb{S}}

\usepackage{longtable}

\usepackage{titlesec}


\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}


\fancyhf{} % clear all header and footer fields


 \usepackage{titling}
 \setlength\droptitle{-5cm}
 \renewcommand\maketitlehooka{\raisebox{-0.35\height}
  {\hspace*{-3cm}\includegraphics[width=4cm]{TUC}}\quad\sffamily 
  \begin{tabular}{l}  {\selectlanguage{english}{TECHNICAL UNIVERSITY OF 
  CRETE}}\\[3ex]{\selectlanguage{english} SCHOOL OF PRODUCTION ENGINEERING 
  AND  MANAGEMENT}\end{tabular}\vskip 24ex}


\renewcommand\maketitlehookb{\vskip 8ex}
 \renewcommand\maketitlehookc{\vfill}


\selectlanguage{english}

 \title{good}

 \author{good\\\\}




 \date{Fall Semester 2017}
  \fancyfoot[R]{\thepage\}

 \begin{document}
 \selectlanguage{english}
 \maketitle
 \pagenumbering{gobble}

Incluí uma imagem com texto ao lado no início da primeira página e posteriormente coloquei o título e a seção do autor. Minha dúvida é como posso escrever mais algum texto após a seção do autor, como mais alguns detalhes sobre a aula, o projeto e etc.

Obrigado

Responder1

Por que não simplesmente adicionar uma quebra de linha ( //) depois de author ?

\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\begin{document}
     \title{good}

     \author{
         good \\[3ex]
         \begin{minipage}[t]{7cm}
             \small
            \textsc{Technical University of Crete}
         \end{minipage} \quad
         \begin{minipage}[t]{7cm}
             \small
            \textsc{School of Production Engineering and  Management}
         \end{minipage}
    }
    \maketitle
\end{document}

informação relacionada