我正在为我的论文创建标题页,我几乎完成了,但我无法像我想要的文本那样进行对齐。
这就是我尝试做的:
\begin{align*}
&\text{Relatore} &\text{Lureando} \\
&\text{Chiar.mo nameofprof} &\text{nameofstud}\\
& &\text{Matricola: 0089898}
\end{align*}
但对齐不正确。我做错了什么?
我也尝试过这个:
\large{Relatore} \hfill \large{Lureando} \\
\large{prof} \hfill \large{stud}\\
\hfill \large{Matricola: 0089898}
答案1
一些选项:
\documentclass[]{article}
\begin{document}
\noindent
\begin{tabular}[t]{@{}l@{}}
Relatore\\
Prof. C. Xavier
\end{tabular}
\hfill
\begin{tabular}[t]{@{}l@{}}
Laureanda\\
Foo\\
Bar
\end{tabular}
Or\bigskip
\noindent
Relatore \hfill Lureando\\
Prof. C. Xavier \hfill Foo\\
\mbox{}\hfill Bar
Or\bigskip
\noindent
\begin{tabular*}{\textwidth}[]{@{}l@{\extracolsep{\fill}}l@{}}
Relatore & Laureanda\\
Prof. C. Xavier & Foo\\
& Bar
\end{tabular*}
Or\bigskip
\noindent
\begin{tabular*}{\textwidth}[]{@{}l@{\extracolsep{\fill}}r@{}}
Relatore & Laureanda\\
Prof. C. Xavier & Foo\\
& Bar
\end{tabular*}
\end{document}
答案2
您可以使用 op 对齐以及第二个小页面中的所有内容来执行minipage
此t
操作flushright
:
\documentclass{article}
\begin{document}
\noindent% <- Thanks Mico!
\begin{minipage}[t]{0.5\linewidth}
Relatore
Chiar.mo nameofprof
\end{minipage}%
\begin{minipage}[t]{0.5\linewidth}
\flushright
Lureando
nameofstud
Matricola: 0089898
\end{minipage}
\end{document}
上面的输出是这样的: