Numeração romana e arábica em ambiente combinado?

Numeração romana e arábica em ambiente combinado?

Estou montando um diário acadêmico para minha sociedade de história estudantil e estou me perguntando se posso ter diferentes artigos no ambiente combinado exibidos como números romanos ou arábicos. A introdução editorial deverá ser preferencialmente em algarismos romanos e o restante dos artigos em árabe.

No momento, o código é assim, menos algumas coisas desnecessárias, como ambientes de blockquote, títulos reais, etc.:

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

Como? Eu não consigo entender isso. Eu preferiria não ter que usar o comando de seção e ter grandes cabeçalhos de seção "EDITORIAL" e "ARTIGOS" no toc com números na frente deles, como um diário STEM. Sou estudante de humanidades e este é meu primeiro projeto LaTeX, então me perdoe se esta é uma resposta simples.

informação relacionada