組合環境中的羅馬和阿拉伯編號?

組合環境中的羅馬和阿拉伯編號?

我正在為我的學生歷史學會整理一份學術期刊,並想知道我是否可以在組合環境中將不同的論文顯示為羅馬或阿拉伯數字。社論介紹最好用羅馬數字,其餘論文用阿拉伯數字。

現在,這就是程式碼的樣子,減去了一些不必要的東西,例如區塊引用環境、實際標題等:

%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}

怎麼辦?我似乎無法弄清楚這一點。我寧願不必使用section命令,並且在目錄中擁有大的“EDITORIAL”和“ARTICLES”部分標題,前面有數字,就像STEM期刊一樣。我是人文學科的學生,這是我的第一個 LaTeX 項目,所以如果這是一個簡單的答案,請原諒我。

相關內容