简易的texlive建模中文模板

参加完19年的mathorcup后,整理一下自己写的排版代码。有需要的同学请自取。
文章比较粗糙,只有大体的框架,具体细节请同学自己添加。
我的环境是texlive2018 + texstudio。

\documentclass[12pt]{article}

\usepackage{ctex}
\usepackage[left=15mm,right=15mm,top=15mm,bottom=15mm]{geometry}
%设置页边距,按论文的格式来设置
\usepackage{array}%<{\centering}
\usepackage{amsmath}%矩阵
\usepackage{diagbox}%表格
\usepackage{graphicx}%图片
\usepackage{subfigure} %两张图片并排

\begin{document}

	\thispagestyle{empty} %此页不显示页码数

	\begin{table}[ht]
		\begin{center}
			\begin{tabular}{| c | c |}
				\hline 
				队伍编号  & 900001 \\
				\hline
				题号 & ABCD \\
				\hline 
			\end{tabular}
		
		\bigskip %插入空行
		\bigskip 
		\bigskip 
		\rule[12pt]{16cm}{0.2mm}\\	%生成一条直线,长度和宽度可以自己定
							 
		\end{center}
	\end{table}
	
	\begin{center}
		\zihao{-2}{\heiti{\bfseries 钢水"脱氧合金化"配料方案的优化}}%题目的设定
	\end{center}
 
	%摘要开始部分
	\begin{abstract}
		
		转炉炼钢过程中的脱氧合金化是钢铁冶炼中的重要工艺环节。
		
		\bigskip
		\bigskip \bigskip \bigskip %用不着空行就删掉
		
		\noindent {\bfseries 关键字:} 收得率
		%\noindent顶格命令
		
	\end{abstract}

\newpage %换页

\thispagestyle{empty} %此页不显示页码

\tableofcontents  
%生成目录命令,根据下面的\section、\subsection等命令里的内容自动生成目录

\newpage

\setcounter{page}{1} %页码数
\section{问题重述}
1.

2.

\section{问题分析}
1.

2.

\section{符号说明}

\begin{table}[htbp]
	\begin{center}
		\caption{符号说明} 
		%产生一个表格,内容可以在&两边改,想要加行,可以仿照如下格式
		%  内容 & 内容  \\
		% \hline
		\begin{tabular}{  p{2.5cm}<{\centering} | p{13.5cm}<{\centering} }
			\hline
			m  & 合金的总加入量  \\
			\hline
			t & 转炉终点温度   \\
			\hline 
			$s_{i}$ & 第i种元素的连铸正样   \\
			\hline 
		\end{tabular}
	\end{center}
\end{table}

\section{模型假设}%空行为换行

1.

2.

\section{模型的建立与求解}
1.

2.
\subsection{问题一模型的建立}
1.

2.
\subsubsection{问题一的分析}
1.

2.
\subsubsection{收得率的计算}
1.

2.
\begin{figure}[h]
	
	\centering
	\includegraphics[width=10cm,height=6cm]{T.png} \\  
	%T.png为图片的名称,图片必须放在与此代码的相同的文件夹下
	\caption{收得率与温度的关系} %图片的标题
	\centering
	
\end{figure}

\subsubsection{模型一}
1.模型简介\cite{book1}%引用

\subsection{问题二模型的建立}

\subsubsection{问题二的分析}
 
\begin{thebibliography}{99}
		\ttfamily
		
		\bibitem{book1} 司守奎, 孙兆亮.
		\emph{数学建模算法与应用}
		[M]. 第2版. 北京: 国防工业出版社, 2016.
		
\end{thebibliography}

	
	
\end{document}




`

你可能感兴趣的:(数学建模模板)