需要在我的标题上做一个框

需要在我的标题上做一个框

如何在我的标题上添加方框? 只是在我的标题页上添加一个方框(如图所示)?

亲切的问候在此处输入图片描述

答案1

可以通过简单tabular使用全文宽度来完成:

\documentclass{article}
\usepackage{array}%

\begin{document}
\noindent
\begingroup
  \bfseries
  \renewcommand*{\arraystretch}{1.2}%
  \begin{tabular}{|*{2}{p{.5\dimexpr\linewidth-4\tabcolsep-2\arrayrulewidth\relax}}|}
    \hline
    Received: & Approved: \\
              & Date: \\
              & Signature: \\
    (for the instructor) & \\
    \hline
  \end{tabular}%
\endgroup
\end{document}

结果

评论:

  • array会改变有关规则的计算。我已将其添加为独立项,无论是否已加载(因为它始终已加载)。

框架\fbox

类似,但包含来自以下行\fbox

\documentclass{article}

\begin{document}
\noindent
\fbox{%
  \bfseries
  \parbox{\dimexpr\linewidth-2\fboxsep-2\fboxrule\relax}{%
    \renewcommand*{\arraystretch}{1.2}%
    \begin{tabular}{@{} *{2}{p{.5\dimexpr\linewidth-2\tabcolsep\relax}} @{}}
      Received: & Approved: \\
                & Date: \\
                & Signature: \\
      (for the instructor) & \\
    \end{tabular}%
  }%
}

\medskip

\noindent
\fbox{%
  \bfseries
  \renewcommand*{\arraystretch}{1.2}%
  \begin{tabular}{@{} *{2}{p{.5\dimexpr\linewidth-2\fboxsep-2\fboxrule-2\tabcolsep\relax}} @{}}
    Received: & Approved: \\
              & Date: \\
              & Signature: \\
    (for the instructor) & \\
  \end{tabular}%
}
\end{document}

评论:

  • \parbox更新\linewidth当前可用宽度。

结果

相关内容