组合环境中的罗马和阿拉伯数字?

组合环境中的罗马和阿拉伯数字?

我正在为学生历史社团整理一份学术期刊,想知道我是否可以在组合环境中将不同的论文显示为罗马数字或阿拉伯数字。编辑介绍最好使用罗马数字,其余论文则使用阿拉伯数字。

现在,代码看起来是这样的,减去了一些不必要的东西,如 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}

怎么办?我似乎想不出这个。我宁愿不必使用 section 命令,也不想在目录中使用大的“编辑”和“文章”部分标题,前面有数字,就像 STEM 期刊一样。我是一名人文学科的学生,这是我的第一个 LaTeX 项目,所以如果这是一个简单的答案,请原谅我。

相关内容