我是 LaTeX 的新手,遇到了一个小问题:
我如何才能将“姓名名称”与“st.gr FAF”对齐到同一行,将“教授姓名”与“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}