% 请在此填写控制号、题号和标题,年份不需要填(自动以当前电脑时间年份为准)
\usepackage[1234567]{easymcm}\problem{A}
\usepackage{palatino} % 这个是COMAP官方杂志采用的字体,如不需要可注释掉,以使用默认字体
\title{An MCM Paper Made by Team 1234567} % 标题
\section{Introduction}
\subsection{Problem Background}
Here is the problem background ...
Two major problems are discussed in this paper, which are:
\begin{itemize}
\item Doing the first thing.
\item Doing the second thing.
\end{itemize}
\subsection{Literature Review}
A literatrue\cite{1} say something about this problem ...
\subsection{Our work}
We do such things ...
\begin{enumerate}[\bfseries 1.]
\item We do ...
\item We do ...
\item We do ...
\end{enumerate}
\section{Preparation of the Models}
\subsection{Assumptions}
\subsection{Notations}
The primary notations used in this paper are listed in \textbf{Table \ref{tb:notation}}.
\begin{table}[!htbp]
\begin{center}
\caption{Notations}
\begin{tabular}{cl}
\toprule
\multicolumn{1}{m{3cm}}{\centering Symbol}
&\multicolumn{1}{m{8cm}}{\centering Definition}\\
\midrule
$A$&the first one\\
$b$&the second one\\
$\alpha$ &the last one\\
\bottomrule
\end{tabular}\label{tb:notation}
\end{center}
\end{table}
\section{The Models}
\subsection{Model 1}
\subsubsection{Detail 1 about Model 1}
\begin{equation}
e^{i\theta}=\cos\theta+i\sin\theta.
\end{equation}
\section{Strengths and Weaknesses}
\subsection{Strengths}
\begin{itemize}
\item First one...
\item Second one ...
\end{itemize}
\subsection{Weaknesses}
\begin{itemize}
\item Only one ...
\end{itemize}
\begin{thebibliography}{99}
\addcontentsline{toc}{section}{References} %引用部分标题("Refenrence")的重命名
\bibitem{1}Elisa T. Lee, Oscar T. Survival Analysis in Public Health Research. \emph{Go. College of Public Health}, 1997(18):105-134.
\bibitem{2}Wikipedia: Proportional hazards model. 2017.11.26. \texttt{\\https://en.wikipedia.org/wiki/Proportional\_{}hazards\_{}model}
\end{thebibliography}
This MATLAB program is used to calculate the value of variable $a$.
\begin{lstlisting}[language=Matlab, caption=\texttt{temp.m}]
a = 0;
for i = 1:5
a = a + 1;
end
\end{lstlisting}
This LINGO program is used to search the optimize solution of 0-1 problem.
\begin{lstlisting}[language=Lingo, caption=\texttt{temp.lg4}]
model:
sets:
WP/1..12/: M, W, X;
endsets
data:
M = 2 5 18 3 2 5 10 4 11 7 14 6;
W = 5 10 13 4 3 11 13 10 8 16 7 4;
enddata
max = @sum(WP:W*X);
@sum(WP: M * X)<=46;
@for(WP: @bin(X));
end
\end{lstlisting}