\twocolumnfalse は新しいページを作成します

\twocolumnfalse は新しいページを作成します

\twocolumnfalse を使用すると、新しいセクションのテキストは新しいページで始まり、同じページから開始する必要があります。私の場合は、このメソッドを \twocolumnfalse で保存するだけですが、MWE では別の方法で実行します。

 \documentclass[twocolumn]{memoir}
 \usepackage{blindtext}
 \usepackage{polyglossia}[2014/05/21]           
 \setmainlanguage[babelshorthands=true]{russian}  
 \setotherlanguage{english}                       
 \setmonofont{Courier New}
 \newfontfamily\cyrillicfonttt{Courier New}
 \ifXeTeX
 \defaultfontfeatures{Ligatures=TeX,Mapping=tex-text}
 \else

 \defaultfontfeatures{Ligatures=TeX}
 \fi
 \setmainfont{Times New Roman}
 \newfontfamily\cyrillicfont{Times New Roman}
 \setsansfont{Arial}
 \newfontfamily\cyrillicfontsf{Arial}  


 \begin{document}
 \blindtext
 \twocolumn[
 \begin{@twocolumnfalse}
    \begin{center}
        {REFERENCES}
    \end{center}
    
    \label{references}
\end{@twocolumnfalse}
]

\end{document}

そのはず: ここに画像の説明を入力してください

今は何ですか: ここに画像の説明を入力してください

ps \twocolumnfalseメソッドを正確に使用する必要があります。ストリップ環境とmulticolパッケージは使用できませんでした。

答え1

環境は非常にシンプルでstripcutedパッケージを形成します。

\documentclass[twocolumn]{memoir}
 \usepackage{blindtext}
 \usepackage{polyglossia}[2014/05/21]
 \setmainlanguage[babelshorthands=true]{russian}
 \setotherlanguage{english}
 \setmonofont{Courier New}
 \newfontfamily\cyrillicfonttt{Courier New}
 \ifXeTeX
 \defaultfontfeatures{Ligatures=TeX,Mapping=tex-text}
 \else

 \defaultfontfeatures{Ligatures=TeX}
 \fi
 \setmainfont{Times New Roman}
 \newfontfamily\cyrillicfont{Times New Roman}
 \setsansfont{Arial}
 \newfontfamily\cyrillicfontsf{Arial}
\usepackage{cuted}

 \begin{document}
 \blindtext
 \begin{strip}
    \begin{center}
        {REFERENCES}
    \end{center}
\Blindtext[6]
    \label{references}
\end{strip}
\Blindtext[2}

\end{document} 

ここに画像の説明を入力してください ここに画像の説明を入力してください

関連情報