答案1
有多种方法可以实现这一点。下面有一个固定宽度(.5\linewidth
)框,用于设置地址:或使用tabular
:
\documentclass{article}
\begin{document}
\begin{center}
\huge\bfseries Name
\end{center}
\noindent
\makebox[.5\linewidth][l]{\bfseries Address:}%
\textbf{Email:}
\noindent
\begin{tabular}{@{} p{.5\linewidth} @{} l }
\bfseries Address: & \bfseries Email:
\end{tabular}
\end{document}