我对 \twocolumn 有疑问

我对 \twocolumn 有疑问

请看图1,我没有使用\twocolumn,标题是正确的图片1

当我使用 \twocolumn[mytitile] 时,我想将下面的文本分成两列。但是标题变成了图片 2 而不是图片 1图片2 标题和头部规则的跳过是错误的。如何解决这个问题或者这可能不是一个问题?

这是我的代码。

`\documentclass{ctexart}
 \newcommand{\mtitle}[1]
 {\begin{center}\bfseries\bigskip\zihao{-2}#1\end{center}}
 \newcommand{\mauthorinfo}[2]{\begin{center}\fangsong{\zihao{4}#1} \\ 
 \songti{#2}\end{center}}
 \usepackage{lastpage}%获得总页数

 \usepackage
  [left=1.95cm,right=1.95cm,top=2.15cm,bottom=2.15cm,
   headsep=0.45cm,footskip=0.88cm]{geometry}
  \usepackage{fancyhdr}
  \pagestyle{fancy}

  \lhead{}
  \chead{\zihao{-5}\kaishu 示例示例示例示例}
  \rhead{}
  \lfoot{}
  \cfoot{\thepage}
  \rfoot{}%当前页 of 总页数
   \renewcommand{\headrulewidth}{0.4pt}%改为0pt即可去掉页眉下面的横线
   \renewcommand{\footrulewidth}{0.4pt}%改为0pt即可去掉页脚上面的横线
   \setlength{\headheight}{12.7pt}
   \begin{document}
   \thispagestyle{fancy}
   \twocolumn[
   \mtitle{示例示例示例示例示例示例示例示例示例示例示例示例示例示例示例示例}
    \mauthorinfo{示例示例}{示例示例示例示例示例示例示例示例}
   ]
 \section{模型}
 \end{document}

答案1

可以使用 minipage 复制新页面的效果(忽略顶部和底部的额外空间)。但是,页面和 minipage 都以 \vskip\topskip 开头,这太多了。此外,minipage 的底部会吸收 底部的额外空间\mauthorinfo,因此\hrule

我不明白为什么章节标题要居中。

 \documentclass{ctexart}
 \newcommand{\mtitle}[1]
  {\begin{center}\bfseries\bigskip\zihao{-2}#1\end{center}}
 \newcommand{\mauthorinfo}[2]{\begin{center}\fangsong{\zihao{4}#1} \\ 
 \songti{#2}\end{center}}
 \usepackage{lastpage}%获得总页数

 \usepackage
  [left=1.95cm,right=1.95cm,top=2.15cm,bottom=2.15cm,
   headsep=0.45cm,footskip=0.88cm]{geometry}
  \usepackage{fancyhdr}
  \pagestyle{fancy}

  \lhead{}
  \chead{\zihao{-5}\kaishu 示例示例示例示例}
  \rhead{}
  \lfoot{}
  \cfoot{\thepage}
  \rfoot{}%当前页 of 总页数
   \renewcommand{\headrulewidth}{0.4pt}%改为0pt即可去掉页眉下面的横线
   \renewcommand{\footrulewidth}{0.4pt}%改为0pt即可去掉页脚上面的横线
   \setlength{\headheight}{12.7pt}
   \begin{document}
   \thispagestyle{fancy}
   \twocolumn[\begin{minipage}{\textwidth}\vskip-\topskip% duplicate
    \mtitle{示例示例示例示例示例示例示例示例示例示例示例示例示例示例示例示例}
       \mauthorinfo{示例示例}{示例示例示例示例示例示例示例示例}
   \hrule height0pt\end{minipage}]
 \section{模型}
 \end{document}

演示

相关内容