Combine 環境でのローマ字とアラビア数字の番号付け?

Combine 環境でのローマ字とアラビア数字の番号付け?

私は学生歴史学会の学術雑誌を作成中ですが、結合環境でさまざまな論文をローマ数字またはアラビア数字で表示できるかどうか疑問に思っています。編集者による序文はローマ数字で、残りの論文はアラビア数字で表示するのが望ましいです。

現時点では、blockquote 環境や実際のタイトルなどの不要な部分を除いたコードは次のようになります。

%Preamble
\documentclass[10pt, twoside]{combine}

% 6.5x9.5in, 1in margin
\usepackage{geometry}                       
\geometry{paperheight=9.5in,paperwidth=6.5in,margin=1in}          

\usepackage{graphicx}               

\usepackage{amssymb}

% Header/Footer
\usepackage{fancyhdr}

% Spacing
\usepackage{setspace}
\onehalfspacing

\usepackage{palatino}

%Date
\date{}


%%%%%%%%

\begin{document}

%title info
\title{\Huge \emph{The Title}\\
\Large Volume 1, Issue 1 (Winter 2015)}
\author{}

%title page
\maketitle
\fancyhf{}
\thispagestyle{empty}

%Publishing info page
\newpage
\thispagestyle{empty}
\fancyhf{}

{\footnotesize
\noindent

Yadda yadda ISSN}

% Table of contents
\newpage
{\small
\tableofcontents
\thispagestyle{empty}
}

%empty page
\newpage
\fancyhf{}
\thispagestyle{empty}

%%%%%%

\begin{papers}

\coltoctitle{Introduction} 
\coltocauthor{The Dude, Editor-in-Chief} 
\label{Introduction}
\import{intro}
% I'd like this in roman numerals - paper as well as toc entry

\coltoctitle{Title One} 
\coltocauthor{Author One} 
\label{TitleOne}
\import{TitleOne}
% And then this one and the following as arabic numbers

\coltoctitle{Title Two} 
\coltocauthor{Author Two} 
\label{TitleTwo}
\import{TitleTwo}

\end{papers}

%%%%%%%%

\end{document}

どうすればいいでしょうか? 私にはこれが理解できないようです。セクション コマンドを使用するのではなく、STEM ジャーナルのように、先頭に数字が付いた大きな「EDITORIAL」および「ARTICLES」セクション ヘッダーを目次に表示したいです。私は人文科学の学生で、これが初めての LaTeX プロジェクトなので、簡単な答えでしたらご容赦ください。

関連情報