我见过如此美丽的序言(从我的一个学生朋友那里得到了 PDF,需要帮助来创建如此美丽的标题页。黑色带是为了让图片匿名,以隐藏我朋友的身份。
但我只需要为我的导师准备一个如此漂亮的标题页。我们中没有人再有序言了 :(
亲切的问候
并提前致以最诚挚的谢意。
这个论坛允许问这样的问题吗?
答案1
这个用于microtype
字母间距。
\documentclass{article}
\pagestyle{empty}% for cropping
\usepackage{microtype}
\begin{document}
\begingroup
\noindent
\bfseries
\begin{tabular}{|p{\dimexpr0.5\textwidth-2\tabcolsep}p{\dimexpr0.5\textwidth-2\tabcolsep}|}
\hline
Received: & Approved: \cr
& Date: \cr
& Signature: \cr
(for the instructor) & \cr
\hline
\end{tabular}
\endgroup
\bigskip
\begingroup
\centering
\obeylines
\scshape
\lsstyle
\large Modern Box
\LARGE Aflering 3
\Large John Boxer
\large Institute for Boxes
\large Box University
\large 26/04/2014
\endgroup
\end{document}
答案2
对于标题,您可以使用tabular
(或tabularx
) 环境。对于其余部分,只需使用center
带有环境\scshape
和一些字体尺寸开关即可。
\documentclass{article}
\usepackage{tabularx}
\begin{document}
\noindent
\begin{tabularx}{\textwidth}{|XX|}
\hline
\textbf{Received:} & \textbf{Approved:}\\
& \textbf{Date:}\\
& \textbf{Signature:}\\
\textbf{(for the instructor)} & \\
\hline
\end{tabularx}
\begin{center}
\scshape Institute\\
\Large Course Name\\
\large Author\\
\medskip
\small \today
\end{center}
\end{document}