当前位置:   article > 正文

【数学建模美赛】【LaTeX】论文模板_latex数学论文模板

latex数学论文模板

数学建模美赛】【LaTeX】论文模板

0 引言

在数学建模竞赛中,往往论文的版面与美观占一定的分数,而大多数都利用word排版,因为word排版简单方便,但在最后转pdf时会出现版面的错乱情况,所以这会影响最终的成绩。因此我们可以采用LaTeX进行论文的排版,使论文的版面更加自然。LaTeX排版需要一定的编程基础,这往往会劝退大多数的参赛者。但在美赛中有mcmthesis包,它是一个基本的美赛框架,我们只需简单的套用模板就可以实现高质量排版,而国赛可以在此基础上更改就好。

1 美赛模板的导包和基本设置

\documentclass{mcmthesis}%美赛模板
\mcmsetup{CTeX = false,   % 使用 CTeX 套装时,设置为 true
	tcn = 2023-2, problem = A,%队伍控制号码,接受一个字符串作为值;选题,接受一个字符串作为值;
	sheet = true, %为真时将输出摘要页,否则不输出;默认为 true。
	%color = red,  %设置控制页的题目号的颜色
	titleinsheet = true, %为真时将在摘要页输出标题,否则不输出;默认为 false。
	keywordsinsheet = true,%为真时将在摘要页输出关键字,否则不输出;默认为 false。
	titlepage=false,%为真时将输出标题页,否则不输出;默认为 true。
	abstract=true}%为真时将在标题页输出摘要和关键词,否则不输出;默认值为 true。
\usepackage[T1]{fontenc}%fontenc 宏包是用来配合传统的LaTeX字体的,如上表中的一些传统字体宏包。如果使用xelatex编译方式,并使用fontenc宏包调用ttf或otf格式字体,就不要再使用fontenc宏包. 
\usepackage{palatino}  %控制正文字体,若是不喜欢可以注释掉。
\usepackage{lipsum} %输入中文乱数假文。乱数假文就是大段无意义的文字,常用来测试排版效果。
\usepackage{amsmath}%定义数学公式的宏包
\usepackage{amssymb}%也是定义数学公式的一个宏包,对amsmath进行补充
\usepackage{subfig}%排列图片的宏包
\usepackage{float}%避免浮动体宏包
\usepackage{indentfirst} %设置首行自动缩进
\newcommand{\itemEq}[1]{%
	\begingroup%
	\setlength{\abovedisplayskip}{0pt}%
	\setlength{\belowdisplayskip}{0pt}%
	\parbox[c]{\linewidth}{\begin{flalign}#1&&\end{flalign}}%
	\endgroup}%itemiz里面套equation
\setlength{\parindent}{2em}
\title{Type Your Paper Title HERE  }  %论文的题目
\author{A \and B \and C}
\date{\today}

\makeatletter
\renewcommand*\l@section{\@dottedtocline{1}{12pt}{12pt}}
\newcommand{\upcite}[1]{\textsuperscript{\textsuperscript{\cite{#1}}}}
\makeatother
%一些LATEX内部命令含有@字符,如\@addtoreset,如果需要在文档中使用这些内部命令,就需要借助于另两个命令\makeatletter和\makeatother.可以实现公式编号与节号的关联。
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

在这里插入图片描述
在这里插入图片描述

2 模板的正文

\begin{document}    %文档的开头
	\begin{abstract} %此处默认全部使用英文,若要使用中文显示,需要换成:\documentclass{ctexart}
		\small
        %%你的摘要内容
	\begin{keywords}   %关键字
			\footnotesize %设置字体
		%%关键字
	\end{keywords}
	\end{abstract}
	
	\maketitle  %显示正文中出现了标题和作者
	\tableofcontents %显示目录
	\clearpage  %在latex中遇到很长的英文单词,仅在单词之间的”空格“初断行无法生成疏密程度均匀段落时,就会考虑从单词中间断开。对于绝大多数单词,latex能够找到合适的断词位置,在断开的行尾加上连字符-。
	\normalsize  %重新定义默认字体大小
	
	%1.引言
	\section{Introduction}
    \subsection{ Question Restatement}
    \subsubsection{title}
    \subsection{Analysis of the Question}
    
    %2.假设和理由
	\section{ Assumptions and Justifications}
	
	%3.模型1
	\section{ Model 1}
	\subsection{ Subtitle}
	%4.模型2
	\section{Model 2}
	%5.模型x
	\section{Model x}
	
	%6.优点和缺点
	\section{Strengths and Weaknesses}
	
	%7.结论
	\subsection{Conclusion}

    %8.策略建议信
	\section{Strategy Recommendation and Conclusions}
	\noindent Theme: %%题目
	\begin{letter}{Dear Director,}
        
        %%建议信的正文
		
		\vspace{\parskip}
		Sicerely yours,\\
		Your friends
	\end{letter}
	
	%9.文献
	\begin{thebibliography}{99}
		\bibitem{1}
		\bibitem{2}
		\bibitem{3}
		\bibitem{4}
	\end{thebibliography}
	
	%附录,但美赛规定不添加附录,所以以下可以忽略
	\begin{appendices}
		\section{Code for Part 3.1}
		\begin{lstlisting}[language=python]
			import pandas as pd
			import numpy as np
			import matplotlib.pyplot as plt
		\end{lstlisting}
		
		\section{Code for Part 3.3}
		\begin{lstlisting}[language=python]
			import pandas as pd
			import numpy as np
			import matplotlib.pyplot as plt	
		\end{lstlisting}	
	\end{appendices}


\end{document}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77

在这里插入图片描述
在这里插入图片描述

以上只是美赛的一个整体框架,但还需要掌握表格、图片及公式的引入,而这些可以参考数学建模美赛【LaTeX】公式、表格、图片

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/178970?site
推荐阅读
相关标签
  

闽ICP备14008679号