答案1
答案2
其实还有更简单的方法,使用\documentclass[]{revtex4-1}
with 选项galley
。这样你的文章就只显示在左侧,右侧可以自由地写更正 (@Keks Dose:这就是原因,打印时你可以在右侧插入更正,这真的很方便 :) )。
举个例子:
\documentclass[aip,apl,reprint,floatfix, galley]{revtex4-1}
%Option galley makes the job
\usepackage{graphicx}
\usepackage{color,soul}
\usepackage[hang, centerlast, nooneline, FIGTOPCAP]{subfigure}
\usepackage{siunitx}
\usepackage{hyperref}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\author{M. Rossi}
\affiliation{* University, Institute, Postal Code - City, State}
\author{J. Smith}
\affiliation{* University, Institute 2, PC - City, State}
\title{\textbf{Two column - right side blank}}
\begin{abstract}
\centering
\noindent
Abstract text here.
\end{abstract}
\maketitle
\section{Introduction}
% General intro
\blindtext
~
\begin{center}
\begin{table}[h]
\begin{tabular}{|c|c|c|c|}
\hline
& $x$ & Thickness & $T_{comp}$ \\
\hline
sample 1 & 0.7 & 50.5 & 259 \\
\hline
sample 2 & 0.64 & 58 & 79 \\
\hline
sample 3 & 0.57 & 53 & 150 \\
\hline
\end{tabular}
\caption{Parameters of random samples (see Fig.~\ref{Fig.4}).}
\label{table1}
\end{table}
\end{center}
\bibliography{refarticle}
\end{document}
答案3
恕我直言,下面的代码甚至更简单,并呈现出更好的最终布局,因为它不会影响不需要的文档(页码保持在页面的中心,其他文本遵循原始页面布局等)。
\documentclass{article}
\usepackage{blindtext}
\usepackage{paracol} %... creates empty column
\begin{document}
\title{Easier and better way to set two columns environment and leave one blank}
\author{Joaquim}
\maketitle
\begin{paracol}{2}
\switchcolumn[0]
%--> Obs.:
%... 0: empty column to the right
%... 1: empty column to the left
\blinddocument{} %... dummy text to fill the page
\end{paracol}
\end{document}