Dificuldades de alinhamento de texto

Dificuldades de alinhamento de texto

Sou novo no LaTeX e estou com um pequeno problema:imagem

Como posso alinhar o "Nome Nome" para estar na mesma linha com "st.gr FAF" e "Nome Prof" para estar na mesma linha com "lect.univ". No momento eu tenho o seguinte:

\begin{minipage}{0.4\textwidth}
\begin{flushleft} \Large
\emph{A efectuat:}\\
st.gr. FAF \bigskip

\emph{A verificat:}\\
lect. univ. \bigskip

\end{flushleft}
\end{minipage}
~
\begin{minipage}{0.4\textwidth}
\begin{flushright} {\Large}
{\Large Name Name} \bigskip


{\Large Prof Name}
\end{flushright}
\end{minipage}

Responder1

Use \hfilldentro do mesmominipage

\documentclass{article}

\begin{document}

\noindent
\begin{minipage}{\textwidth}
\Large
\emph{A efectuat:}\\
st.gr. FAF \hfill Name Name\bigskip

\emph{A verificat:}\\
lect. univ. \hfill Prof Name
\end{minipage}

\end{document} 

insira a descrição da imagem aqui

minipageCaso contrário , não use um

\documentclass{article}

\begin{document}

\noindent
\Large
\emph{A efectuat:}\\
st.gr. FAF \hfill Name Name\bigskip

\noindent
\emph{A verificat:}\\
lect. univ. \hfill Prof Name

\end{document} 

informação relacionada