如何制作带有分隔线的双列文本以及单列标题和结束文本

如何制作带有分隔线的双列文本以及单列标题和结束文本

在此处输入图片描述

我如何在 LaTeX 中将文件生成为 PDF。我已完成以下操作

\documentclass[a4paper,twocolumn]{article}
\usepackage[margin=0.5in]{geometry}

但是我遇到了以下问题。我想将标题放在带有粗线的框内。此外,如果我使用该\maketitle命令,日期会显示在标题下方,而我并不想这样。

我还想用指定厚度的线来分隔列。

命令行将会很有用。

答案1

干得好。

\documentclass[a4paper]{article}
\usepackage[margin=0.5in]{geometry}
\usepackage{lipsum}
\usepackage{multicol} % Works a bit better than twocolumn

\setlength{\columnseprule}{0.4pt} % thickness of line between cols
\setlength{\fboxrule}{2pt} % thickness of lines drawn by \fbox

\newcommand*\boxedtext[1]{%
  \begin{center}
    \fbox{\Huge\textbf{#1}}
  \end{center}
}

\begin{document}
\boxedtext{Lorem ipsum dolor sit amet}
\medskip % A little vertical space after the title

\begin{multicols}{2}
\lipsum[1-8]
\end{multicols}

\vfill % Align the rest against the bottom of the current page
\boxedtext{END}

\end{document}

在此处输入图片描述

相关内容