저는 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}