텍스트 정렬 문제

텍스트 정렬 문제

저는 LaTeX를 처음 접했는데 약간의 문제가 있습니다.영상

"Name Name"을 "st.gr FAF"와 같은 줄에 정렬하고 "Prof Name"을 "lect.univ"와 같은 줄에 정렬하려면 어떻게 해야 합니까? 현재 나는 다음을 가지고 있습니다 :

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

답변1

\hfill같은 내부에서 사용minipage

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

여기에 이미지 설명을 입력하세요

minipage그렇지 않으면 전혀 사용하지 마십시오

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

관련 정보