答案1
有几种可能的方法可以实现这一点:
使用表格(表)和新的列类型
这里:https://tex.stackexchange.com/a/12712/127845
它允许列像
p{<width>}
列一样但居中C{<width>}
。因此,使用表格和表格可以得到 MWE\documentclass{scrartcl} \usepackage{array,booktabs} \newcoumntype{C}][1]{% >{ \centering\ket\newline\\\arraybackslash\hspace{0pt}}m{#1}} \begin{document} \thispagestyle{empty} \vspace*{0pt} \begin{table} \centering \begin{tabular}{C{1\textwidth} \toprule[3ex] {\LARGE Musterklausur Nr.1 } \\[2ex] {\large L\"osungsvorschlag } \\[3ex] \bottomrule \end{tabular} \end{table} \vfill \end{document}
使用该
tcolorbox
包可以调整框架和间距\usepackage{tcolorbox} \begin{document} \begin{tcolorbox}[% boxrule=0pt, % width of all parts of the frame toprule=2pt, % width of top part frame bottomrule=2pt, % width of bottom part frame top=3ex, % vspace between content and frame top bottom=3ex % vspace between content and frame bottom after=\vspace{3ex}, % set space after box arc=0pt, % more or less rounded corners (now sharp) oversize % make it a bit more then textwidth ] \centering {\LARGE Musterklausur Nr.1 } \\[2ex] {\large L\"osungsvorschlag } \end{tcolorbox} \end{document}
colback
可以使用和键更改框和框架的颜色colframe
。 tcolorbox 文档中解释了很多可能性:
http://mirrors.concertpass.com/tex-archive/macros/latex/contrib/tcolorbox/tcolorbox.pdf)
答案2
对于标题周围的规则(我假设您指的是它们),您可以使用\rule{<width>}{<height}
。例如\rule{\linewidth}{1pt}
。