谢邀。
数模论文有模板么?我记得没有吧。
按照基本格式要求用最基本的article类就可以写了。不用特别的搞什么。
我常用的一个空article类大概这样。这完全不是一个模板,就是用默认的article类搭了一个论文的架子。
要说明的就是:
1. 如果是中文论文比如国赛,记得配置xecjk
2. 按照需求调页边距
3. 最重要的是学习本质举一反三,而不是遇到问题就搜现成模板。
% Type of publication documentclass[a4paper,10pt]{article} %---------------------------------------- usepackage[T1]{fontenc} usepackage[latin1]{inputenc} %usepackage{ngerman} usepackage[nooneline,bf]{caption} usepackage{amsmath} usepackage{amssymb} usepackage[dvips]{graphicx} usepackage{epsfig} usepackage{mdwlist} usepackage{xcolor} usepackage{hyperref} usepackage{booktabs} %----------------------------------------- % Page Setup exth2eight24cm extwidth17cm columnsep6mm oddsidemargin-5mm evensidemargin-5mm headheight0cm headsep0cm opmargin0cm parindent0cm pagestyle{plain} egin{document} itle{The Article Template} author{Author}
ewtheorem{definition}{Def.}[section]
ewtheorem{theorem}{Th.}[section]
enewcommand hesubsubsection{Alph{subsubsection}} date{} maketitle egin{center} Author affiliations. end{center} egin{abstract} The Abstract. end{abstract} extbf{Keywords } Key Words. vspace{4ex} setlength{parskip}{0.5em} section{Introduction} Introduction ibliographystyle{plain} ibliography{references} end{document}