결합 환경에서 로마자와 아랍어 번호 매기기?

결합 환경에서 로마자와 아랍어 번호 매기기?

학생 역사 학회를 위한 학술지를 작성 중인데 결합 환경에서 다양한 논문을 로마자 또는 아라비아 숫자로 표시할 수 있는지 궁금합니다. 편집 소개는 로마 숫자로 작성하고 나머지 논문은 아라비아 문자로 작성하는 것이 좋습니다.

현재 코드는 다음과 같습니다. 인용부호 환경, 실제 제목 등과 같은 불필요한 항목은 제외됩니다.

%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 프로젝트이므로 간단한 대답이라면 용서해 주세요.

관련 정보