2024 年美国数学建模更新模版 - 增加视频教程

发布于 2024-01-20 08:24:58

这份模板是美国大学生数学建模竞赛(MCM/ICM)的论文模板。模板遵循赛事官方的要求,设置了页眉页脚、字体和摘要页等内容。本文档对模板的使用做出了说明。

2024 年的变化如下:

  • Follow @COMAPMath on Twitter or COMAPCHINAOFFICIAL on Weibo for the most up to date information.
  • Registration process has been streamlined and split into 2 parts: Advisor Registration and Team Registration.
  • The MCM/ICM Contest now have a 25 page limit. The 25 page limit applies to the entire submission including the Summary Sheet, Solution, Reference List, Table of Contents, Notes, Appendices, Code and any problem specific requirements.
  • NEW Use of Large Language Models and Generative AI Tools in COMAP Contests.

III. 2024年的变化

  • 请关注Twitter上的 @COMAPMath 或微博上的 COMAPCHINAOFFICIAL 获取最新信息。
  • 注册流程已经简化,并分为两个部分:指导教师注册和团队注册。
  • MCM/ICM 竞赛现在有了25页的限制。25页的限制适用于整个提交文件,包括摘要页、解决方案、参考文献列表、目录、注释、附录、代码和任何问题的特定要求。
  • 在 COMAP 竞赛中使用大型语言模型和生成型AI工具。

为了适配新增加的部分,我们增加了 AI 生成内容的排版和引用命令 \AIcite{AI1,AI2,AI3}

官方说这些生成式的内容不计算在 25 页里,因此我们增加了,\AImatter 让总页数的计算在 AI 生成内容之前结束。

排版 AI 生成的内容的时候,用如下的环境排版,与 thebibliography 使用方法一样。

\bibitem{AI1}
Bing AI\\
Query1: write a sort algorithm\\
Output: Sure, I can help you with that. Here is a simple implementation of the selection sort algorithm in Python:
\begin{lstlisting}[language=python]
def selection_sort(arr):
    for i in range(len(arr)):
        min_idx = i
        for j in range(i + 1, len(arr)):
            if arr[min_idx] > arr[j]:
                min_idx = j
        arr[i], arr[min_idx] = arr[min_idx], arr[i]
    return arr
\end{lstlisting}
This algorithm sorts an array by repeatedly finding the minimum element from the unsorted part of the array and putting it at the beginning. \href{https://www.geeksforgeeks.org/sorting-algorithms/}{The time complexity of this algorithm is O($n^2$)}.

\bibitem{AI2}
OpenAl Enie (Nov 5, 2023 version, Ernie 4.0)\\
Query1: <insert the exact wording of any subsequent input into the Al tool>\\
Output: <insert the complete output from the second query>

\bibitem{AI3}
Github CoPilot (Feb 3, 2024 version)\\
Query1: <insert the exact wording you input into the Al tool>\\
Output: <insert the complete output fron the Al tool>

\end{ReportAiUse}

排版效果如下:

image.png

其他效果图如下:

image.png

image.png

image.png

这次我们建立了交流群,大家可以加入交流。

24美国数学建模群二维码.png

下载地址,最新版本,更新时间 2024 年 1 月 22 日:
mcmthesis-0122.zip

1 月 24 日更新版本,根据官网提供的 sheet 代码,调整了版面的尺寸 letterpaper 改为 a4paper,调整了字体默认使用 newtx,起始页改为从 sheet 开始计算等。
mcmthesis-0124-update.zip

视频教程:https://www.bilibili.com/video/BV1Kg4y1e7Ti

欢迎大家关注我们公众号,享受精致科研生活:

0 条评论

发布
问题