具有特定类文件的双列格式

具有特定类文件的双列格式

以下是一个示例 LaTex 代码:

\pdfoutput=1

\documentclass{ws-ijbc}

\begin{document}

\title{Title}

\author{Author}

\maketitle

\begin{abstract}
 Abstract.
\end{abstract}

\section{Test}

This is a test section


\begin{table}[!ht]
\begin{center}
\caption{This is a test table.}
\setlength{\tabcolsep}{10pt}
 \begin{tabular}{@{}rrrr}
  \hline
  $\epsilon$ & $N^{*}$ & $a$ & $b$ \\
  \hline
  0.0001 & 23 & $N^{*} + 3$ & 9.65 \\
  0.1 & 17 & $N^{*} + 2$ & 6.59 \\
  0.6 & 14 & $N^{*} + 2$ & 5.14 \\
  0.9 & 12 & $N^{*}    $ & 2.54 \\
  0.99 &  8 & $N^{*}    $ & 1.59 \\
  0.999 &  6 & $N^{*} + 1$ & 2.04 \\
  \hline
\end{tabular}
\end{center}
\end{table}

\begin{figure}[!t]
\resizebox{\hsize}{!}{\includegraphics{test.jpg}}
\caption{This is a test caption}
\end{figure}

\end{document}

具体的.cls文件和图片可以在这里找到:

http://www.worldscientific.com/page/ijbc/submission-guidelines

我的问题:使用特定的类文件获取双列文档的最佳和最有效的方法是什么?

提前感谢并祝圣诞快乐!

答案1

在此处输入图片描述

只需放入\twocolumn序言中。

相关内容