双列文章中的单列命令

双列文章中的单列命令

我正在为 CV 创建一个类 (.cls),并且正在加载该类[a4paper,10pt,twocolumn]{article}。但是,我想要一种只包含一列的“标题”部分。它看起来应该像这样: 在此处输入图片描述

我想定义一个新的环境fullwidth来执行此操作。我尝试过:

\newenvironment{fullwidth}[1]{%
  \onecolumn}{\twocolumn}

\RequirePackage{multicol}
\newenvironment{fullwidth}[1]{%
  \begin{multicols}{1}{\endmulticols}

但这些都不起作用。使用onecolumn任何放入环境中的内容时都不会显示,multicols只能切换到两列,因为 multicol 包“认为在这里只放一列是个坏主意”。有什么建议吗?

该文档看起来应类似于(myclass我正在编写的文档类在哪里):

\documentclass{myclass}
\usepackage[utf8]{inputenc}
\begin{document}

\begin{fullwidth}
    A lot of text and the header, printed by the command \makecvtitle .
\end{fullwidth}

Rest of CV in twocolumn
\end{document}

相关内容