I'm working on a cover to work as a template for my assignments (they have to follow a standard). So I have three elements that have absolute positioning: one (the institution + course) is attached to the top of the page (after margin), the other (the title) is at center and the last is at the bottom.
I'd like to print the author(s) centralized between the institution and the title. If I were to use this template just for one author it would be fine, but, for more than one, alignment has to be done manually.
\renewcommand{\imprimircapa}{
\begin{capa}
\centering
{\MakeUppercase\imprimirinstituicao \\
\MakeUppercase\imprimircurso}
\vspace*{2.5cm}
{\bfseries\MakeUppercase\imprimirautor}
\begin{textblock*}{\textwidth}(3cm,14.5cm)
{\bfseries\MakeUppercase\imprimirtitulo}
\end{textblock*}
\vfill
\imprimirlocal \\ \imprimirdata
\end{capa}
}
Which produces:
Which is fine, but just for this specific amount of authors. Is there a way this can be done with textpos?

