使用 \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 方法,我不能使用 strip 环境和 multicol 包
答案1
环境很简单strip
,形成cuted
包:
\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}