如何对齐两个盒子?

如何对齐两个盒子?

我为我的硕士论文找到了以下模板,这是封面的预览:

  • 教授(顾问)
  • 联合教授(第二顾问)
  • 候选人

在此处输入图片描述

问题是我想将框“Candidato”与“Relatore”对齐,但是我不知道如何修改以下部分(有两个不同的框,BoxRelatori 和 BoxCandidati,用 tabular 命令定义,第一个与“l”对齐,第二个与“r”对齐):

     \def\BoxRelatori{%
        \begin{tabular}[t]{l}%
        \hbox{\ifclassica\else\large\fi
              \textbf{\protect\@nomerelatore}}\\[.6ex]
        \hbox{\large\textrm{\protect\@principaladviser}}%
        \ifx\@secondadviser\empty \else
           \ifclassica
              \ifx\@thirdadviser\empty
                 \ifx\@secondadviser\empty\else
                       \\[1.5ex]\textbf{\Correlatore:}%
                 \fi
              \else
                 \\[1.5ex]\textbf{\Correlatori:}%
              \fi
           \fi
           \\[.6ex]\hbox{{\large\textrm{\protect\@secondadviser}}}%
        \fi
        \ifx\@thirdadviser\empty \else
           \\[.6ex] \hbox{{\large\textrm{\protect\@thirdadviser}}}%
        \fi
        \end{tabular}%
     }%
  \def\BoxCandidati{%
     \begin{tabular}[t]{r}%
        \hbox{\unless\ifclassica\large\fi
           \textbf{\protect\@nomecandidato}}\\[.6ex]
           \hbox{\large\textrm{\protect\@author}}%
           \ifx\@secondauthor\empty
           \else
              \\\hbox{\large\textrm{\protect\@secondauthor}}%
           \fi
           \ifx\@thirdauthor\empty
           \else
              \\\hbox{\large\textrm{\protect\@thirdauthor}}%
           \fi
     \end{tabular}%

第 341-376 行:参见此处的文件https://pastebin.com/xHYTr0Th

主 .tex 文件在此处:https://pastebin.com/rraW1jaj

答案1

像这样吗?

\documentclass{article}
\begin{document}

\noindent
\begin{minipage}[t]{0.49\textwidth}
\textbf{Relatore:}\\
Ch.mo Prof.\,Ing.\,Francesco da Assisi

\medskip
\textbf{Correlatore:}\\
Ing.\ Umberto Eco
\end{minipage} 
\hfill
\begin{minipage}[t]{0.49\textwidth}
\raggedleft
\textbf{Candidato:}\\
Alessandro da Macedonia\\
Persepolis
\end{minipage}

\end{document}

在此处输入图片描述

答案2

我认为没有必要构建一个复杂的模板。两个minipage环境,第一个环境内容右侧不齐,第二个环境内容左侧不齐,就足够了。

我不清楚小页面应该水平还是垂直堆叠。以下屏幕截图显示了两种可能性的解决方案。

在此处输入图片描述

\documentclass{article}
\begin{document}

\noindent
\begin{minipage}{\textwidth}
\obeylines
\raggedright
\textbf{Relatore:}
Ch.mo Prof.\ Ing.\ Francesco da Assisi

\medskip
\textbf{Correlatore:}
Ing.\ Umberto Eco
\end{minipage} 
\begin{minipage}{\textwidth}
\raggedleft
\obeylines
\textbf{Candidato:}
Alessandro da Macedonia
Persepolis
\end{minipage}

\bigskip\bigskip

\noindent
\begin{minipage}[t]{0.5\textwidth}
\obeylines
\raggedright
\textbf{Relatore:}
Ch.mo Prof.\ Ing.\ Francesco da Assisi

\medskip
\textbf{Correlatore:}
Ing.\ Umberto Eco
\end{minipage}%
\begin{minipage}[t]{0.5\textwidth}
\raggedleft
\obeylines
\textbf{Candidato:}
Alessandro da Macedonia
Babylon
\end{minipage}

\end{document}

相关内容