├── README.md ├── code ├── example.m └── example.py ├── img ├── example-image-a.pdf ├── example-image-b.pdf ├── example-image-c.pdf └── water.png ├── indent.log ├── ldmcm.sty ├── main.aux ├── main.bbl ├── main.dvi ├── main.fls ├── main.log ├── main.out ├── main.pdf ├── main.synctex.gz ├── main.tex ├── main.toc └── references.bib /README.md: -------------------------------------------------------------------------------- 1 | # [LDMCM](https://github.com/LeyuDame/ldmcm):基于[EasyMCM](https://github.com/xjtu-blacksmith/easymcm/releases)改进的一个美赛LaTeX模板 2 | 3 | [![Page Views Count](https://badges.toozhao.com/badges/01HKYXHT881CR7BWX1KSRZ5ZMK/blue.svg)](https://badges.toozhao.com/stats/01HKYXHT881CR7BWX1KSRZ5ZMK "Get your own page views count badge on badges.toozhao.com") 4 | 5 | 由 [@LeyuDame](https://github.com/LeyuDame) 改进 6 | 7 | ## 2024.02.02更新 8 | 9 | - 新增了LLM的引用方式。以ChatGPT为例: 10 | 只需使用`\upcite{openai2024chatgpt}`命令即可(或`\cite{openai2024chatgpt}`),具体改动请参见`references.bib`文件 11 | - 新增了2024美赛要求的*Report on Use of AI*,具体改动请参见附录部分 12 | 13 | 14 | ## 主要改进 15 | 16 | - ⭐引入`algorithm2e`宏包,添加了伪代码模板 17 | - Ⓜ️完善了附录代码的添加功能,直接将代码文件放在`code`目录下即可 18 | - 📑完善了`bibtex`的引用方法,可以将参考文献的`bib`文件直接放在根目录下自动生成参考文献 19 | - 🔖使用`\upcite`命令直接将引用符号上标 20 | - 🔗增加了超链接 21 | 22 | [⬇️下载LDMCM(zip)](https://codeload.github.com/LeyuDame/LDMCM/zip/refs/heads/main) 23 | 24 | GitHub 仓库地址: 25 | 26 | **效果图(部分)** 27 | 28 | [查看完整预览pdf](https://github.com/LeyuDame/LDMCM/blob/main/main.pdf) 29 | 30 | abstract 31 | 32 | contents 33 | 34 | figures 35 | 36 | algorithm 37 | -------------------------------------------------------------------------------- /code/example.m: -------------------------------------------------------------------------------- 1 | % MATLAB code example 2 | for i = 1:10 3 | disp("hello, world!"); 4 | end -------------------------------------------------------------------------------- /code/example.py: -------------------------------------------------------------------------------- 1 | # Python code example 2 | for i in range(10): 3 | print('Hello, world!') -------------------------------------------------------------------------------- /img/example-image-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeyuDame/LDMCM/f94e2a0005d258642c9a0f0a66315a173f31bf9c/img/example-image-a.pdf -------------------------------------------------------------------------------- /img/example-image-b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeyuDame/LDMCM/f94e2a0005d258642c9a0f0a66315a173f31bf9c/img/example-image-b.pdf -------------------------------------------------------------------------------- /img/example-image-c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeyuDame/LDMCM/f94e2a0005d258642c9a0f0a66315a173f31bf9c/img/example-image-c.pdf -------------------------------------------------------------------------------- /img/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeyuDame/LDMCM/f94e2a0005d258642c9a0f0a66315a173f31bf9c/img/water.png -------------------------------------------------------------------------------- /indent.log: -------------------------------------------------------------------------------- 1 | INFO: latexindent.exe version 3.16, 2022-03-13, a script to indent .tex files 2 | latexindent.exe lives here: D:/texlive/2022/bin/win32/ 3 | Fri Feb 2 09:06:38 2024 4 | Filename: d:\.BNU\Ä£°å\LDMCM\main.tex 5 | INFO: Processing switches: 6 | INFO: Directory for backup files and indent.log: d:\.BNU\Ä£°å\LDMCM 7 | INFO: YAML settings read: defaultSettings.yaml 8 | Reading defaultSettings.yaml from D:/texlive/2022/bin/win32/defaultSettings.yaml 9 | Reading defaultSettings.yaml (2nd attempt) from D:/texlive/2022/bin/win32/../../texmf-dist/scripts/latexindent/defaultSettings.yaml 10 | and then, if necessary, D:/texlive/2022/bin/win32/LatexIndent/defaultSettings.yaml 11 | INFO: YAML settings read: indentconfig.yaml or .indentconfig.yaml 12 | Home directory is C:\Users\Pauline (didn't find either indentconfig.yaml or .indentconfig.yaml) 13 | To specify user settings you would put indentconfig.yaml here: C:\Users\Pauline/indentconfig.yaml 14 | Alternatively, you can use the hidden file .indentconfig.yaml as: C:\Users\Pauline/.indentconfig.yaml 15 | INFO: Phase 1: searching for objects 16 | INFO: Phase 2: finding surrounding indentation 17 | INFO: Phase 3: indenting objects 18 | INFO: Phase 4: final indentation check 19 | INFO: Output routine: 20 | Not outputting to file; see -w and -o switches for more options. 21 | -------------- 22 | INFO: Please direct all communication/issues to: 23 | https://github.com/cmhughes/latexindent.pl 24 | -------------------------------------------------------------------------------- /ldmcm.sty: -------------------------------------------------------------------------------- 1 | %% LDMCM:基于EasyMCM改进的一个美赛模板 2 | %% 由 @LeyuDame 改进 3 | %% 主要的改进有 4 | % 引入algorithm2e宏包,添加了伪代码模板 5 | % 完善了附录代码的添加功能,直接将代码文件放在根目录下即可 6 | % 完善了bibtex的引用方法,可以将参考文献的bib文件直接放在根目录下自动生成参考文献 7 | % 使用\upcite命令直接将引用符号上标 8 | % 增加了超链接 9 | 10 | %% GitHub 仓库地址:https://github.com/LeyuDame/ldmcm 11 | %% 12 | 13 | %%================================= 14 | %%原模板EasyMCM相关信息如下: 15 | 16 | %% EasyMCM: 一个简洁、易用的美赛模板 17 | %% Oringinal template (MCMthesis v5.0) by latexstudio, 18 | %% Redeveloped by Heishan Yan (xjtu-blacksmith), 19 | %% 目前由黑山雁(@xjtu-blacksmith)维护 20 | %% 21 | %% v5.00 : 注释全部汉化(且添加了大量注释),并将格式改进为符合当前规范的版本 22 | %% v5.01 : 正式改为独立宏包 EasyMCM,改为简洁、清晰、符合美赛规范的格式 23 | %% v5.02 : 支持了 7 位控制号,改进了若干已知问题,并补充了一些非必需的内容 24 | %% v5.1 : 适配 2020 年 Summary sheet 样式,大幅优化代码,更加简明易用 25 | %% v5.2 : 适配 2021 年 Summary sheet 样式,更正了页码,并增加一些例子 26 | %% v5.2.2: 适配 2022 年 Summary sheet 样式,调整纸张大小为 US letter 27 | %% 28 | %% 个人网站:https://xjtu-blacksmith.cn 29 | %% 博客发布页面:https://xjtu-blacksmith.cn/program/easymcm 30 | %% GitHub 发布页面:https://github.com/xjtu-blacksmith/easymcm/releases 31 | %% Gitee 发布页面:https://gitee.com/xjtu-blacksmith/easymcm/releases 32 | %% 33 | 34 | %%================================= 35 | 36 | \NeedsTeXFormat{LaTeX2e}[2005/12/01] 37 | \ProvidesPackage{ldmcm}[2023/01/05] 38 | \typeout{easymcm package, version 5.2.2} 39 | 40 | % 基本宏包 41 | \RequirePackage[letterpaper,margin=2.5cm,bottom=1.5cm]{geometry} % 页边距和纸张大小 42 | \RequirePackage{fancyhdr,fancybox} % 设置页眉页脚 43 | \RequirePackage{ifthen} % 逻辑结构 44 | \RequirePackage{lastpage} % 生成"Page X of XX" 45 | \RequirePackage{paralist} % 修改 itemize 各项间距 46 | \RequirePackage{indentfirst} % 全文首行缩进 47 | \RequirePackage[toc,page,title,titletoc,header]{appendix} % 附录定制 48 | \RequirePackage{threeparttable}%表格注释 49 | 50 | %伪代码 51 | %更多细节用法参考https://blog.csdn.net/qq_43486745/article/details/124344365 52 | %\RequirePackage[linesnumbered, boxed]{algorithm2e}%有行号带方框的伪代码,这里有四个可选参数 53 | \RequirePackage[ruled,vlined]{algorithm2e}%没有行号的三线表形式的伪代码 54 | \SetKwRepeat{Do}{do}{while}% 55 | 56 | %超链接 57 | %\RequirePackage{hyperref} 58 | %\hypersetup{hidelinks, colorlinks=true, allcolors=black, pdfstartview=Fit, breaklinks=true} 59 | 60 | % 数学公式 61 | \RequirePackage{amsfonts,amsmath,amssymb} % AMS-LaTeX 符号、公式 62 | 63 | % 定理环境声明 64 | % 事实上大部分论文中用不到,但仍保留以供使用 65 | \newtheorem{Theorem}{Theorem}[section] 66 | \newtheorem{Lemma}[Theorem]{Lemma} 67 | \newtheorem{Corollary}[Theorem]{Corollary} 68 | \newtheorem{Proposition}[Theorem]{Proposition} 69 | \newtheorem{Definition}[Theorem]{Definition} 70 | \newtheorem{Example}[Theorem]{Example} 71 | 72 | % 目录 73 | \RequirePackage{titlesec,titletoc} % 自定义目录样式 74 | \setcounter{tocdepth}{3} % 目录显示到 subsubsection(3) 级别 75 | \RequirePackage[font=small]{caption} % 使图表标题字号小一号 76 | \renewcommand\abstractname{Summary} % 摘要标题 77 | 78 | % 表格相关 79 | \RequirePackage{longtable,multirow,array} % 各种基本的表格宏包 80 | \RequirePackage{booktabs} % 三线表宏包 81 | 82 | % 字体相关 83 | \RequirePackage[T1]{fontenc} % 开启拓展区正文字体 84 | \RequirePackage{url} % 网址宏包,以下命令使得网址能自动换行 85 | \def\UrlBreaks{\do\A\do\B\do\C\do\D\do\E\do\F\do\G\do\H\do\I\do\J 86 | \do\K\do\L\do\M\do\N\do\O\do\P\do\Q\do\R\do\S\do\T\do\U\do\V 87 | \do\W\do\X\do\Y\do\Z\do\[\do\\\do\]\do\^\do\_\do\`\do\a\do\b 88 | \do\c\do\d\do\e\do\f\do\g\do\h\do\i\do\j\do\k\do\l\do\m\do\n 89 | \do\o\do\p\do\q\do\r\do\s\do\t\do\u\do\v\do\w\do\x\do\y\do\z 90 | \do\.\do\@\do\\\do\/\do\!\do\_\do\|\do\;\do\>\do\]\do\)\do\, 91 | \do\?\do\'\do+\do\=\do\#} 92 | 93 | % 基本参数 94 | \setlength{\headheight}{15pt} 95 | \newcommand{\MCM@control}{0000000} % 队伍控制号,默认为 0000000 96 | \DeclareOption*{\edef\MCM@control{\CurrentOption}} % 宏包选项接收控制号 97 | \ProcessOptions 98 | \newcommand{\control}{\MCM@control} 99 | \newcommand{\team}{Team \#\ \MCM@control} 100 | \newcommand{\contest}{MCM/ICM} 101 | \renewcommand\contentsname{Contents} 102 | % 书签,插图和交叉引用的设置 103 | \RequirePackage{graphicx} % 插图 104 | \RequirePackage{subcaption} % 子图 105 | \RequirePackage{flafter} % 引用该宏包可避免图片在引用它的正文之前出现 106 | \RequirePackage{ifpdf} % 判断是否在运行 pdftex 107 | \ifpdf% 108 | \RequirePackage{epstopdf} % pdftex 不能使用 eps 图片,用该宏包转成 pdf 后使用 109 | \DeclareGraphicsExtensions{.pdf,.jpg,.jpeg,.png} % 允许的图片类型 110 | \RequirePackage[ 111 | linkcolor=black, % 消除链接色彩 112 | citecolor=black, 113 | colorlinks=true, 114 | linkcolor=black, 115 | citecolor=black, 116 | urlcolor=black]{hyperref} 117 | \else\DeclareGraphicsExtensions{.eps,.ps} % 不需要转换 eps 图片格式 118 | \ifxetex\RequirePackage[ 119 | xetex, % 运行 xetex 120 | pdfstartview=FitH, 121 | bookmarksnumbered=true, 122 | bookmarksopen=true, 123 | colorlinks=true, 124 | linkcolor=black, 125 | citecolor=black, 126 | urlcolor=black]{hyperref} 127 | \else\RequirePackage[ 128 | dvipdfm, % 运行其他编译引擎(如 luatex) 129 | pdfstartview=FitH, 130 | bookmarksnumbered=true, 131 | bookmarksopen=true, 132 | colorlinks=true, 133 | linkcolor=black, 134 | citecolor=black, 135 | urlcolor=black]{hyperref} 136 | \fi\fi 137 | 138 | % 以下设置使得一页上最多有六个浮动对象(图、表) 139 | % 且顶部最多三个,底部最多三个 140 | % 可自行修改参数 141 | \setcounter{totalnumber}{6} 142 | \setcounter{topnumber}{3} 143 | \setcounter{bottomnumber}{3} 144 | 145 | % 很多人发现缺省的浮动参数过于严格了 146 | % 下面的命令 147 | \renewcommand{\textfraction}{0.15} 148 | \renewcommand{\topfraction}{0.85} 149 | \renewcommand{\bottomfraction}{0.65} 150 | \renewcommand{\floatpagefraction}{0.60} 151 | % 将浮动参数重新设置为更宽松的值。 152 | % ---选自《LaTeX2e插图指南》 153 | 154 | % 图表标题名称 155 | \renewcommand{\figurename}{Figure} 156 | \renewcommand{\tablename}{Table} 157 | \setlength{\belowcaptionskip}{4pt} 158 | \setlength{\abovecaptionskip}{4pt} % 设置 caption 与上下文间距 159 | 160 | % 以下定义了自动识别的图表文件夹 161 | % 若使用这些名字命名文件夹 162 | % 则引用图片路径时只需填文件名即可 163 | \graphicspath{{./}{./img/}{./fig/}{./image/}{./figure/}{./picture/}} 164 | 165 | % 页眉页脚设置 166 | \lhead{\small \team} 167 | \chead{} 168 | \rhead{\small Page \thepage\ of \pageref{LastPage}} 169 | \lfoot{} 170 | \cfoot{} 171 | \rfoot{} 172 | 173 | % 信件/备忘录环境 174 | \newcounter{prefix} % 创建隐藏前缀计数器,避免对 letter 环境编号 175 | \renewcommand{\theHsection}{\theprefix.\thesection} % 针对 hyperref 176 | \newenvironment{letter}[1]{\refstepcounter{section}\addtocounter{section}{-1}\section*{#1}\addcontentsline{toc}{section}{#1}}{\stepcounter{prefix}} 177 | 178 | % 附录代码环境 179 | \RequirePackage{listings} 180 | \renewcommand*{\ttdefault}{txtt} % 代码字体 181 | \lstset{ 182 | showspaces = false, 183 | frameround = fttt 184 | showstringspaces = false, 185 | showtabs = false, 186 | title = {\raggedright\bfseries\ttfamily\lstname\vspace{1pt}}, 187 | frame = shadowbox, 188 | basicstyle = {\small\ttfamily}, 189 | keywordstyle = {\bfseries}, 190 | tabsize = 4} 191 | 192 | % 快乐 etoolbox 193 | \RequirePackage{etoolbox} % 减轻正文复杂度 194 | \AtBeginEnvironment{abstract}{\setlength\parskip{1ex}} % 摘要中增加段距 195 | \AtBeginEnvironment{thebibliography}{ 196 | \refstepcounter{section} 197 | \addcontentsline{toc}{section}{References}} % 参考文献附加链接 198 | \BeforeBeginEnvironment{subappendices}{ 199 | \clearpage 200 | \setcounter{secnumdepth}{-1}} % 附录附加链接 201 | \BeforeBeginEnvironment{letter}{\clearpage} % 信件环境附加换页 202 | 203 | % COMAP 要求的 Summary Sheet 标题(2020) 204 | % 注意每年比赛时有可能有小调整 205 | % 请以官网发布的样式为准自行做小的修改! 206 | \newcommand{\@problem}[1]{} 207 | \newcommand{\problem}[1]{\gdef\@problem{#1}} 208 | \newcommand{\makesheet}{ %生成sheet头命令的定义 209 | \null% 210 | \vspace*{-5pc}% 211 | \begin{center} 212 | \begingroup 213 | \setlength{\parindent}{0pt} 214 | \begin{minipage}[t]{0.33\linewidth} 215 | \centering 216 | \textbf{Problem Chosen}\\ 217 | \LARGE\@problem 218 | \end{minipage}% 219 | \begin{minipage}[t]{0.34\linewidth} 220 | \centering 221 | \bfseries\the\year\\\contest\\{Summary Sheet} 222 | \end{minipage}% 223 | \begin{minipage}[t]{0.33\linewidth} 224 | \centering 225 | \textbf{Team Control Number}\\ 226 | \LARGE\MCM@control\\[1.8pc] 227 | \end{minipage}\par 228 | \vskip1ex 229 | \rule{\linewidth}{1.5pt}\par 230 | \endgroup 231 | \vskip 10pt% 232 | \end{center}} 233 | 234 | % abstract 环境的设置 235 | \newbox\@abstract % 将摘要创建为盒子 236 | \setbox\@abstract\hbox{} % 盒子置空 237 | \long\def\abstract{\bgroup\global\setbox\@abstract\vbox\bgroup\hsize\textwidth} 238 | \def\endabstract{\egroup\egroup} 239 | \def\make@abstract{ 240 | \vskip -10pt\par 241 | {\centering\Large\bfseries\@title\vskip1ex}\par % 插入论文标题,字号可自己修改 242 | {\centering\bfseries\abstractname\vskip1.5ex}\par %摘要标题 243 | \noindent\usebox\@abstract\par % 摘要正文 244 | \vskip 10pt} % 底部留空,若不需要可删去 245 | 246 | % Summary Sheet 生成 247 | \def\@maketitle{ 248 | \makesheet% 249 | \make@abstract 250 | \pagestyle{empty} 251 | \newpage} 252 | 253 | % 目录生成 254 | \renewcommand\tableofcontents{% 255 | \centerline{\normalfont\Large\bfseries\contentsname% 256 | \@mkboth{% 257 | \MakeUppercase\contentsname}{\MakeUppercase\contentsname}}% 258 | \vskip 3ex% 259 | \@starttoc{toc}% 260 | \thispagestyle{fancy} 261 | \clearpage 262 | \pagestyle{fancy} 263 | \setlength\parskip{1ex}} % 调整段间距 264 | 265 | %参考文献部分标题显示 266 | \renewcommand\refname{References} 267 | \endinput -------------------------------------------------------------------------------- /main.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \providecommand\hyper@newdestlabel[2]{} 3 | \providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} 4 | \HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined 5 | \global\let\oldcontentsline\contentsline 6 | \gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} 7 | \global\let\oldnewlabel\newlabel 8 | \gdef\newlabel#1#2{\newlabelxx{#1}#2} 9 | \gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} 10 | \AtEndDocument{\ifx\hyper@anchor\@undefined 11 | \let\contentsline\oldcontentsline 12 | \let\newlabel\oldnewlabel 13 | \fi} 14 | \fi} 15 | \global\let\hyper@last\relax 16 | \gdef\HyperFirstAtBeginDocument#1{#1} 17 | \providecommand*\HyPL@Entry[1]{} 18 | \HyPL@Entry{0<>} 19 | \providecommand \oddpage@label [2]{} 20 | \@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{4}{section.0.1}\protected@file@percent } 21 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.1}Problem Background}{4}{subsection.0.1.1}\protected@file@percent } 22 | \providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}} 23 | \newlabel{subfig:left}{{1a}{4}{left\relax }{figure.caption.1}{}} 24 | \newlabel{sub@subfig:left}{{a}{4}{left\relax }{figure.caption.1}{}} 25 | \newlabel{subfig:right}{{1b}{4}{right\relax }{figure.caption.1}{}} 26 | \newlabel{sub@subfig:right}{{b}{4}{right\relax }{figure.caption.1}{}} 27 | \@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Two images\relax }}{4}{figure.caption.1}\protected@file@percent } 28 | \newlabel{subfigure}{{1}{4}{Two images\relax }{figure.caption.1}{}} 29 | \newlabel{}{{\caption@xref {}{ on input line 141}}{4}{Problem Background}{figure.caption.2}{}} 30 | \newlabel{sub@}{{}{4}{Problem Background}{figure.caption.2}{}} 31 | \newlabel{}{{\caption@xref {}{ on input line 147}}{4}{Problem Background}{figure.caption.2}{}} 32 | \newlabel{sub@}{{}{4}{Problem Background}{figure.caption.2}{}} 33 | \newlabel{}{{\caption@xref {}{ on input line 153}}{4}{Problem Background}{figure.caption.2}{}} 34 | \newlabel{sub@}{{}{4}{Problem Background}{figure.caption.2}{}} 35 | \@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Three images\relax }}{4}{figure.caption.2}\protected@file@percent } 36 | \newlabel{Three images}{{2}{4}{Three images\relax }{figure.caption.2}{}} 37 | \citation{kopka2003guide} 38 | \newlabel{}{{3a}{5}{左上\relax }{figure.caption.3}{}} 39 | \newlabel{sub@}{{a}{5}{左上\relax }{figure.caption.3}{}} 40 | \newlabel{}{{3b}{5}{右上\relax }{figure.caption.3}{}} 41 | \newlabel{sub@}{{b}{5}{右上\relax }{figure.caption.3}{}} 42 | \newlabel{}{{3c}{5}{左下\relax }{figure.caption.3}{}} 43 | \newlabel{sub@}{{c}{5}{左下\relax }{figure.caption.3}{}} 44 | \newlabel{}{{3d}{5}{右下\relax }{figure.caption.3}{}} 45 | \newlabel{sub@}{{d}{5}{右下\relax }{figure.caption.3}{}} 46 | \@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces 组图组图变变变\relax }}{5}{figure.caption.3}\protected@file@percent } 47 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.2}Literature Review}{5}{subsection.0.1.2}\protected@file@percent } 48 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.3}Our work}{5}{subsection.0.1.3}\protected@file@percent } 49 | \@writefile{toc}{\contentsline {section}{\numberline {2}Preparation of the Models}{6}{section.0.2}\protected@file@percent } 50 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Assumptions and Explanations}{6}{subsection.0.2.1}\protected@file@percent } 51 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Notations}{7}{subsection.0.2.2}\protected@file@percent } 52 | \@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Notations used in this paper\relax }}{7}{table.caption.4}\protected@file@percent } 53 | \newlabel{tb:notation}{{1}{7}{Notations used in this paper\relax }{table.caption.4}{}} 54 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Data}{7}{subsection.0.2.3}\protected@file@percent } 55 | \@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.1}Data Collection}{7}{subsubsection.0.2.3.1}\protected@file@percent } 56 | \@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces Notations used in this paper\relax }}{7}{table.caption.5}\protected@file@percent } 57 | \newlabel{tb:data}{{2}{7}{Notations used in this paper\relax }{table.caption.5}{}} 58 | \@writefile{toc}{\contentsline {subsubsection}{\numberline {2.3.2}Data Processing}{8}{subsubsection.0.2.3.2}\protected@file@percent } 59 | \@writefile{toc}{\contentsline {section}{\numberline {3}Model 1}{8}{section.0.3}\protected@file@percent } 60 | \@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Details about Model 1}{8}{subsection.0.3.1}\protected@file@percent } 61 | \newlabel{eq:heat}{{1}{8}{Details about Model 1}{equation.0.3.1}{}} 62 | \@writefile{toc}{\contentsline {section}{\numberline {4}Model 2}{8}{section.0.4}\protected@file@percent } 63 | \@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Conclusion of Model 2}{8}{subsection.0.4.1}\protected@file@percent } 64 | \@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces The result of Model 2\relax }}{8}{figure.caption.6}\protected@file@percent } 65 | \newlabel{fig:result}{{4}{8}{The result of Model 2\relax }{figure.caption.6}{}} 66 | \@writefile{loa}{\contentsline {algocf}{\numberline {1}{\ignorespaces How to write algorithms\relax }}{9}{algocf.1}\protected@file@percent } 67 | \gdef \LT@i {\LT@entry 68 | {1}{60.0pt}\LT@entry 69 | {1}{180.0pt}\LT@entry 70 | {1}{180.0pt}} 71 | \@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Commetary on Model 2}{10}{subsection.0.4.2}\protected@file@percent } 72 | \@writefile{lot}{\contentsline {table}{\numberline {3}{\ignorespaces Basic Information about Three Main Continents (scratched from Wikipedia)\relax }}{10}{table.3}\protected@file@percent } 73 | \newlabel{tb:longtable}{{3}{10}{Basic Information about Three Main Continents (scratched from Wikipedia)\relax }{table.3}{}} 74 | \citation{openai2024chatgpt} 75 | \@writefile{toc}{\contentsline {section}{\numberline {5}Model 3}{11}{section.0.5}\protected@file@percent } 76 | \@writefile{toc}{\contentsline {section}{\numberline {6}Test the Model}{11}{section.0.6}\protected@file@percent } 77 | \@writefile{toc}{\contentsline {subsection}{\numberline {6.1}Sensitivity Analysis}{11}{subsection.0.6.1}\protected@file@percent } 78 | \@writefile{toc}{\contentsline {subsection}{\numberline {6.2}Robustness Analysis}{11}{subsection.0.6.2}\protected@file@percent } 79 | \@writefile{toc}{\contentsline {section}{\numberline {7}Conclusion}{11}{section.0.7}\protected@file@percent } 80 | \@writefile{toc}{\contentsline {subsection}{\numberline {7.1}Summary of Results}{11}{subsection.0.7.1}\protected@file@percent } 81 | \@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Strengths}{11}{subsection.0.7.2}\protected@file@percent } 82 | \@writefile{toc}{\contentsline {subsection}{\numberline {7.3}Weaknesses and Improvements}{11}{subsection.0.7.3}\protected@file@percent } 83 | \bibstyle{unsrt} 84 | \bibdata{references.bib} 85 | \bibcite{kopka2003guide}{1} 86 | \bibcite{openai2024chatgpt}{2} 87 | \@writefile{toc}{\contentsline {section}{Memorandum}{12}{section.0.8}\protected@file@percent } 88 | \@writefile{toc}{\contentsline {section}{References}{12}{section.1.8}\protected@file@percent } 89 | \@writefile{toc}{\contentsline {section}{Appendix A: Further on \LaTeX }{13}{section*.7}\protected@file@percent } 90 | \@writefile{toc}{\contentsline {section}{Appendix B: Program Codes}{13}{section*.8}\protected@file@percent } 91 | \@writefile{toc}{\contentsline {section}{Appendix C: Report on Use of AI}{13}{section*.9}\protected@file@percent } 92 | \newlabel{LastPage}{{}{14}{}{page.14}{}} 93 | \xdef\lastpage@lastpage{14} 94 | \xdef\lastpage@lastpageHy{14} 95 | \ttl@finishall 96 | \gdef \@abspage@last{14} 97 | -------------------------------------------------------------------------------- /main.bbl: -------------------------------------------------------------------------------- 1 | \begin{thebibliography}{1} 2 | 3 | \bibitem{kopka2003guide} 4 | Helmut Kopka and Patrick~W Daly. 5 | \newblock {\em Guide to LATEX}. 6 | \newblock Pearson Education, 2003. 7 | 8 | \bibitem{openai2024chatgpt} 9 | OpenAI. 10 | \newblock Chatgpt: Optimizing language models for dialogue, Feb 2024. 11 | \newblock Available online: \url{https://openai.com/chatgpt} (accessed on 12 | February 2$^{nd}$, 2024). 13 | 14 | \end{thebibliography} 15 | -------------------------------------------------------------------------------- /main.dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeyuDame/LDMCM/f94e2a0005d258642c9a0f0a66315a173f31bf9c/main.dvi -------------------------------------------------------------------------------- /main.fls: -------------------------------------------------------------------------------- 1 | PWD D:/.BNU/模板/LDMCM 2 | INPUT d:/texlive/2022/texmf.cnf 3 | INPUT d:/texlive/2022/texmf-dist/web2c/texmf.cnf 4 | INPUT d:/texlive/2022/texmf-var/web2c/pdftex/latex.fmt 5 | INPUT main.tex 6 | OUTPUT main.log 7 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexart.cls 8 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexart.cls 9 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexart.cls 10 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexart.cls 11 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexart.cls 12 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexart.cls 13 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexart.cls 14 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexart.cls 15 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexart.cls 16 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexart.cls 17 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexart.cls 18 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctexbackend.cfg 19 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctexbackend.cfg 20 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctexbackend.cfg 21 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctexbackend.cfg 22 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 23 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 24 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 25 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 26 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 27 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 28 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 29 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 30 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 31 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 32 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 33 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-dvipdfmx.def 34 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-dvipdfmx.def 35 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-dvipdfmx.def 36 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-dvipdfmx.def 37 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-dvipdfmx.def 38 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-dvipdfmx.def 39 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-dvipdfmx.def 40 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-dvipdfmx.def 41 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-dvipdfmx.def 42 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-dvipdfmx.def 43 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-dvipdfmx.def 44 | INPUT extractbb --version 45 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 46 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 47 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 48 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 49 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 50 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 51 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 52 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 53 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 54 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 55 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 56 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 57 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 58 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 59 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 60 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 61 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 62 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 63 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 64 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 65 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 66 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 67 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 68 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 69 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/engine/ctex-engine-pdftex.def 70 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexhook.sty 71 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexhook.sty 72 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexhook.sty 73 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexhook.sty 74 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexhook.sty 75 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexhook.sty 76 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexhook.sty 77 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexhook.sty 78 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexhook.sty 79 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexhook.sty 80 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexhook.sty 81 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 82 | INPUT d:/texlive/2022/texmf-dist/fonts/map/fontname/texfonts.map 83 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/cm/cmr10.tfm 84 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexpatch.sty 85 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexpatch.sty 86 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexpatch.sty 87 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexpatch.sty 88 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexpatch.sty 89 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexpatch.sty 90 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexpatch.sty 91 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexpatch.sty 92 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexpatch.sty 93 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexpatch.sty 94 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexpatch.sty 95 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 96 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fix-cm.sty 97 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fix-cm.sty 98 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fix-cm.sty 99 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fix-cm.sty 100 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fix-cm.sty 101 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fix-cm.sty 102 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fix-cm.sty 103 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fix-cm.sty 104 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fix-cm.sty 105 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fix-cm.sty 106 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fix-cm.sty 107 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ts1enc.def 108 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ts1enc.def 109 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ts1enc.def 110 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ts1enc.def 111 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/cm/cmr10.tfm 112 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 113 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 114 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 115 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 116 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 117 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 118 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 119 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 120 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 121 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 122 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 123 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 124 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 125 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 126 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 127 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/size12.clo 128 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/size12.clo 129 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/size12.clo 130 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/size12.clo 131 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/cm/cmr12.tfm 132 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/engine/ctex-engine-pdftex.def 133 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/engine/ctex-engine-pdftex.def 134 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty 135 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty 136 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty 137 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty 138 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty 139 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty 140 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty 141 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty 142 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty 143 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty 144 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty 145 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 146 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 147 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 148 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 149 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 150 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 151 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 152 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 153 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 154 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 155 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 156 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 157 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 158 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 159 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 160 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 161 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 162 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 163 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 164 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 165 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 166 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 167 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/inputenc.sty 168 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/inputenc.sty 169 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/inputenc.sty 170 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/inputenc.sty 171 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/inputenc.sty 172 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/inputenc.sty 173 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/inputenc.sty 174 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/inputenc.sty 175 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/inputenc.sty 176 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/inputenc.sty 177 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/inputenc.sty 178 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJK.sty 179 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJK.sty 180 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJK.sty 181 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJK.sty 182 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJK.sty 183 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJK.sty 184 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJK.sty 185 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJK.sty 186 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJK.sty 187 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJK.sty 188 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJK.sty 189 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 190 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 191 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 192 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 193 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 194 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 195 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 196 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 197 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 198 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 199 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty 200 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJK.enc 201 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 202 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 203 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 204 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 205 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 206 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 207 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 208 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 209 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 210 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 211 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 212 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty 213 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty 214 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty 215 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty 216 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty 217 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty 218 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty 219 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty 220 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty 221 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty 222 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty 223 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.spa 224 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.spa 225 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.spa 226 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjkpunct/CJKpunct.spa 227 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty 228 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty 229 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty 230 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty 231 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty 232 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty 233 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty 234 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty 235 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty 236 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty 237 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty 238 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/cm/cmr10.tfm 239 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexspa.def 240 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexspa.def 241 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 242 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 243 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 244 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 245 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 246 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 247 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 248 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 249 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 250 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 251 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 252 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 253 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 254 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 255 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 256 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 257 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 258 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 259 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 260 | INPUT d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 261 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 262 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 263 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 264 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-article.def 265 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-article.def 266 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 267 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 268 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-windows.def 269 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-windows.def 270 | INPUT c:/Windows/Fonts/msyh.ttc 271 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctex.cfg 272 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctex.cfg 273 | INPUT ./ldmcm.sty 274 | INPUT ./ldmcm.sty 275 | INPUT ldmcm.sty 276 | INPUT ./ldmcm.sty 277 | INPUT ./ldmcm.sty 278 | INPUT ./ldmcm.sty 279 | INPUT ./ldmcm.sty 280 | INPUT ./ldmcm.sty 281 | INPUT ldmcm.sty 282 | INPUT ./ldmcm.sty 283 | INPUT ldmcm.sty 284 | INPUT d:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty 285 | INPUT d:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty 286 | INPUT d:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty 287 | INPUT d:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty 288 | INPUT d:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty 289 | INPUT d:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty 290 | INPUT d:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty 291 | INPUT d:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty 292 | INPUT d:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty 293 | INPUT d:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty 294 | INPUT d:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty 295 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 296 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 297 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 298 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 299 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 300 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 301 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 302 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 303 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 304 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 305 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 306 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty 307 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty 308 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty 309 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty 310 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty 311 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty 312 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty 313 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty 314 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty 315 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty 316 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty 317 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 318 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 319 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 320 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 321 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 322 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 323 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 324 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 325 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 326 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 327 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 328 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 329 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancybox/fancybox.sty 330 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancybox/fancybox.sty 331 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancybox/fancybox.sty 332 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancybox/fancybox.sty 333 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancybox/fancybox.sty 334 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancybox/fancybox.sty 335 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancybox/fancybox.sty 336 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancybox/fancybox.sty 337 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancybox/fancybox.sty 338 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancybox/fancybox.sty 339 | INPUT d:/texlive/2022/texmf-dist/tex/latex/fancybox/fancybox.sty 340 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 341 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 342 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 343 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 344 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 345 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 346 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 347 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 348 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 349 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 350 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 351 | INPUT d:/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.sty 352 | INPUT d:/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.sty 353 | INPUT d:/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.sty 354 | INPUT d:/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.sty 355 | INPUT d:/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.sty 356 | INPUT d:/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.sty 357 | INPUT d:/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.sty 358 | INPUT d:/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.sty 359 | INPUT d:/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.sty 360 | INPUT d:/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.sty 361 | INPUT d:/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.sty 362 | INPUT d:/texlive/2022/texmf-dist/tex/latex/paralist/paralist.sty 363 | INPUT d:/texlive/2022/texmf-dist/tex/latex/paralist/paralist.sty 364 | INPUT d:/texlive/2022/texmf-dist/tex/latex/paralist/paralist.sty 365 | INPUT d:/texlive/2022/texmf-dist/tex/latex/paralist/paralist.sty 366 | INPUT d:/texlive/2022/texmf-dist/tex/latex/paralist/paralist.sty 367 | INPUT d:/texlive/2022/texmf-dist/tex/latex/paralist/paralist.sty 368 | INPUT d:/texlive/2022/texmf-dist/tex/latex/paralist/paralist.sty 369 | INPUT d:/texlive/2022/texmf-dist/tex/latex/paralist/paralist.sty 370 | INPUT d:/texlive/2022/texmf-dist/tex/latex/paralist/paralist.sty 371 | INPUT d:/texlive/2022/texmf-dist/tex/latex/paralist/paralist.sty 372 | INPUT d:/texlive/2022/texmf-dist/tex/latex/paralist/paralist.sty 373 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty 374 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty 375 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty 376 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty 377 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty 378 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty 379 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty 380 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty 381 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty 382 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty 383 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty 384 | INPUT d:/texlive/2022/texmf-dist/tex/latex/appendix/appendix.sty 385 | INPUT d:/texlive/2022/texmf-dist/tex/latex/appendix/appendix.sty 386 | INPUT d:/texlive/2022/texmf-dist/tex/latex/appendix/appendix.sty 387 | INPUT d:/texlive/2022/texmf-dist/tex/latex/appendix/appendix.sty 388 | INPUT d:/texlive/2022/texmf-dist/tex/latex/appendix/appendix.sty 389 | INPUT d:/texlive/2022/texmf-dist/tex/latex/appendix/appendix.sty 390 | INPUT d:/texlive/2022/texmf-dist/tex/latex/appendix/appendix.sty 391 | INPUT d:/texlive/2022/texmf-dist/tex/latex/appendix/appendix.sty 392 | INPUT d:/texlive/2022/texmf-dist/tex/latex/appendix/appendix.sty 393 | INPUT d:/texlive/2022/texmf-dist/tex/latex/appendix/appendix.sty 394 | INPUT d:/texlive/2022/texmf-dist/tex/latex/appendix/appendix.sty 395 | INPUT d:/texlive/2022/texmf-dist/tex/latex/threeparttable/threeparttable.sty 396 | INPUT d:/texlive/2022/texmf-dist/tex/latex/threeparttable/threeparttable.sty 397 | INPUT d:/texlive/2022/texmf-dist/tex/latex/threeparttable/threeparttable.sty 398 | INPUT d:/texlive/2022/texmf-dist/tex/latex/threeparttable/threeparttable.sty 399 | INPUT d:/texlive/2022/texmf-dist/tex/latex/threeparttable/threeparttable.sty 400 | INPUT d:/texlive/2022/texmf-dist/tex/latex/threeparttable/threeparttable.sty 401 | INPUT d:/texlive/2022/texmf-dist/tex/latex/threeparttable/threeparttable.sty 402 | INPUT d:/texlive/2022/texmf-dist/tex/latex/threeparttable/threeparttable.sty 403 | INPUT d:/texlive/2022/texmf-dist/tex/latex/threeparttable/threeparttable.sty 404 | INPUT d:/texlive/2022/texmf-dist/tex/latex/threeparttable/threeparttable.sty 405 | INPUT d:/texlive/2022/texmf-dist/tex/latex/threeparttable/threeparttable.sty 406 | INPUT d:/texlive/2022/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty 407 | INPUT d:/texlive/2022/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty 408 | INPUT d:/texlive/2022/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty 409 | INPUT d:/texlive/2022/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty 410 | INPUT d:/texlive/2022/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty 411 | INPUT d:/texlive/2022/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty 412 | INPUT d:/texlive/2022/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty 413 | INPUT d:/texlive/2022/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty 414 | INPUT d:/texlive/2022/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty 415 | INPUT d:/texlive/2022/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty 416 | INPUT d:/texlive/2022/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty 417 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 418 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty 419 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty 420 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty 421 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty 422 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty 423 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty 424 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty 425 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty 426 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty 427 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty 428 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty 429 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/xspace.sty 430 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/xspace.sty 431 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/xspace.sty 432 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/xspace.sty 433 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/xspace.sty 434 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/xspace.sty 435 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/xspace.sty 436 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/xspace.sty 437 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/xspace.sty 438 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/xspace.sty 439 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/xspace.sty 440 | INPUT d:/texlive/2022/texmf-dist/tex/latex/relsize/relsize.sty 441 | INPUT d:/texlive/2022/texmf-dist/tex/latex/relsize/relsize.sty 442 | INPUT d:/texlive/2022/texmf-dist/tex/latex/relsize/relsize.sty 443 | INPUT d:/texlive/2022/texmf-dist/tex/latex/relsize/relsize.sty 444 | INPUT d:/texlive/2022/texmf-dist/tex/latex/relsize/relsize.sty 445 | INPUT d:/texlive/2022/texmf-dist/tex/latex/relsize/relsize.sty 446 | INPUT d:/texlive/2022/texmf-dist/tex/latex/relsize/relsize.sty 447 | INPUT d:/texlive/2022/texmf-dist/tex/latex/relsize/relsize.sty 448 | INPUT d:/texlive/2022/texmf-dist/tex/latex/relsize/relsize.sty 449 | INPUT d:/texlive/2022/texmf-dist/tex/latex/relsize/relsize.sty 450 | INPUT d:/texlive/2022/texmf-dist/tex/latex/relsize/relsize.sty 451 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 452 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 453 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 454 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 455 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 456 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 457 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 458 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 459 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 460 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 461 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 462 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty 463 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty 464 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty 465 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty 466 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty 467 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty 468 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty 469 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty 470 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty 471 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty 472 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty 473 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 474 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 475 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty 476 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty 477 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty 478 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty 479 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty 480 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty 481 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty 482 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty 483 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty 484 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty 485 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty 486 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 487 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 488 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 489 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 490 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 491 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 492 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 493 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 494 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 495 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 496 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 497 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.sty 498 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.sty 499 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.sty 500 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.sty 501 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.sty 502 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.sty 503 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.sty 504 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.sty 505 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.sty 506 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.sty 507 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.sty 508 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 509 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 510 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 511 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 512 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 513 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 514 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 515 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 516 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 517 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 518 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 519 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 520 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 521 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty 522 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty 523 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty 524 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty 525 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty 526 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty 527 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty 528 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty 529 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty 530 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty 531 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty 532 | INPUT d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 533 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty 534 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty 535 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty 536 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty 537 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty 538 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty 539 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty 540 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty 541 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty 542 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty 543 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty 544 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titletoc.sty 545 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titletoc.sty 546 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titletoc.sty 547 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titletoc.sty 548 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titletoc.sty 549 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titletoc.sty 550 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titletoc.sty 551 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titletoc.sty 552 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titletoc.sty 553 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titletoc.sty 554 | INPUT d:/texlive/2022/texmf-dist/tex/latex/titlesec/titletoc.sty 555 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 556 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 557 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 558 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 559 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 560 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 561 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 562 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 563 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 564 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 565 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 566 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty 567 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty 568 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty 569 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty 570 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty 571 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty 572 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty 573 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty 574 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty 575 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty 576 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty 577 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 578 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty 579 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty 580 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty 581 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty 582 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty 583 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty 584 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty 585 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty 586 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty 587 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty 588 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty 589 | INPUT d:/texlive/2022/texmf-dist/tex/latex/multirow/multirow.sty 590 | INPUT d:/texlive/2022/texmf-dist/tex/latex/multirow/multirow.sty 591 | INPUT d:/texlive/2022/texmf-dist/tex/latex/multirow/multirow.sty 592 | INPUT d:/texlive/2022/texmf-dist/tex/latex/multirow/multirow.sty 593 | INPUT d:/texlive/2022/texmf-dist/tex/latex/multirow/multirow.sty 594 | INPUT d:/texlive/2022/texmf-dist/tex/latex/multirow/multirow.sty 595 | INPUT d:/texlive/2022/texmf-dist/tex/latex/multirow/multirow.sty 596 | INPUT d:/texlive/2022/texmf-dist/tex/latex/multirow/multirow.sty 597 | INPUT d:/texlive/2022/texmf-dist/tex/latex/multirow/multirow.sty 598 | INPUT d:/texlive/2022/texmf-dist/tex/latex/multirow/multirow.sty 599 | INPUT d:/texlive/2022/texmf-dist/tex/latex/multirow/multirow.sty 600 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/array.sty 601 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/array.sty 602 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/array.sty 603 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/array.sty 604 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/array.sty 605 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/array.sty 606 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/array.sty 607 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/array.sty 608 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/array.sty 609 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/array.sty 610 | INPUT d:/texlive/2022/texmf-dist/tex/latex/tools/array.sty 611 | INPUT d:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty 612 | INPUT d:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty 613 | INPUT d:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty 614 | INPUT d:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty 615 | INPUT d:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty 616 | INPUT d:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty 617 | INPUT d:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty 618 | INPUT d:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty 619 | INPUT d:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty 620 | INPUT d:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty 621 | INPUT d:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty 622 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 623 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 624 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 625 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 626 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 627 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 628 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 629 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 630 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 631 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 632 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 633 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/jknappen/ec/ecrm1200.tfm 634 | INPUT d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 635 | INPUT d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 636 | INPUT d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 637 | INPUT d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 638 | INPUT d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 639 | INPUT d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 640 | INPUT d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 641 | INPUT d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 642 | INPUT d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 643 | INPUT d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 644 | INPUT d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 645 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty 646 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty 647 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty 648 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty 649 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty 650 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty 651 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty 652 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty 653 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty 654 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty 655 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty 656 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 657 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty 658 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty 659 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty 660 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty 661 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty 662 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty 663 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty 664 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty 665 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty 666 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty 667 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty 668 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty 669 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty 670 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty 671 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty 672 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty 673 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty 674 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty 675 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty 676 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty 677 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty 678 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty 679 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics-cfg/graphics.cfg 680 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics-cfg/graphics.cfg 681 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics-cfg/graphics.cfg 682 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics-cfg/graphics.cfg 683 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics-def/dvipdfmx.def 684 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics-def/dvipdfmx.def 685 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics-def/dvipdfmx.def 686 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics-def/dvipdfmx.def 687 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/subcaption.sty 688 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/subcaption.sty 689 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/subcaption.sty 690 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/subcaption.sty 691 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/subcaption.sty 692 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/subcaption.sty 693 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/subcaption.sty 694 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/subcaption.sty 695 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/subcaption.sty 696 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/subcaption.sty 697 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/subcaption.sty 698 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 699 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/flafter.sty 700 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/flafter.sty 701 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/flafter.sty 702 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/flafter.sty 703 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/flafter.sty 704 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/flafter.sty 705 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/flafter.sty 706 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/flafter.sty 707 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/flafter.sty 708 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/flafter.sty 709 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/flafter.sty 710 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 711 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 712 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 713 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 714 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 715 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 716 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 717 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 718 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 719 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 720 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 721 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 722 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 723 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 724 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 725 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 726 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 727 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 728 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 729 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 730 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 731 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 732 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 733 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 734 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 735 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 736 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 737 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 738 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 739 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 740 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 741 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 742 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 743 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 744 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 745 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 746 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 747 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 748 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 749 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 750 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 751 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 752 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 753 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 754 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 755 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 756 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 757 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 758 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 759 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 760 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 761 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 762 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 763 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 764 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 765 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 766 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 767 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 768 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 769 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 770 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 771 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty 772 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty 773 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty 774 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty 775 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty 776 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty 777 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty 778 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty 779 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty 780 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty 781 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty 782 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty 783 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty 784 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty 785 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty 786 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty 787 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty 788 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty 789 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty 790 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty 791 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty 792 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty 793 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 794 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 795 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty 796 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty 797 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty 798 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty 799 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty 800 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty 801 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty 802 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty 803 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty 804 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty 805 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty 806 | INPUT d:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty 807 | INPUT d:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty 808 | INPUT d:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty 809 | INPUT d:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty 810 | INPUT d:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty 811 | INPUT d:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty 812 | INPUT d:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty 813 | INPUT d:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty 814 | INPUT d:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty 815 | INPUT d:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty 816 | INPUT d:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty 817 | INPUT d:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty 818 | INPUT d:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty 819 | INPUT d:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty 820 | INPUT d:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty 821 | INPUT d:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty 822 | INPUT d:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty 823 | INPUT d:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty 824 | INPUT d:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty 825 | INPUT d:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty 826 | INPUT d:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty 827 | INPUT d:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty 828 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 829 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 830 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 831 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 832 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 833 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 834 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 835 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 836 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 837 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 838 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 839 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 840 | INPUT d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 841 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/pd1enc.def 842 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/pd1enc.def 843 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/pd1enc.def 844 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/pd1enc.def 845 | INPUT d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 846 | INPUT d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 847 | INPUT d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 848 | INPUT d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 849 | INPUT d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 850 | INPUT d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 851 | INPUT d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 852 | INPUT d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 853 | INPUT d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 854 | INPUT d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 855 | INPUT d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 856 | INPUT d:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty 857 | INPUT d:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty 858 | INPUT d:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty 859 | INPUT d:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty 860 | INPUT d:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty 861 | INPUT d:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty 862 | INPUT d:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty 863 | INPUT d:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty 864 | INPUT d:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty 865 | INPUT d:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty 866 | INPUT d:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty 867 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 868 | INPUT d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 869 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/puenc.def 870 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/puenc.def 871 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/puenc.def 872 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/puenc.def 873 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 874 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 875 | INPUT d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 876 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty 877 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty 878 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty 879 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty 880 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty 881 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty 882 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty 883 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty 884 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty 885 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty 886 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty 887 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 888 | INPUT d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 889 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 890 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 891 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 892 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 893 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 894 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 895 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 896 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 897 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 898 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 899 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 900 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 901 | INPUT d:/texlive/2022/texmf-dist/tex/generic/atbegshi/atbegshi.sty 902 | INPUT d:/texlive/2022/texmf-dist/tex/generic/atbegshi/atbegshi.sty 903 | INPUT d:/texlive/2022/texmf-dist/tex/generic/atbegshi/atbegshi.sty 904 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atbegshi-ltx.sty 905 | INPUT d:/texlive/2022/texmf-dist/tex/generic/atbegshi/atbegshi.sty 906 | INPUT d:/texlive/2022/texmf-dist/tex/generic/atbegshi/atbegshi.sty 907 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atbegshi-ltx.sty 908 | INPUT d:/texlive/2022/texmf-dist/tex/generic/atbegshi/atbegshi.sty 909 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atbegshi-ltx.sty 910 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atbegshi-ltx.sty 911 | INPUT d:/texlive/2022/texmf-dist/tex/generic/atbegshi/atbegshi.sty 912 | INPUT d:/texlive/2022/texmf-dist/tex/generic/atbegshi/atbegshi.sty 913 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atbegshi-ltx.sty 914 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atbegshi-ltx.sty 915 | INPUT d:/texlive/2022/texmf-dist/tex/generic/atbegshi/atbegshi.sty 916 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atbegshi-ltx.sty 917 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hdvipdfm.def 918 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hdvipdfm.def 919 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hdvipdfm.def 920 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/hdvipdfm.def 921 | INPUT d:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty 922 | INPUT d:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty 923 | INPUT d:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty 924 | INPUT d:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty 925 | INPUT d:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty 926 | INPUT d:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty 927 | INPUT d:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty 928 | INPUT d:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty 929 | INPUT d:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty 930 | INPUT d:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty 931 | INPUT d:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty 932 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 933 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 934 | INPUT d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 935 | INPUT d:/texlive/2022/texmf-dist/tex/latex/atveryend/atveryend.sty 936 | INPUT d:/texlive/2022/texmf-dist/tex/latex/atveryend/atveryend.sty 937 | INPUT d:/texlive/2022/texmf-dist/tex/latex/atveryend/atveryend.sty 938 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atveryend-ltx.sty 939 | INPUT d:/texlive/2022/texmf-dist/tex/latex/atveryend/atveryend.sty 940 | INPUT d:/texlive/2022/texmf-dist/tex/latex/atveryend/atveryend.sty 941 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atveryend-ltx.sty 942 | INPUT d:/texlive/2022/texmf-dist/tex/latex/atveryend/atveryend.sty 943 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atveryend-ltx.sty 944 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atveryend-ltx.sty 945 | INPUT d:/texlive/2022/texmf-dist/tex/latex/atveryend/atveryend.sty 946 | INPUT d:/texlive/2022/texmf-dist/tex/latex/atveryend/atveryend.sty 947 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atveryend-ltx.sty 948 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atveryend-ltx.sty 949 | INPUT d:/texlive/2022/texmf-dist/tex/latex/atveryend/atveryend.sty 950 | INPUT d:/texlive/2022/texmf-dist/tex/latex/base/atveryend-ltx.sty 951 | INPUT d:/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty 952 | INPUT d:/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty 953 | INPUT d:/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty 954 | INPUT d:/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty 955 | INPUT d:/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty 956 | INPUT d:/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty 957 | INPUT d:/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty 958 | INPUT d:/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty 959 | INPUT d:/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty 960 | INPUT d:/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty 961 | INPUT d:/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty 962 | INPUT d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 963 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 964 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.sty 965 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.sty 966 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.sty 967 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.sty 968 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.sty 969 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.sty 970 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.sty 971 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.sty 972 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.sty 973 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.sty 974 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.sty 975 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 976 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstmisc.sty 977 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstmisc.sty 978 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstmisc.sty 979 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstmisc.sty 980 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.cfg 981 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.cfg 982 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.cfg 983 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/listings.cfg 984 | INPUT d:/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.sty 985 | INPUT d:/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.sty 986 | INPUT d:/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.sty 987 | INPUT d:/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.sty 988 | INPUT d:/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.sty 989 | INPUT d:/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.sty 990 | INPUT d:/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.sty 991 | INPUT d:/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.sty 992 | INPUT d:/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.sty 993 | INPUT d:/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.sty 994 | INPUT d:/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.sty 995 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/mathpazo.sty 996 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/mathpazo.sty 997 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/mathpazo.sty 998 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/mathpazo.sty 999 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/mathpazo.sty 1000 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/mathpazo.sty 1001 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/mathpazo.sty 1002 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/mathpazo.sty 1003 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/mathpazo.sty 1004 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/mathpazo.sty 1005 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/mathpazo.sty 1006 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.bdg 1007 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.bdg 1008 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.enc 1009 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.enc 1010 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.chr 1011 | INPUT d:/texlive/2022/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.chr 1012 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/t1ppl.fd 1013 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/t1ppl.fd 1014 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/t1ppl.fd 1015 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/t1ppl.fd 1016 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr8t.tfm 1017 | INPUT ./main.aux 1018 | INPUT main.aux 1019 | INPUT main.aux 1020 | OUTPUT main.aux 1021 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/ltcaption.sty 1022 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/ltcaption.sty 1023 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/ltcaption.sty 1024 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/ltcaption.sty 1025 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/ltcaption.sty 1026 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/ltcaption.sty 1027 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/ltcaption.sty 1028 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/ltcaption.sty 1029 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/ltcaption.sty 1030 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/ltcaption.sty 1031 | INPUT d:/texlive/2022/texmf-dist/tex/latex/caption/ltcaption.sty 1032 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 1033 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 1034 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 1035 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 1036 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 1037 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 1038 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 1039 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 1040 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 1041 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 1042 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 1043 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics-cfg/color.cfg 1044 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics-cfg/color.cfg 1045 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics-cfg/color.cfg 1046 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics-cfg/color.cfg 1047 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/dvipsnam.def 1048 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/dvipsnam.def 1049 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/dvipsnam.def 1050 | INPUT d:/texlive/2022/texmf-dist/tex/latex/graphics/dvipsnam.def 1051 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty 1052 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty 1053 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty 1054 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty 1055 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty 1056 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty 1057 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty 1058 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty 1059 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty 1060 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty 1061 | INPUT d:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty 1062 | INPUT d:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty 1063 | INPUT d:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty 1064 | INPUT d:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty 1065 | INPUT d:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty 1066 | INPUT d:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty 1067 | INPUT d:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty 1068 | INPUT d:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty 1069 | INPUT d:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty 1070 | INPUT d:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty 1071 | INPUT d:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty 1072 | INPUT d:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty 1073 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 1074 | INPUT d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 1075 | INPUT d:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty 1076 | INPUT d:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty 1077 | INPUT d:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty 1078 | INPUT d:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty 1079 | INPUT d:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty 1080 | INPUT d:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty 1081 | INPUT d:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty 1082 | INPUT d:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty 1083 | INPUT d:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty 1084 | INPUT d:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty 1085 | INPUT d:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty 1086 | INPUT d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 1087 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 1088 | OUTPUT main.out 1089 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplb8t.tfm 1090 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/fd/c70rm.fd 1091 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/fd/c70rm.fd 1092 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/fd/c70rm.fd 1093 | INPUT d:/texlive/2022/texmf-dist/tex/latex/ctex/fd/c70rm.fd 1094 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong30.tfm 1095 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr8t.tfm 1096 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr8t.tfm 1097 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplb8t.tfm 1098 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ctex/zhmap/ctex-zhmap-windows.tex 1099 | INPUT d:/texlive/2022/texmf-dist/tex/generic/ctex/zhmap/ctex-zhmap-windows.tex 1100 | OUTPUT main.dvi 1101 | OUTPUT main.toc 1102 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr8t.tfm 1103 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplb8t.tfm 1104 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr8t.tfm 1105 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplb8t.tfm 1106 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong4e.tfm 1107 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong5e.tfm 1108 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong75.tfm 1109 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong76.tfm 1110 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong51.tfm 1111 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong4f.tfm 1112 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong7f.tfm 1113 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong8b.tfm 1114 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisongff.tfm 1115 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong53.tfm 1116 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong66.tfm 1117 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong5b.tfm 1118 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong52.tfm 1119 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong90.tfm 1120 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong59.tfm 1121 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong7b.tfm 1122 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong72.tfm 1123 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong6c.tfm 1124 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong61.tfm 1125 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong89.tfm 1126 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong8d.tfm 1127 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong56.tfm 1128 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong6e.tfm 1129 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong68.tfm 1130 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong5f.tfm 1131 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong67.tfm 1132 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong77.tfm 1133 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong91.tfm 1134 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong80.tfm 1135 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong57.tfm 1136 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong7e.tfm 1137 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong97.tfm 1138 | INPUT d:/texlive/2022/texmf-dist/tex/latex/txfonts/t1txtt.fd 1139 | INPUT d:/texlive/2022/texmf-dist/tex/latex/txfonts/t1txtt.fd 1140 | INPUT d:/texlive/2022/texmf-dist/tex/latex/txfonts/t1txtt.fd 1141 | INPUT d:/texlive/2022/texmf-dist/tex/latex/txfonts/t1txtt.fd 1142 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/txfonts/t1xtt.tfm 1143 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong73.tfm 1144 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong79.tfm 1145 | INPUT ./img/example-image-a.pdf 1146 | INPUT ./img/example-image-a.pdf 1147 | INPUT img/example-image-a.pdf 1148 | INPUT extractbb -B cropbox -O img/example-image-a.pdf 1149 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr8t.tfm 1150 | INPUT ./img/example-image-b.pdf 1151 | INPUT ./img/example-image-b.pdf 1152 | INPUT img/example-image-b.pdf 1153 | INPUT extractbb -B cropbox -O img/example-image-b.pdf 1154 | INPUT ./img/example-image-a.pdf 1155 | INPUT ./img/example-image-a.pdf 1156 | INPUT img/example-image-a.pdf 1157 | INPUT ./img/example-image-b.pdf 1158 | INPUT ./img/example-image-b.pdf 1159 | INPUT img/example-image-b.pdf 1160 | INPUT ./img/example-image-c.pdf 1161 | INPUT ./img/example-image-c.pdf 1162 | INPUT img/example-image-c.pdf 1163 | INPUT extractbb -B cropbox -O img/example-image-c.pdf 1164 | INPUT ./img/example-image-a.pdf 1165 | INPUT ./img/example-image-a.pdf 1166 | INPUT img/example-image-a.pdf 1167 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong5d.tfm 1168 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong4e.tfm 1169 | INPUT ./img/example-image-b.pdf 1170 | INPUT ./img/example-image-b.pdf 1171 | INPUT img/example-image-b.pdf 1172 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong53.tfm 1173 | INPUT ./img/example-image-a.pdf 1174 | INPUT ./img/example-image-a.pdf 1175 | INPUT img/example-image-a.pdf 1176 | INPUT ./img/example-image-b.pdf 1177 | INPUT ./img/example-image-b.pdf 1178 | INPUT img/example-image-b.pdf 1179 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong7e.tfm 1180 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong56.tfm 1181 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong53.tfm 1182 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/ts1ppl.fd 1183 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/ts1ppl.fd 1184 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/ts1ppl.fd 1185 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/ts1ppl.fd 1186 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr8c.tfm 1187 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/ot1ppl.fd 1188 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/ot1ppl.fd 1189 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/ot1ppl.fd 1190 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/ot1ppl.fd 1191 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr7t.tfm 1192 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr7t.tfm 1193 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr7t.tfm 1194 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/omlzplm.fd 1195 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/omlzplm.fd 1196 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/omlzplm.fd 1197 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/omlzplm.fd 1198 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7m.tfm 1199 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7m.tfm 1200 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7m.tfm 1201 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/omszplm.fd 1202 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/omszplm.fd 1203 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/omszplm.fd 1204 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/omszplm.fd 1205 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7y.tfm 1206 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7y.tfm 1207 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7y.tfm 1208 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/omxzplm.fd 1209 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/omxzplm.fd 1210 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/omxzplm.fd 1211 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/omxzplm.fd 1212 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7v.tfm 1213 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7v.tfm 1214 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7v.tfm 1215 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm 1216 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm 1217 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm 1218 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm 1219 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm 1220 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm 1221 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/ot1zplm.fd 1222 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/ot1zplm.fd 1223 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/ot1zplm.fd 1224 | INPUT d:/texlive/2022/texmf-dist/tex/latex/psnfss/ot1zplm.fd 1225 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7t.tfm 1226 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7t.tfm 1227 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7t.tfm 1228 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr8t.tfm 1229 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr7t.tfm 1230 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7m.tfm 1231 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7y.tfm 1232 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7v.tfm 1233 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm 1234 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm 1235 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7t.tfm 1236 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr8t.tfm 1237 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplb8t.tfm 1238 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong8f.tfm 1239 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong63.tfm 1240 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplri8t.tfm 1241 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplbi8t.tfm 1242 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong50.tfm 1243 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong74.tfm 1244 | INPUT ./img//water.png 1245 | INPUT ./img//water.png 1246 | INPUT img//water.png 1247 | INPUT extractbb -B cropbox -O img//water.png 1248 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong78.tfm 1249 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong9e.tfm 1250 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhmetrics/c70zhfs.fd 1251 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhmetrics/c70zhfs.fd 1252 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhmetrics/c70zhfs.fd 1253 | INPUT d:/texlive/2022/texmf-dist/tex/latex/zhmetrics/c70zhfs.fd 1254 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs96.tfm 1255 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs85.tfm 1256 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs88.tfm 1257 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs53.tfm 1258 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs76.tfm 1259 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs4e.tfm 1260 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs7e.tfm 1261 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs5f.tfm 1262 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs4f.tfm 1263 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs78.tfm 1264 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong65.tfm 1265 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs8f.tfm 1266 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs90.tfm 1267 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs52.tfm 1268 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs91.tfm 1269 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs89.tfm 1270 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifsff.tfm 1271 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs80.tfm 1272 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unifs/unifs7f.tfm 1273 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/zhmetrics/unisong/unisong6b.tfm 1274 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplb8t.tfm 1275 | INPUT ./main.bbl 1276 | INPUT main.bbl 1277 | INPUT ./main.bbl 1278 | INPUT main.bbl 1279 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr7t.tfm 1280 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/adobe/palatino/pplr7t.tfm 1281 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7m.tfm 1282 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7m.tfm 1283 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7y.tfm 1284 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7y.tfm 1285 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7v.tfm 1286 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7v.tfm 1287 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm 1288 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm 1289 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm 1290 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm 1291 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7t.tfm 1292 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/mathpazo/zplmr7t.tfm 1293 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 1294 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 1295 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 1296 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 1297 | INPUT ./code/example.py 1298 | INPUT code/example.py 1299 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/txfonts/t1xbtt.tfm 1300 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/txfonts/t1xtt.tfm 1301 | INPUT ./code/example.py 1302 | INPUT code/example.py 1303 | INPUT ./code/example.py 1304 | INPUT code/example.py 1305 | INPUT d:/texlive/2022/texmf-dist/fonts/tfm/public/txfonts/t1xttsl.tfm 1306 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 1307 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 1308 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 1309 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 1310 | INPUT ./code/example.m 1311 | INPUT code/example.m 1312 | INPUT ./code/example.m 1313 | INPUT code/example.m 1314 | INPUT ./code/example.m 1315 | INPUT code/example.m 1316 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 1317 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 1318 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 1319 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 1320 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang2.sty 1321 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang2.sty 1322 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang2.sty 1323 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang2.sty 1324 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang3.sty 1325 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang3.sty 1326 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang3.sty 1327 | INPUT d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang3.sty 1328 | -------------------------------------------------------------------------------- /main.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.141592653-2.6-0.999994 (TeX Live 2022) (preloaded format=xelatex 2022.11.9) 2 FEB 2024 09:44 2 | entering extended mode 3 | restricted \write18 enabled. 4 | file:line:error style messages enabled. 5 | %&-line parsing enabled. 6 | **d:/.BNU/模板/LDMCM/main 7 | (d:/.BNU/模板/LDMCM/main.tex 8 | LaTeX2e <2021-11-15> patch level 1 9 | L3 programming layer <2022-02-24> (d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexart.cls (d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctexbackend.cfg 10 | File: ctexbackend.cfg 2021/12/12 v2.5.8 Backend configuration file (CTEX) 11 | ) (d:/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty 12 | Package: expl3 2022-02-24 L3 programming layer (loader) 13 | (d:/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-xetex.def 14 | File: l3backend-xetex.def 2022-02-07 L3 backend support: XeTeX 15 | (|extractbb --version) 16 | \c__kernel_sys_dvipdfmx_version_int=\count181 17 | \l__color_backend_stack_int=\count182 18 | \g__color_backend_stack_int=\count183 19 | \g__graphics_track_int=\count184 20 | \l__pdf_internal_box=\box50 21 | \g__pdf_backend_object_int=\count185 22 | \g__pdf_backend_annotation_int=\count186 23 | \g__pdf_backend_link_int=\count187 24 | )) 25 | Document Class: ctexart 2021/12/12 v2.5.8 Chinese adapter for class article (CTEX) 26 | (d:/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 27 | Package: xparse 2022-01-12 L3 Experimental document command parser 28 | ) (d:/texlive/2022/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 29 | Package: l3keys2e 2022-01-12 LaTeX2e option processing using LaTeX3 keys 30 | ) (d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexhook.sty 31 | Package: ctexhook 2021/12/12 v2.5.8 Document and package hooks (CTEX) 32 | ) (d:/texlive/2022/texmf-dist/tex/latex/ctex/ctexpatch.sty 33 | Package: ctexpatch 2021/12/12 v2.5.8 Patching commands (CTEX) 34 | ) (d:/texlive/2022/texmf-dist/tex/latex/base/fix-cm.sty 35 | Package: fix-cm 2020/11/24 v1.1t fixes to LaTeX 36 | (d:/texlive/2022/texmf-dist/tex/latex/base/ts1enc.def 37 | File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file 38 | LaTeX Font Info: Redeclaring font encoding TS1 on input line 47. 39 | )) 40 | \l__ctex_tmp_int=\count188 41 | \l__ctex_tmp_box=\box51 42 | \l__ctex_tmp_dim=\dimen138 43 | \g__ctex_section_depth_int=\count189 44 | \g__ctex_font_size_int=\count190 45 | (d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 46 | File: ctexopts.cfg 2021/12/12 v2.5.8 Option configuration file (CTEX) 47 | ) (d:/texlive/2022/texmf-dist/tex/latex/base/article.cls 48 | Document Class: article 2021/10/04 v1.4n Standard LaTeX document class 49 | (d:/texlive/2022/texmf-dist/tex/latex/base/size12.clo 50 | File: size12.clo 2021/10/04 v1.4n Standard LaTeX file (size option) 51 | ) 52 | \c@part=\count191 53 | \c@section=\count192 54 | \c@subsection=\count193 55 | \c@subsubsection=\count194 56 | \c@paragraph=\count195 57 | \c@subparagraph=\count196 58 | \c@figure=\count197 59 | \c@table=\count198 60 | \abovecaptionskip=\skip47 61 | \belowcaptionskip=\skip48 62 | \bibindent=\dimen139 63 | ) (d:/texlive/2022/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def 64 | File: ctex-engine-xetex.def 2021/12/12 v2.5.8 XeLaTeX adapter (CTEX) 65 | (d:/texlive/2022/texmf-dist/tex/xelatex/xecjk/xeCJK.sty 66 | Package: xeCJK 2021/12/12 v3.8.8 Typesetting CJK scripts with XeLaTeX 67 | (d:/texlive/2022/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty 68 | Package: xtemplate 2022-01-12 L3 Experimental prototype document functions 69 | \l__xtemplate_tmp_dim=\dimen140 70 | \l__xtemplate_tmp_int=\count199 71 | \l__xtemplate_tmp_muskip=\muskip16 72 | \l__xtemplate_tmp_skip=\skip49 73 | ) 74 | \l__xeCJK_tmp_int=\count266 75 | \l__xeCJK_tmp_box=\box52 76 | \l__xeCJK_tmp_dim=\dimen141 77 | \l__xeCJK_tmp_skip=\skip50 78 | \g__xeCJK_space_factor_int=\count267 79 | \l__xeCJK_begin_int=\count268 80 | \l__xeCJK_end_int=\count269 81 | \c__xeCJK_CJK_class_int=\XeTeXcharclass1 82 | \c__xeCJK_FullLeft_class_int=\XeTeXcharclass2 83 | \c__xeCJK_FullRight_class_int=\XeTeXcharclass3 84 | \c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4 85 | \c__xeCJK_HalfRight_class_int=\XeTeXcharclass5 86 | \c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6 87 | \c__xeCJK_CM_class_int=\XeTeXcharclass7 88 | \c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8 89 | \l__xeCJK_last_skip=\skip51 90 | \g__xeCJK_node_int=\count270 91 | \c__xeCJK_CJK_node_dim=\dimen142 92 | \c__xeCJK_CJK-space_node_dim=\dimen143 93 | \c__xeCJK_default_node_dim=\dimen144 94 | \c__xeCJK_default-space_node_dim=\dimen145 95 | \c__xeCJK_CJK-widow_node_dim=\dimen146 96 | \c__xeCJK_normalspace_node_dim=\dimen147 97 | \l__xeCJK_ccglue_skip=\skip52 98 | \l__xeCJK_ecglue_skip=\skip53 99 | \l__xeCJK_punct_kern_skip=\skip54 100 | \l__xeCJK_last_penalty_int=\count271 101 | \l__xeCJK_last_bound_dim=\dimen148 102 | \l__xeCJK_last_kern_dim=\dimen149 103 | \l__xeCJK_widow_penalty_int=\count272 104 | 105 | Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0 106 | (xtemplate) argument(s) on line 2337. 107 | 108 | \l__xeCJK_fixed_punct_width_dim=\dimen150 109 | \l__xeCJK_mixed_punct_width_dim=\dimen151 110 | \l__xeCJK_middle_punct_width_dim=\dimen152 111 | \l__xeCJK_fixed_margin_width_dim=\dimen153 112 | \l__xeCJK_mixed_margin_width_dim=\dimen154 113 | \l__xeCJK_middle_margin_width_dim=\dimen155 114 | \l__xeCJK_bound_punct_width_dim=\dimen156 115 | \l__xeCJK_bound_margin_width_dim=\dimen157 116 | \l__xeCJK_margin_minimum_dim=\dimen158 117 | \l__xeCJK_kerning_total_width_dim=\dimen159 118 | \l__xeCJK_same_align_margin_dim=\dimen160 119 | \l__xeCJK_different_align_margin_dim=\dimen161 120 | \l__xeCJK_kerning_margin_width_dim=\dimen162 121 | \l__xeCJK_kerning_margin_minimum_dim=\dimen163 122 | \l__xeCJK_bound_dim=\dimen164 123 | \l__xeCJK_reverse_bound_dim=\dimen165 124 | \l__xeCJK_margin_dim=\dimen166 125 | \l__xeCJK_minimum_bound_dim=\dimen167 126 | \l__xeCJK_kerning_margin_dim=\dimen168 127 | \g__xeCJK_family_int=\count273 128 | \l__xeCJK_fam_int=\count274 129 | \g__xeCJK_fam_allocation_int=\count275 130 | \l__xeCJK_verb_case_int=\count276 131 | \l__xeCJK_verb_exspace_skip=\skip55 132 | (d:/texlive/2022/texmf-dist/tex/latex/fontspec/fontspec.sty 133 | Package: fontspec 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaTeX 134 | (d:/texlive/2022/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty 135 | Package: fontspec-xetex 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaTeX 136 | \l__fontspec_script_int=\count277 137 | \l__fontspec_language_int=\count278 138 | \l__fontspec_strnum_int=\count279 139 | \l__fontspec_tmp_int=\count280 140 | \l__fontspec_tmpa_int=\count281 141 | \l__fontspec_tmpb_int=\count282 142 | \l__fontspec_tmpc_int=\count283 143 | \l__fontspec_em_int=\count284 144 | \l__fontspec_emdef_int=\count285 145 | \l__fontspec_strong_int=\count286 146 | \l__fontspec_strongdef_int=\count287 147 | \l__fontspec_tmpa_dim=\dimen169 148 | \l__fontspec_tmpb_dim=\dimen170 149 | \l__fontspec_tmpc_dim=\dimen171 150 | (d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 151 | Package: fontenc 2021/04/29 v2.0v Standard LaTeX package 152 | ) (d:/texlive/2022/texmf-dist/tex/latex/fontspec/fontspec.cfg))) (d:/texlive/2022/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg 153 | File: xeCJK.cfg 2021/12/12 v3.8.8 Configuration file for xeCJK package 154 | )) 155 | \ccwd=\dimen172 156 | \l__ctex_ccglue_skip=\skip56 157 | ) 158 | \l__ctex_ziju_dim=\dimen173 159 | (d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber.sty 160 | Package: zhnumber 2020/05/01 v2.8 Typesetting numbers with Chinese glyphs 161 | \l__zhnum_scale_int=\count288 162 | (d:/texlive/2022/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 163 | File: zhnumber-utf8.cfg 2020/05/01 v2.8 Chinese numerals with UTF8 encoding 164 | )) 165 | \l__ctex_heading_skip=\skip57 166 | (d:/texlive/2022/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-article.def 167 | File: ctex-scheme-chinese-article.def 2021/12/12 v2.5.8 Chinese scheme for article (CTEX) 168 | (d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 169 | File: ctex-name-utf8.cfg 2021/12/12 v2.5.8 Caption with encoding UTF-8 (CTEX) 170 | )) (d:/texlive/2022/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-windows.def 171 | File: ctex-fontset-windows.def 2021/12/12 v2.5.8 Windows fonts definition (CTEX) 172 | 173 | Package fontspec Info: Could not resolve font "KaiTi/B" (it probably doesn't 174 | (fontspec) exist). 175 | 176 | 177 | Package fontspec Info: Could not resolve font "SimHei/I" (it probably doesn't 178 | (fontspec) exist). 179 | 180 | 181 | Package fontspec Info: Could not resolve font "SimSun/BI" (it probably doesn't 182 | (fontspec) exist). 183 | 184 | 185 | Package fontspec Info: Font family 'SimSun(0)' created for font 'SimSun' with 186 | (fontspec) options 187 | (fontspec) [Script={CJK},BoldFont={SimHei},ItalicFont={KaiTi}]. 188 | (fontspec) 189 | (fontspec) This font family consists of the following NFSS 190 | (fontspec) series/shapes: 191 | (fontspec) 192 | (fontspec) - 'normal' (m/n) with NFSS spec.: 193 | (fontspec) <->"SimSun/OT:script=hani;language=dflt;" 194 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 195 | (fontspec) - 'bold' (b/n) with NFSS spec.: 196 | (fontspec) <->"SimHei/OT:script=hani;language=dflt;" 197 | (fontspec) - 'bold small caps' (b/sc) with NFSS spec.: 198 | (fontspec) - 'italic' (m/it) with NFSS spec.: 199 | (fontspec) <->"KaiTi/OT:script=hani;language=dflt;" 200 | (fontspec) - 'italic small caps' (m/scit) with NFSS spec.: 201 | 202 | )) (d:/texlive/2022/texmf-dist/tex/latex/ctex/config/ctex.cfg 203 | File: ctex.cfg 2021/12/12 v2.5.8 Configuration file (CTEX) 204 | ) 205 | 206 | Package ctex Warning: Command `\CTEXsetup' is deprecated. 207 | (ctex) \ctexset { section = { format={\Large \bfseries } } } is 208 | (ctex) set. 209 | 210 | (./ldmcm.sty 211 | Package: ldmcm 2023/01/05 212 | 213 | easymcm package, version 5.2.2 214 | (d:/texlive/2022/texmf-dist/tex/latex/geometry/geometry.sty 215 | Package: geometry 2020/01/02 v5.9 Page Geometry 216 | (d:/texlive/2022/texmf-dist/tex/latex/graphics/keyval.sty 217 | Package: keyval 2014/10/28 v1.15 key=value parser (DPC) 218 | \KV@toks@=\toks16 219 | ) (d:/texlive/2022/texmf-dist/tex/generic/iftex/ifvtex.sty 220 | Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. 221 | (d:/texlive/2022/texmf-dist/tex/generic/iftex/iftex.sty 222 | Package: iftex 2022/02/03 v1.0f TeX engine tests 223 | )) 224 | \Gm@cnth=\count289 225 | \Gm@cntv=\count290 226 | \c@Gm@tempcnt=\count291 227 | \Gm@bindingoffset=\dimen174 228 | \Gm@wd@mp=\dimen175 229 | \Gm@odd@mp=\dimen176 230 | \Gm@even@mp=\dimen177 231 | \Gm@layoutwidth=\dimen178 232 | \Gm@layoutheight=\dimen179 233 | \Gm@layouthoffset=\dimen180 234 | \Gm@layoutvoffset=\dimen181 235 | \Gm@dimlist=\toks17 236 | ) (d:/texlive/2022/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 237 | Package: fancyhdr 2021/01/28 v4.0.1 Extensive control of page headers and footers 238 | \f@nch@headwidth=\skip58 239 | \f@nch@O@elh=\skip59 240 | \f@nch@O@erh=\skip60 241 | \f@nch@O@olh=\skip61 242 | \f@nch@O@orh=\skip62 243 | \f@nch@O@elf=\skip63 244 | \f@nch@O@erf=\skip64 245 | \f@nch@O@olf=\skip65 246 | \f@nch@O@orf=\skip66 247 | ) (d:/texlive/2022/texmf-dist/tex/latex/fancybox/fancybox.sty 248 | Package: fancybox 2010/05/15 1.4 249 | 250 | Style option: `fancybox' v1.4 <2010/05/15> (tvz) 251 | \@fancybox=\box53 252 | \shadowsize=\dimen182 253 | \@Sbox=\box54 254 | \do@VerbBox=\toks18 255 | \the@fancyput=\toks19 256 | \this@fancyput=\toks20 257 | \EndVerbatimTokens=\toks21 258 | \Verbatim@Outfile=\write3 259 | \Verbatim@Infile=\read2 260 | ) (d:/texlive/2022/texmf-dist/tex/latex/base/ifthen.sty 261 | Package: ifthen 2020/11/24 v1.1c Standard LaTeX ifthen package (DPC) 262 | ) (d:/texlive/2022/texmf-dist/tex/latex/lastpage/lastpage.sty 263 | Package: lastpage 2021/09/03 v1.2n Refers to last page's name (HMM; JPG) 264 | ) (d:/texlive/2022/texmf-dist/tex/latex/paralist/paralist.sty 265 | Package: paralist 2017/01/22 v2.7 Extended list environments 266 | \pltopsep=\skip67 267 | \plpartopsep=\skip68 268 | \plitemsep=\skip69 269 | \plparsep=\skip70 270 | \pl@lab=\toks22 271 | ) (d:/texlive/2022/texmf-dist/tex/latex/tools/indentfirst.sty 272 | Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC) 273 | ) (d:/texlive/2022/texmf-dist/tex/latex/appendix/appendix.sty 274 | Package: appendix 2020/02/08 v1.2c extra appendix facilities 275 | \c@@pps=\count292 276 | \c@@ppsavesec=\count293 277 | \c@@ppsaveapp=\count294 278 | ) (d:/texlive/2022/texmf-dist/tex/latex/threeparttable/threeparttable.sty 279 | Package: threeparttable 2003/06/13 v 3.0 280 | \@tempboxb=\box55 281 | ) (d:/texlive/2022/texmf-dist/tex/latex/algorithm2e/algorithm2e.sty 282 | Invalid UTF-8 byte or sequence at line 284 replaced by U+FFFD. 283 | Invalid UTF-8 byte or sequence at line 299 replaced by U+FFFD. 284 | Invalid UTF-8 byte or sequence at line 550 replaced by U+FFFD. 285 | Package: algorithm2e 2017/07/18 v5.2 algorithms environments 286 | \c@AlgoLine=\count295 287 | \algocf@hangindent=\skip71 288 | (d:/texlive/2022/texmf-dist/tex/latex/ifoddpage/ifoddpage.sty 289 | Package: ifoddpage 2016/04/23 v1.1 Conditionals for odd/even page detection 290 | \c@checkoddpage=\count296 291 | ) (d:/texlive/2022/texmf-dist/tex/latex/tools/xspace.sty 292 | Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH) 293 | ) (d:/texlive/2022/texmf-dist/tex/latex/relsize/relsize.sty 294 | Package: relsize 2013/03/29 ver 4.1 295 | ) 296 | \skiptotal=\skip72 297 | \skiplinenumber=\skip73 298 | \skiprule=\skip74 299 | \skiphlne=\skip75 300 | \skiptext=\skip76 301 | \skiplength=\skip77 302 | \algomargin=\skip78 303 | \skipalgocfslide=\skip79 304 | \algowidth=\dimen183 305 | \inoutsize=\dimen184 306 | \inoutindent=\dimen185 307 | \interspacetitleruled=\dimen186 308 | \interspacealgoruled=\dimen187 309 | \interspacetitleboxruled=\dimen188 310 | \algocf@ruledwidth=\skip80 311 | \algocf@inoutbox=\box56 312 | \algocf@inputbox=\box57 313 | \AlCapSkip=\skip81 314 | \AlCapHSkip=\skip82 315 | \algoskipindent=\skip83 316 | \algocf@nlbox=\box58 317 | \algocf@hangingbox=\box59 318 | \algocf@untilbox=\box60 319 | \algocf@skipuntil=\skip84 320 | \algocf@capbox=\box61 321 | \algocf@lcaptionbox=\skip85 322 | \algoheightruledefault=\skip86 323 | \algoheightrule=\skip87 324 | \algotitleheightruledefault=\skip88 325 | \algotitleheightrule=\skip89 326 | \c@algocfline=\count297 327 | \c@algocfproc=\count298 328 | \c@algocf=\count299 329 | \algocf@algoframe=\box62 330 | \algocf@algobox=\box63 331 | ) (d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amsfonts.sty 332 | Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support 333 | \@emptytoks=\toks23 334 | \symAMSa=\mathgroup4 335 | \symAMSb=\mathgroup5 336 | LaTeX Font Info: Redeclaring math symbol \hbar on input line 98. 337 | LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' 338 | (Font) U/euf/m/n --> U/euf/b/n on input line 106. 339 | ) (d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsmath.sty 340 | Package: amsmath 2021/10/15 v2.17l AMS math features 341 | \@mathmargin=\skip90 342 | 343 | For additional information on amsmath, use the `?' option. 344 | (d:/texlive/2022/texmf-dist/tex/latex/amsmath/amstext.sty 345 | Package: amstext 2021/08/26 v2.01 AMS text 346 | (d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsgen.sty 347 | File: amsgen.sty 1999/11/30 v2.0 generic functions 348 | \@emptytoks=\toks24 349 | \ex@=\dimen189 350 | )) (d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsbsy.sty 351 | Package: amsbsy 1999/11/29 v1.2d Bold Symbols 352 | \pmbraise@=\dimen190 353 | ) (d:/texlive/2022/texmf-dist/tex/latex/amsmath/amsopn.sty 354 | Package: amsopn 2021/08/26 v2.02 operator names 355 | ) 356 | \inf@bad=\count300 357 | LaTeX Info: Redefining \frac on input line 234. 358 | \uproot@=\count301 359 | \leftroot@=\count302 360 | LaTeX Info: Redefining \overline on input line 399. 361 | \classnum@=\count303 362 | \DOTSCASE@=\count304 363 | LaTeX Info: Redefining \ldots on input line 496. 364 | LaTeX Info: Redefining \dots on input line 499. 365 | LaTeX Info: Redefining \cdots on input line 620. 366 | \Mathstrutbox@=\box64 367 | \strutbox@=\box65 368 | \big@size=\dimen191 369 | LaTeX Font Info: Redeclaring font encoding OML on input line 743. 370 | LaTeX Font Info: Redeclaring font encoding OMS on input line 744. 371 | \macc@depth=\count305 372 | \c@MaxMatrixCols=\count306 373 | \dotsspace@=\muskip17 374 | \c@parentequation=\count307 375 | \dspbrk@lvl=\count308 376 | \tag@help=\toks25 377 | \row@=\count309 378 | \column@=\count310 379 | \maxfields@=\count311 380 | \andhelp@=\toks26 381 | \eqnshift@=\dimen192 382 | \alignsep@=\dimen193 383 | \tagshift@=\dimen194 384 | \tagwidth@=\dimen195 385 | \totwidth@=\dimen196 386 | \lineht@=\dimen197 387 | \@envbody=\toks27 388 | \multlinegap=\skip91 389 | \multlinetaggap=\skip92 390 | \mathdisplay@stack=\toks28 391 | LaTeX Info: Redefining \[ on input line 2938. 392 | LaTeX Info: Redefining \] on input line 2939. 393 | ) (d:/texlive/2022/texmf-dist/tex/latex/amsfonts/amssymb.sty 394 | Package: amssymb 2013/01/14 v3.01 AMS font symbols 395 | ) 396 | \c@Theorem=\count312 397 | (d:/texlive/2022/texmf-dist/tex/latex/titlesec/titlesec.sty 398 | Package: titlesec 2021/07/05 v2.14 Sectioning titles 399 | \ttl@box=\box66 400 | \beforetitleunit=\skip93 401 | \aftertitleunit=\skip94 402 | \ttl@plus=\dimen198 403 | \ttl@minus=\dimen199 404 | \ttl@toksa=\toks29 405 | \titlewidth=\dimen256 406 | \titlewidthlast=\dimen257 407 | \titlewidthfirst=\dimen258 408 | ) (d:/texlive/2022/texmf-dist/tex/latex/titlesec/titletoc.sty 409 | Package: titletoc 2021/07/05 v2.14 TOC entries 410 | \ttl@leftsep=\dimen259 411 | ) (d:/texlive/2022/texmf-dist/tex/latex/caption/caption.sty 412 | Package: caption 2022/03/01 v3.6b Customizing captions (AR) 413 | (d:/texlive/2022/texmf-dist/tex/latex/caption/caption3.sty 414 | Package: caption3 2022/03/17 v2.3b caption3 kernel (AR) 415 | \caption@tempdima=\dimen260 416 | \captionmargin=\dimen261 417 | \caption@leftmargin=\dimen262 418 | \caption@rightmargin=\dimen263 419 | \caption@width=\dimen264 420 | \caption@indent=\dimen265 421 | \caption@parindent=\dimen266 422 | \caption@hangindent=\dimen267 423 | Package caption Info: Standard document class detected. 424 | ) 425 | \c@caption@flags=\count313 426 | \c@continuedfloat=\count314 427 | Package caption Info: threeparttable package is loaded. 428 | ) (d:/texlive/2022/texmf-dist/tex/latex/tools/longtable.sty 429 | Package: longtable 2021-09-01 v4.17 Multi-page Table package (DPC) 430 | \LTleft=\skip95 431 | \LTright=\skip96 432 | \LTpre=\skip97 433 | \LTpost=\skip98 434 | \LTchunksize=\count315 435 | \LTcapwidth=\dimen268 436 | \LT@head=\box67 437 | \LT@firsthead=\box68 438 | \LT@foot=\box69 439 | \LT@lastfoot=\box70 440 | \LT@gbox=\box71 441 | \LT@cols=\count316 442 | \LT@rows=\count317 443 | \c@LT@tables=\count318 444 | \c@LT@chunks=\count319 445 | \LT@p@ftn=\toks30 446 | ) (d:/texlive/2022/texmf-dist/tex/latex/multirow/multirow.sty 447 | Package: multirow 2021/03/15 v2.8 Span multiple rows of a table 448 | \multirow@colwidth=\skip99 449 | \multirow@cntb=\count320 450 | \multirow@dima=\skip100 451 | \bigstrutjot=\dimen269 452 | ) (d:/texlive/2022/texmf-dist/tex/latex/tools/array.sty 453 | Package: array 2021/10/04 v2.5f Tabular extension package (FMi) 454 | \col@sep=\dimen270 455 | \ar@mcellbox=\box72 456 | \extrarowheight=\dimen271 457 | \NC@list=\toks31 458 | \extratabsurround=\skip101 459 | \backup@length=\skip102 460 | \ar@cellbox=\box73 461 | ) (d:/texlive/2022/texmf-dist/tex/latex/booktabs/booktabs.sty 462 | Package: booktabs 2020/01/12 v1.61803398 Publication quality tables 463 | \heavyrulewidth=\dimen272 464 | \lightrulewidth=\dimen273 465 | \cmidrulewidth=\dimen274 466 | \belowrulesep=\dimen275 467 | \belowbottomsep=\dimen276 468 | \aboverulesep=\dimen277 469 | \abovetopsep=\dimen278 470 | \cmidrulesep=\dimen279 471 | \cmidrulekern=\dimen280 472 | \defaultaddspace=\dimen281 473 | \@cmidla=\count321 474 | \@cmidlb=\count322 475 | \@aboverulesep=\dimen282 476 | \@belowrulesep=\dimen283 477 | \@thisruleclass=\count323 478 | \@lastruleclass=\count324 479 | \@thisrulewidth=\dimen284 480 | ) (d:/texlive/2022/texmf-dist/tex/latex/base/fontenc.sty 481 | Package: fontenc 2021/04/29 v2.0v Standard LaTeX package 482 | LaTeX Font Info: Trying to load font information for T1+lmr on input line 112. 483 | (d:/texlive/2022/texmf-dist/tex/latex/lm/t1lmr.fd 484 | File: t1lmr.fd 2015/05/01 v1.6.1 Font defs for Latin Modern 485 | )) (d:/texlive/2022/texmf-dist/tex/latex/url/url.sty 486 | \Urlmuskip=\muskip18 487 | Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. 488 | ) (d:/texlive/2022/texmf-dist/tex/latex/graphics/graphicx.sty 489 | Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) 490 | (d:/texlive/2022/texmf-dist/tex/latex/graphics/graphics.sty 491 | Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR) 492 | (d:/texlive/2022/texmf-dist/tex/latex/graphics/trig.sty 493 | Package: trig 2021/08/11 v1.11 sin cos tan (DPC) 494 | ) (d:/texlive/2022/texmf-dist/tex/latex/graphics-cfg/graphics.cfg 495 | File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration 496 | ) 497 | Package graphics Info: Driver file: xetex.def on input line 107. 498 | (d:/texlive/2022/texmf-dist/tex/latex/graphics-def/xetex.def 499 | File: xetex.def 2021/03/18 v5.0k Graphics/color driver for xetex 500 | )) 501 | \Gin@req@height=\dimen285 502 | \Gin@req@width=\dimen286 503 | ) (d:/texlive/2022/texmf-dist/tex/latex/caption/subcaption.sty 504 | Package: subcaption 2022/01/07 v1.5 Sub-captions (AR) 505 | \c@subfigure=\count325 506 | \c@subtable=\count326 507 | ) (d:/texlive/2022/texmf-dist/tex/latex/base/flafter.sty 508 | Package: flafter 2021/07/31 v1.4e Standard LaTeX floats after reference (FMi) 509 | Applying: [2015/01/01] float order in 2-column on input line 49. 510 | Already applied: [0000/00/00] float order in 2-column on input line 151. 511 | ) (d:/texlive/2022/texmf-dist/tex/generic/iftex/ifpdf.sty 512 | Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead. 513 | ) (d:/texlive/2022/texmf-dist/tex/latex/hyperref/hyperref.sty 514 | Package: hyperref 2022-02-21 v7.00n Hypertext links for LaTeX 515 | (d:/texlive/2022/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty 516 | Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO) 517 | ) (d:/texlive/2022/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty 518 | Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO) 519 | (d:/texlive/2022/texmf-dist/tex/generic/infwarerr/infwarerr.sty 520 | Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) 521 | ) 522 | Package pdftexcmds Info: \pdf@primitive is available. 523 | Package pdftexcmds Info: \pdf@ifprimitive is available. 524 | Package pdftexcmds Info: \pdfdraftmode not found. 525 | ) (d:/texlive/2022/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty 526 | Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) 527 | ) (d:/texlive/2022/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty 528 | Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) 529 | ) (d:/texlive/2022/texmf-dist/tex/generic/pdfescape/pdfescape.sty 530 | Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) 531 | ) (d:/texlive/2022/texmf-dist/tex/latex/hycolor/hycolor.sty 532 | Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) 533 | ) (d:/texlive/2022/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty 534 | Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) 535 | ) (d:/texlive/2022/texmf-dist/tex/latex/auxhook/auxhook.sty 536 | Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) 537 | ) (d:/texlive/2022/texmf-dist/tex/latex/kvoptions/kvoptions.sty 538 | Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO) 539 | ) 540 | \@linkdim=\dimen287 541 | \Hy@linkcounter=\count327 542 | \Hy@pagecounter=\count328 543 | (d:/texlive/2022/texmf-dist/tex/latex/hyperref/pd1enc.def 544 | File: pd1enc.def 2022-02-21 v7.00n Hyperref: PDFDocEncoding definition (HO) 545 | ) (d:/texlive/2022/texmf-dist/tex/generic/intcalc/intcalc.sty 546 | Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) 547 | ) (d:/texlive/2022/texmf-dist/tex/generic/etexcmds/etexcmds.sty 548 | Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) 549 | ) 550 | \Hy@SavedSpaceFactor=\count329 551 | (d:/texlive/2022/texmf-dist/tex/latex/hyperref/puenc.def 552 | File: puenc.def 2022-02-21 v7.00n Hyperref: PDF Unicode definition (HO) 553 | ) 554 | Package hyperref Info: Option `unicode' set `true' on input line 4018. 555 | Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 4018. 556 | Package hyperref Info: Option `bookmarksopen' set `true' on input line 4018. 557 | Package hyperref Info: Option `colorlinks' set `true' on input line 4018. 558 | Package hyperref Info: Hyper figures OFF on input line 4137. 559 | Package hyperref Info: Link nesting OFF on input line 4142. 560 | Package hyperref Info: Hyper index ON on input line 4145. 561 | Package hyperref Info: Plain pages OFF on input line 4152. 562 | Package hyperref Info: Backreferencing OFF on input line 4157. 563 | Package hyperref Info: Implicit mode ON; LaTeX internals redefined. 564 | Package hyperref Info: Bookmarks ON on input line 4390. 565 | \c@Hy@tempcnt=\count330 566 | LaTeX Info: Redefining \url on input line 4749. 567 | \XeTeXLinkMargin=\dimen288 568 | (d:/texlive/2022/texmf-dist/tex/generic/bitset/bitset.sty 569 | Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) 570 | (d:/texlive/2022/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty 571 | Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO) 572 | )) 573 | \Fld@menulength=\count331 574 | \Field@Width=\dimen289 575 | \Fld@charsize=\dimen290 576 | Package hyperref Info: Hyper figures OFF on input line 6027. 577 | Package hyperref Info: Link nesting OFF on input line 6032. 578 | Package hyperref Info: Hyper index ON on input line 6035. 579 | Package hyperref Info: backreferencing OFF on input line 6042. 580 | Package hyperref Info: Link coloring ON on input line 6045. 581 | Package hyperref Info: Link coloring with OCG OFF on input line 6052. 582 | Package hyperref Info: PDF/A mode OFF on input line 6057. 583 | LaTeX Info: Redefining \ref on input line 6097. 584 | LaTeX Info: Redefining \pageref on input line 6101. 585 | (d:/texlive/2022/texmf-dist/tex/latex/base/atbegshi-ltx.sty 586 | Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi 587 | package with kernel methods 588 | ) 589 | \Hy@abspage=\count332 590 | \c@Item=\count333 591 | \c@Hfootnote=\count334 592 | ) 593 | Package hyperref Info: Driver: hxetex. 594 | (d:/texlive/2022/texmf-dist/tex/latex/hyperref/hxetex.def 595 | File: hxetex.def 2022-02-21 v7.00n Hyperref driver for XeTeX 596 | (d:/texlive/2022/texmf-dist/tex/generic/stringenc/stringenc.sty 597 | Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO) 598 | ) 599 | \pdfm@box=\box74 600 | \c@Hy@AnnotLevel=\count335 601 | \HyField@AnnotCount=\count336 602 | \Fld@listcount=\count337 603 | \c@bookmark@seq@number=\count338 604 | (d:/texlive/2022/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty 605 | Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) 606 | (d:/texlive/2022/texmf-dist/tex/latex/base/atveryend-ltx.sty 607 | Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend package 608 | with kernel methods 609 | ) (d:/texlive/2022/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty 610 | Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) 611 | ) 612 | Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 286. 613 | ) 614 | \Hy@SectionHShift=\skip103 615 | ) 616 | \c@prefix=\count339 617 | (d:/texlive/2022/texmf-dist/tex/latex/listings/listings.sty 618 | \lst@mode=\count340 619 | \lst@gtempboxa=\box75 620 | \lst@token=\toks32 621 | \lst@length=\count341 622 | \lst@currlwidth=\dimen291 623 | \lst@column=\count342 624 | \lst@pos=\count343 625 | \lst@lostspace=\dimen292 626 | \lst@width=\dimen293 627 | \lst@newlines=\count344 628 | \lst@lineno=\count345 629 | \lst@maxwidth=\dimen294 630 | (d:/texlive/2022/texmf-dist/tex/latex/listings/lstmisc.sty 631 | File: lstmisc.sty 2020/03/24 1.8d (Carsten Heinz) 632 | \c@lstnumber=\count346 633 | \lst@skipnumbers=\count347 634 | \lst@framebox=\box76 635 | ) (d:/texlive/2022/texmf-dist/tex/latex/listings/listings.cfg 636 | File: listings.cfg 2020/03/24 1.8d listings configuration 637 | )) 638 | Package: listings 2020/03/24 1.8d (Carsten Heinz) 639 | (d:/texlive/2022/texmf-dist/tex/xelatex/xecjk/xeCJK-listings.sty 640 | Package: xeCJK-listings 2021/12/12 v3.8.8 xeCJK patch file for listings 641 | \l__xeCJK_listings_max_char_int=\count348 642 | \l__xeCJK_listings_flag_int=\count349 643 | ) (d:/texlive/2022/texmf-dist/tex/latex/etoolbox/etoolbox.sty 644 | Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW) 645 | \etb@tempcnta=\count350 646 | ) 647 | \@abstract=\box77 648 | ) (d:/texlive/2022/texmf-dist/tex/latex/psnfss/mathpazo.sty 649 | Package: mathpazo 2020/03/25 PSNFSS-v9.3 Palatino w/ Pazo Math (D.Puga, WaS) 650 | \symupright=\mathgroup6 651 | ) 652 | LaTeX Font Info: Trying to load font information for T1+ppl on input line 32. 653 | (d:/texlive/2022/texmf-dist/tex/latex/psnfss/t1ppl.fd 654 | File: t1ppl.fd 2001/06/04 font definitions for T1/ppl. 655 | ) (./main.aux 656 | 657 | LaTeX Warning: Label `' multiply defined. 658 | 659 | 660 | LaTeX Warning: Label `sub@' multiply defined. 661 | 662 | 663 | LaTeX Warning: Label `' multiply defined. 664 | 665 | 666 | LaTeX Warning: Label `sub@' multiply defined. 667 | 668 | 669 | LaTeX Warning: Label `' multiply defined. 670 | 671 | 672 | LaTeX Warning: Label `sub@' multiply defined. 673 | 674 | 675 | LaTeX Warning: Label `' multiply defined. 676 | 677 | 678 | LaTeX Warning: Label `sub@' multiply defined. 679 | 680 | 681 | LaTeX Warning: Label `' multiply defined. 682 | 683 | 684 | LaTeX Warning: Label `sub@' multiply defined. 685 | 686 | 687 | LaTeX Warning: Label `' multiply defined. 688 | 689 | 690 | LaTeX Warning: Label `sub@' multiply defined. 691 | 692 | ) 693 | \openout1 = `main.aux'. 694 | 695 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 32. 696 | LaTeX Font Info: ... okay on input line 32. 697 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 32. 698 | LaTeX Font Info: ... okay on input line 32. 699 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 32. 700 | LaTeX Font Info: ... okay on input line 32. 701 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 32. 702 | LaTeX Font Info: ... okay on input line 32. 703 | LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 32. 704 | LaTeX Font Info: ... okay on input line 32. 705 | LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 32. 706 | LaTeX Font Info: ... okay on input line 32. 707 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 32. 708 | LaTeX Font Info: ... okay on input line 32. 709 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 32. 710 | LaTeX Font Info: ... okay on input line 32. 711 | LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 32. 712 | LaTeX Font Info: ... okay on input line 32. 713 | LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 32. 714 | LaTeX Font Info: ... okay on input line 32. 715 | 716 | *geometry* driver: auto-detecting 717 | *geometry* detected driver: xetex 718 | *geometry* verbose mode - [ preamble ] result: 719 | * driver: xetex 720 | * paper: letterpaper 721 | * layout: 722 | * layoutoffset:(h,v)=(0.0pt,0.0pt) 723 | * modes: 724 | * h-part:(L,W,R)=(71.13188pt, 472.03123pt, 71.13188pt) 725 | * v-part:(T,H,B)=(71.13188pt, 681.15898pt, 42.67912pt) 726 | * \paperwidth=614.295pt 727 | * \paperheight=794.96999pt 728 | * \textwidth=472.03123pt 729 | * \textheight=681.15898pt 730 | * \oddsidemargin=-1.1381pt 731 | * \evensidemargin=-1.1381pt 732 | * \topmargin=-38.1381pt 733 | * \headheight=15.0pt 734 | * \headsep=25.0pt 735 | * \topskip=12.0pt 736 | * \footskip=30.0pt 737 | * \marginparwidth=44.0pt 738 | * \marginparsep=10.0pt 739 | * \columnsep=10.0pt 740 | * \skip\footins=10.8pt plus 4.0pt minus 2.0pt 741 | * \hoffset=0.0pt 742 | * \voffset=0.0pt 743 | * \mag=1000 744 | * \@twocolumnfalse 745 | * \@twosidefalse 746 | * \@mparswitchfalse 747 | * \@reversemarginfalse 748 | * (1in=72.27pt=25.4mm, 1cm=28.453pt) 749 | 750 | Package lastpage Info: Please have a look at the pageslts package at 751 | (lastpage) https://www.ctan.org/pkg/pageslts 752 | (lastpage) ! on input line 32. 753 | Package caption Info: Begin \AtBeginDocument code. 754 | Package caption Info: hyperref package is loaded. 755 | Package caption Info: listings package is loaded. 756 | Package caption Info: longtable package is loaded. 757 | (d:/texlive/2022/texmf-dist/tex/latex/caption/ltcaption.sty 758 | Package: ltcaption 2021/01/08 v1.4c longtable captions (AR) 759 | ) 760 | Package caption Info: End \AtBeginDocument code. 761 | (d:/texlive/2022/texmf-dist/tex/latex/graphics/color.sty 762 | Package: color 2021/12/07 v1.3c Standard LaTeX Color (DPC) 763 | (d:/texlive/2022/texmf-dist/tex/latex/graphics-cfg/color.cfg 764 | File: color.cfg 2016/01/02 v1.6 sample color configuration 765 | ) 766 | Package color Info: Driver file: xetex.def on input line 149. 767 | ) 768 | Package hyperref Info: Link coloring ON on input line 32. 769 | (d:/texlive/2022/texmf-dist/tex/latex/hyperref/nameref.sty 770 | Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section 771 | (d:/texlive/2022/texmf-dist/tex/latex/refcount/refcount.sty 772 | Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) 773 | ) (d:/texlive/2022/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty 774 | Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) 775 | ) 776 | \c@section@level=\count351 777 | ) 778 | LaTeX Info: Redefining \ref on input line 32. 779 | LaTeX Info: Redefining \pageref on input line 32. 780 | LaTeX Info: Redefining \nameref on input line 32. 781 | (./main.out) (./main.out) 782 | \@outlinefile=\write4 783 | \openout4 = `main.out'. 784 | 785 | \c@lstlisting=\count352 786 | [1 787 | 788 | ] (./main.toc 789 | LaTeX Font Info: Trying to load font information for OT1+ppl on input line 2. 790 | (d:/texlive/2022/texmf-dist/tex/latex/psnfss/ot1ppl.fd 791 | File: ot1ppl.fd 2001/06/04 font definitions for OT1/ppl. 792 | ) 793 | LaTeX Font Info: Trying to load font information for OML+zplm on input line 2. 794 | (d:/texlive/2022/texmf-dist/tex/latex/psnfss/omlzplm.fd 795 | File: omlzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OML/zplm. 796 | ) 797 | LaTeX Font Info: Trying to load font information for OMS+zplm on input line 2. 798 | (d:/texlive/2022/texmf-dist/tex/latex/psnfss/omszplm.fd 799 | File: omszplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMS/zplm. 800 | ) 801 | LaTeX Font Info: Trying to load font information for OMX+zplm on input line 2. 802 | (d:/texlive/2022/texmf-dist/tex/latex/psnfss/omxzplm.fd 803 | File: omxzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMX/zplm. 804 | ) 805 | LaTeX Font Info: Font shape `U/msa/m/n' will be 806 | (Font) scaled to size 12.50409pt on input line 2. 807 | LaTeX Font Info: Font shape `U/msa/m/n' will be 808 | (Font) scaled to size 9.37807pt on input line 2. 809 | LaTeX Font Info: Font shape `U/msa/m/n' will be 810 | (Font) scaled to size 7.29405pt on input line 2. 811 | LaTeX Font Info: Font shape `U/msb/m/n' will be 812 | (Font) scaled to size 12.50409pt on input line 2. 813 | LaTeX Font Info: Font shape `U/msb/m/n' will be 814 | (Font) scaled to size 9.37807pt on input line 2. 815 | LaTeX Font Info: Font shape `U/msb/m/n' will be 816 | (Font) scaled to size 7.29405pt on input line 2. 817 | LaTeX Font Info: Trying to load font information for OT1+zplm on input line 2. 818 | (d:/texlive/2022/texmf-dist/tex/latex/psnfss/ot1zplm.fd 819 | File: ot1zplm.fd 2002/09/08 Fontinst v1.914 font definitions for OT1/zplm. 820 | )) 821 | \tf@toc=\write5 822 | \openout5 = `main.toc'. 823 | 824 | [2] [3] 825 | 826 | Package fontspec Info: Could not resolve font "FangSong/BI" (it probably 827 | (fontspec) doesn't exist). 828 | 829 | 830 | Package fontspec Info: Could not resolve font "FangSong/B" (it probably 831 | (fontspec) doesn't exist). 832 | 833 | 834 | Package fontspec Info: Could not resolve font "FangSong/I" (it probably 835 | (fontspec) doesn't exist). 836 | 837 | LaTeX Font Info: Trying to load font information for T1+txtt on input line 113. 838 | (d:/texlive/2022/texmf-dist/tex/latex/txfonts/t1txtt.fd 839 | File: t1txtt.fd 2000/12/15 v3.1 840 | ) 841 | 842 | Package fontspec Info: Font family 'FangSong(0)' created for font 'FangSong' 843 | (fontspec) with options [Script={CJK}]. 844 | (fontspec) 845 | (fontspec) This font family consists of the following NFSS 846 | (fontspec) series/shapes: 847 | (fontspec) 848 | (fontspec) - 'normal' (m/n) with NFSS spec.: 849 | (fontspec) <->"FangSong/OT:script=hani;language=dflt;" 850 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 851 | 852 | File: img/example-image-a.pdf Graphic file (type pdf) 853 | 854 | File: img/example-image-b.pdf Graphic file (type pdf) 855 | 856 | File: img/example-image-a.pdf Graphic file (type pdf) 857 | 858 | File: img/example-image-b.pdf Graphic file (type pdf) 859 | 860 | File: img/example-image-c.pdf Graphic file (type pdf) 861 | 862 | File: img/example-image-a.pdf Graphic file (type pdf) 863 | 864 | File: img/example-image-b.pdf Graphic file (type pdf) 865 | 866 | File: img/example-image-a.pdf Graphic file (type pdf) 867 | 868 | File: img/example-image-b.pdf Graphic file (type pdf) 869 | 870 | [4 871 | 872 | ] 873 | LaTeX Font Info: Trying to load font information for TS1+ppl on input line 212. 874 | (d:/texlive/2022/texmf-dist/tex/latex/psnfss/ts1ppl.fd 875 | File: ts1ppl.fd 2001/06/04 font definitions for TS1/ppl. 876 | ) 877 | LaTeX Font Info: Font shape `U/msa/m/n' will be 878 | (Font) scaled to size 5.21004pt on input line 215. 879 | LaTeX Font Info: Font shape `U/msb/m/n' will be 880 | (Font) scaled to size 5.21004pt on input line 215. 881 | [5] [6] [7] 882 | File: img//water.png Graphic file (type bmp) 883 | 884 | [8] [9] 885 | Overfull \hbox (5.07521pt too wide) in paragraph at lines 364--364 886 | []|\T1/ppl/m/n/12 Continent| 887 | [] 888 | 889 | 890 | Underfull \hbox (badness 1184) in paragraph at lines 369--373 891 | \T1/ppl/m/n/12 With 1.3 bil-lion peo-ple as of 892 | [] 893 | 894 | 895 | Underfull \hbox (badness 1009) in paragraph at lines 374--378 896 | \T1/ppl/m/n/12 pop-u-lous con-ti-nent which lo- 897 | [] 898 | 899 | 900 | Underfull \hbox (badness 10000) in paragraph at lines 379--383 901 | []|\T1/ppl/m/n/12 Asia cov-ers an area of 902 | [] 903 | 904 | 905 | Underfull \hbox (badness 10000) in paragraph at lines 379--383 906 | \T1/ppl/m/n/12 44,579,000 square kilo-me- 907 | [] 908 | 909 | 910 | Underfull \hbox (badness 5548) in paragraph at lines 379--383 911 | \T1/ppl/m/n/12 land area and 8.7% of the 912 | [] 913 | 914 | 915 | Underfull \hbox (badness 2600) in paragraph at lines 389--393 916 | \T1/ppl/m/n/12 u-la-tion of about 741 mil-lion 917 | [] 918 | 919 | [10 920 | 921 | ] [11] (./main.bbl 922 | Underfull \hbox (badness 10000) in paragraph at lines 1--1 923 | []\T1/ppl/b/n/17.28 References| 924 | [] 925 | 926 | ) [12 927 | 928 | ] 929 | LaTeX Font Info: Font shape `U/msa/m/n' will be 930 | (Font) scaled to size 18.00587pt on input line 476. 931 | LaTeX Font Info: Font shape `U/msa/m/n' will be 932 | (Font) scaled to size 10.42007pt on input line 476. 933 | LaTeX Font Info: Font shape `U/msb/m/n' will be 934 | (Font) scaled to size 18.00587pt on input line 476. 935 | LaTeX Font Info: Font shape `U/msb/m/n' will be 936 | (Font) scaled to size 10.42007pt on input line 476. 937 | (d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 938 | File: lstlang1.sty 2020/03/24 1.8d listings language file 939 | ) 940 | LaTeX Font Info: Font shape `T1/txtt/b/n' in size <10.95> not available 941 | (Font) Font shape `T1/txtt/bx/n' tried instead on input line 493. 942 | (./code/example.py 943 | LaTeX Font Info: Font shape `T1/txtt/m/it' in size <10.95> not available 944 | (Font) Font shape `T1/txtt/m/sl' tried instead on input line 1. 945 | ) (d:/texlive/2022/texmf-dist/tex/latex/listings/lstlang1.sty 946 | File: lstlang1.sty 2020/03/24 1.8d listings language file 947 | ) (./code/example.m) [13 948 | 949 | ] 950 | AED: lastpage setting LastPage 951 | [14] (./main.aux) 952 | 953 | LaTeX Warning: There were multiply-defined labels. 954 | 955 | Package rerunfilecheck Info: File `main.out' has not changed. 956 | (rerunfilecheck) Checksum: 7D2B4491ACD56A9AB3FB5E2CC16E2CC1;4407. 957 | ) 958 | Here is how much of TeX's memory you used: 959 | 22529 strings out of 478126 960 | 452904 string characters out of 5853227 961 | 956997 words of memory out of 5000000 962 | 42778 multiletter control sequences out of 15000+600000 963 | 504314 words of font info for 115 fonts, out of 8000000 for 9000 964 | 36 hyphenation exceptions out of 8191 965 | 89i,12n,97p,1241b,1723s stack positions out of 10000i,1000n,20000p,200000b,200000s 966 | 967 | Output written on main.pdf (14 pages). 968 | -------------------------------------------------------------------------------- /main.out: -------------------------------------------------------------------------------- 1 | \BOOKMARK [1][]{section.0.1}{\376\377\0001\000\040\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{}% 1 2 | \BOOKMARK [2][]{subsection.0.1.1}{\376\377\0001\000.\0001\000\040\000P\000r\000o\000b\000l\000e\000m\000\040\000B\000a\000c\000k\000g\000r\000o\000u\000n\000d}{section.0.1}% 2 3 | \BOOKMARK [2][]{subsection.0.1.2}{\376\377\0001\000.\0002\000\040\000L\000i\000t\000e\000r\000a\000t\000u\000r\000e\000\040\000R\000e\000v\000i\000e\000w}{section.0.1}% 3 4 | \BOOKMARK [2][]{subsection.0.1.3}{\376\377\0001\000.\0003\000\040\000O\000u\000r\000\040\000w\000o\000r\000k}{section.0.1}% 4 5 | \BOOKMARK [1][]{section.0.2}{\376\377\0002\000\040\000P\000r\000e\000p\000a\000r\000a\000t\000i\000o\000n\000\040\000o\000f\000\040\000t\000h\000e\000\040\000M\000o\000d\000e\000l\000s}{}% 5 6 | \BOOKMARK [2][]{subsection.0.2.1}{\376\377\0002\000.\0001\000\040\000A\000s\000s\000u\000m\000p\000t\000i\000o\000n\000s\000\040\000a\000n\000d\000\040\000E\000x\000p\000l\000a\000n\000a\000t\000i\000o\000n\000s}{section.0.2}% 6 7 | \BOOKMARK [2][]{subsection.0.2.2}{\376\377\0002\000.\0002\000\040\000N\000o\000t\000a\000t\000i\000o\000n\000s}{section.0.2}% 7 8 | \BOOKMARK [2][]{subsection.0.2.3}{\376\377\0002\000.\0003\000\040\000D\000a\000t\000a}{section.0.2}% 8 9 | \BOOKMARK [3][]{subsubsection.0.2.3.1}{\376\377\0002\000.\0003\000.\0001\000\040\000D\000a\000t\000a\000\040\000C\000o\000l\000l\000e\000c\000t\000i\000o\000n}{subsection.0.2.3}% 9 10 | \BOOKMARK [3][]{subsubsection.0.2.3.2}{\376\377\0002\000.\0003\000.\0002\000\040\000D\000a\000t\000a\000\040\000P\000r\000o\000c\000e\000s\000s\000i\000n\000g}{subsection.0.2.3}% 10 11 | \BOOKMARK [1][]{section.0.3}{\376\377\0003\000\040\000M\000o\000d\000e\000l\000\040\0001}{}% 11 12 | \BOOKMARK [2][]{subsection.0.3.1}{\376\377\0003\000.\0001\000\040\000D\000e\000t\000a\000i\000l\000s\000\040\000a\000b\000o\000u\000t\000\040\000M\000o\000d\000e\000l\000\040\0001}{section.0.3}% 12 13 | \BOOKMARK [1][]{section.0.4}{\376\377\0004\000\040\000M\000o\000d\000e\000l\000\040\0002}{}% 13 14 | \BOOKMARK [2][]{subsection.0.4.1}{\376\377\0004\000.\0001\000\040\000C\000o\000n\000c\000l\000u\000s\000i\000o\000n\000\040\000o\000f\000\040\000M\000o\000d\000e\000l\000\040\0002}{section.0.4}% 14 15 | \BOOKMARK [2][]{subsection.0.4.2}{\376\377\0004\000.\0002\000\040\000C\000o\000m\000m\000e\000t\000a\000r\000y\000\040\000o\000n\000\040\000M\000o\000d\000e\000l\000\040\0002}{section.0.4}% 15 16 | \BOOKMARK [1][]{section.0.5}{\376\377\0005\000\040\000M\000o\000d\000e\000l\000\040\0003}{}% 16 17 | \BOOKMARK [1][]{section.0.6}{\376\377\0006\000\040\000T\000e\000s\000t\000\040\000t\000h\000e\000\040\000M\000o\000d\000e\000l}{}% 17 18 | \BOOKMARK [2][]{subsection.0.6.1}{\376\377\0006\000.\0001\000\040\000S\000e\000n\000s\000i\000t\000i\000v\000i\000t\000y\000\040\000A\000n\000a\000l\000y\000s\000i\000s}{section.0.6}% 18 19 | \BOOKMARK [2][]{subsection.0.6.2}{\376\377\0006\000.\0002\000\040\000R\000o\000b\000u\000s\000t\000n\000e\000s\000s\000\040\000A\000n\000a\000l\000y\000s\000i\000s}{section.0.6}% 19 20 | \BOOKMARK [1][]{section.0.7}{\376\377\0007\000\040\000C\000o\000n\000c\000l\000u\000s\000i\000o\000n}{}% 20 21 | \BOOKMARK [2][]{subsection.0.7.1}{\376\377\0007\000.\0001\000\040\000S\000u\000m\000m\000a\000r\000y\000\040\000o\000f\000\040\000R\000e\000s\000u\000l\000t\000s}{section.0.7}% 21 22 | \BOOKMARK [2][]{subsection.0.7.2}{\376\377\0007\000.\0002\000\040\000S\000t\000r\000e\000n\000g\000t\000h\000s}{section.0.7}% 22 23 | \BOOKMARK [2][]{subsection.0.7.3}{\376\377\0007\000.\0003\000\040\000W\000e\000a\000k\000n\000e\000s\000s\000e\000s\000\040\000a\000n\000d\000\040\000I\000m\000p\000r\000o\000v\000e\000m\000e\000n\000t\000s}{section.0.7}% 23 24 | \BOOKMARK [1][]{section.0.8}{\376\377\000M\000e\000m\000o\000r\000a\000n\000d\000u\000m}{}% 24 25 | \BOOKMARK [1][]{section.1.8}{\376\377\000R\000e\000f\000e\000r\000e\000n\000c\000e\000s}{}% 25 26 | \BOOKMARK [1][]{section*.7}{\376\377\000A\000p\000p\000e\000n\000d\000i\000x\000\040\000A\000:\000\040\000F\000u\000r\000t\000h\000e\000r\000\040\000o\000n\000\040\000L\000a\000T\000e\000X}{}% 26 27 | \BOOKMARK [1][]{section*.8}{\376\377\000A\000p\000p\000e\000n\000d\000i\000x\000\040\000B\000:\000\040\000P\000r\000o\000g\000r\000a\000m\000\040\000C\000o\000d\000e\000s}{}% 27 28 | \BOOKMARK [1][]{section*.9}{\376\377\000A\000p\000p\000e\000n\000d\000i\000x\000\040\000C\000:\000\040\000R\000e\000p\000o\000r\000t\000\040\000o\000n\000\040\000U\000s\000e\000\040\000o\000f\000\040\000A\000I}{}% 28 29 | -------------------------------------------------------------------------------- /main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeyuDame/LDMCM/f94e2a0005d258642c9a0f0a66315a173f31bf9c/main.pdf -------------------------------------------------------------------------------- /main.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeyuDame/LDMCM/f94e2a0005d258642c9a0f0a66315a173f31bf9c/main.synctex.gz -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- 1 | % !TEX program = xelatex -> bibtex -> xelatex*2 2 | 3 | \documentclass[12pt]{ctexart} 4 | % ctexart支持中文编译文档 5 | %最后全部翻译成英文后可以选择改成article,然后用pdflatex编译,还可以检验一下是不是没有中文了嘿嘿( •̀ ω •́ )✧ 6 | %官方要求字号不小于 12 号,此处选择 12 号字体 7 | 8 | \CTEXsetup[format={\Large\bfseries}]{section} %在ctexart中,一级标题是居中的,这里改成左对齐 9 | 10 | %% 本模板不需要填写年份,以当前电脑时间自动生成 11 | 12 | %% 请在以下的方括号中填写队伍控制号 13 | \usepackage[2401234]{ldmcm} % 载入ldmcm模板文件 14 | \problem{A} % 请在此处填写题号 15 | 16 | %%字体选择 17 | %\usepackage{mathptmx} % 这是 Times 字体,中规中矩 18 | \usepackage{mathpazo} % 这是 COMAP 官方杂志采用的更好看的 Palatino 字体,可替代以上的 mathptmx 宏包 19 | 20 | %%几处小修改,如无特殊需求可不做更改 21 | \newcommand{\upcite}[1]{\textsuperscript{\textsuperscript{\cite{#1}}}}%这是参考文献引用上标的命令 22 | \graphicspath{{img/}} % 此处{img/}为相对路径,注意加上“/” 23 | \let\itemize\compactitem 24 | \let\enditemize\endcompactitem%解决列表环境中行距过大的问题 25 | 26 | \title{Here is Your Title} % 标题 27 | 28 | % 如需要修改题头(默认为 MCM /ICM),请使用以下命令(此处修改为 MCM) 29 | %\renewcommand{\contest}{MCM} 30 | 31 | % ----------------------------------------------文档开始--------------------------------------------------------- 32 | \begin{document} 33 | 34 | % 此处填写摘要内容-----------摘要摘要摘要摘要摘要摘要摘要摘要摘要摘要摘要摘要摘要摘要摘要摘要摘要摘要摘要摘要摘要 35 | \begin{abstract} 36 | %第一段:2句话背景+2句话概括全文完成的任务 37 | Global warming, El Niño... With the emergence of various extreme climates,\textbf{Austral-ia's wildfires} occur more frequently. The greenhouse gases emitted after combustion have exacerbated global warming, which seems to have entered an endless loop. At the same time, hundreds of millions of lives have been killed in the fire, which makes us sad. To better control wildfires, we modeled the \textbf{distribution of drones} assisting in the observation to achieve the best balance between economy and efficiency. 38 | 39 | %第二段:总结我们用了什么模型 40 | Several models are established: Model I: Rasterized Multi-Objective Optimization Model; Model II: Model Verification Simulated by Poisson Process; Model III: Hovering Model Based on Tabu Search, etc. 41 | 42 | %接下来分别介绍模型与结果 43 | For Model I: 44 | Firstly,%首先,我们从哪里收集到了什么样的数据 45 | We find data。。。 46 | Then,%然后,基于什么样的原因,我们建立了什么模型 47 | we establish \textbf{model}。。。 48 | Next,%我们选择或者设计了什么算法 49 | we use Algorithm。。。 50 | Finally,%我们得到了什么样的结果 51 | %数值直接写出来,大量数据(表)或图片则说请参见(are shown in ...)图几 52 | %注意要用文字,不要使用符号 53 | it can be seen that。。。 54 | 55 | For Model II: 56 | Firstly,%首先,我们从哪里收集到了什么样的数据 57 | We find data。。。 58 | Then,%然后,基于什么样的原因,我们建立了什么模型 59 | we establish model。。。 60 | Next,%我们选择或者设计了什么算法 61 | we use Algorithm。。。 62 | Finally,%我们得到了什么样的结果 63 | %数值直接写出来,大量数据(表)或图片则说请参见(are shown in ...)图几 64 | %注意要用文字,不要使用符号 65 | it can be seen that。。。 66 | 67 | For Model III: 68 | Firstly,%首先,我们从哪里收集到了什么样的数据 69 | We find data。。。 70 | Then,%然后,基于什么样的原因,我们建立了什么模型 71 | we establish model。。。 72 | Next,%我们选择或者设计了什么算法 73 | we use Algorithm。。。 74 | Finally,%我们得到了什么样的结果 75 | %数值直接写出来,大量数据(表)或图片则说请参见(are shown in ...)图几 76 | %注意要用文字,不要使用符号 77 | it can be seen that。。。 78 | 79 | %灵敏度与稳健性分析 80 | Finally, sensitivity analysis 。。。 Meanwhile, robustness 81 | 82 | % 美赛论文中无需注明关键词。若一定要使用, 83 | % 请将以下两行的注释号 '%' 去除,以使其生效 84 | %\vspace{5pt} 85 | %\textbf{Keywords}: MATLAB, mathematics, LaTeX. 86 | 87 | \end{abstract} 88 | 89 | \maketitle % 生成 Summary Sheet------------------------------------ 90 | 91 | \tableofcontents % 生成目录 92 | 93 | 94 | % -----------------------------------------正文开始----------------------------------------------------------------------------------------------------------------------------------- 95 | 96 | 97 | %==============第一部分===引入============================================================= 98 | \section{Introduction} 99 | \subsection{Problem Background}%问题背景问题背景问题背景问题背景问题背景问题背景--------------------------------- 100 | 一些常用的写作缩略语: 101 | 102 | i.e.,。。。也即是。。。(一定加逗号) 103 | 104 | e.g.,。。。例如,。。。 105 | 106 | , etc. 。。。,等等。 107 | 108 | n.b. 特别注意 109 | 110 | cf. 参见 111 | 112 | 113 | 美赛一定要多上图,清晰直观,并且格式上最好是矢量图,例如pdf,而不是位图,例如jpg,png等,在形式上最好是组图,下面列出了利用\verb|subfigure|实现的 114 | \verb|1x2,1x3,2x2|的几种组图: 115 | 116 | %% 这是一个1x2的组图 117 | \begin{figure}[htbp] 118 | \centering 119 | \begin{subfigure}[b]{.3\textwidth} %设置缩放比例,这里的.5代表缩放为原来的50% 120 | \includegraphics[width=\textwidth]{img/example-image-a.pdf} 121 | \caption{left}\label{subfig:left} 122 | \end{subfigure} 123 | \hspace{10mm} %%%%%%%%%%%%%%%%%%调整子图间距 124 | \begin{subfigure}[b]{.3\textwidth} 125 | \includegraphics[width=\textwidth]{img/example-image-b.pdf} 126 | \caption{right}\label{subfig:right} 127 | \end{subfigure} 128 | \caption{Two images}\label{subfigure} 129 | \end{figure} 130 | 131 | Figure \ref{subfigure} gives an example of subfigures. Figure \ref{subfig:left} is on the left, and Figure \ref{subfig:right} is on the right. 132 | 133 | 134 | %% 这是一个1x3的组图 135 | \begin{figure}[!htbp] 136 | \centering 137 | \begin{subfigure}[t]{0.3\textwidth} 138 | \centering 139 | \includegraphics[width=\textwidth]{img/example-image-a.pdf} 140 | \caption*{} 141 | \label{} 142 | \end{subfigure} 143 | \begin{subfigure}[t]{0.3\textwidth} 144 | \centering 145 | \includegraphics[width=\textwidth]{img/example-image-b.pdf} 146 | \caption*{} 147 | \label{} 148 | \end{subfigure} 149 | \begin{subfigure}[t]{0.3\textwidth} 150 | \centering 151 | \includegraphics[width=\textwidth]{img/example-image-c.pdf} 152 | \caption*{} 153 | \label{} 154 | \end{subfigure} 155 | \caption{Three images} 156 | \label{Three images} 157 | \end{figure} 158 | 159 | 160 | %% 这是一个2x2的组图(可推广至2x3,3x3等) 161 | \begin{figure}[!htbp] 162 | \centering 163 | \begin{subfigure}[t]{0.4\textwidth} 164 | \centering 165 | \includegraphics[width=\textwidth]{img/example-image-a.pdf} 166 | \caption{左上} 167 | \label{} 168 | \end{subfigure} 169 | \begin{subfigure}[t]{0.4\textwidth} 170 | \centering 171 | \includegraphics[width=\textwidth]{img/example-image-b.pdf} 172 | \caption{右上} 173 | \label{} 174 | \end{subfigure} 175 | % \begin{subfigure}[t]{0.3\textwidth} 176 | % \centering 177 | % \includegraphics[width=\textwidth]{img/example-image-a.pdf.pdf} 178 | % \caption{} 179 | % \label{} 180 | % \end{subfigure} 181 | \qquad 182 | %%让图片换行,这就是实现多行组图的简单原理 183 | %%若需要搞一个2x3的组图就把上下的注释打开再添加图片就可以了 184 | %%注意调整比例以及间距 185 | \begin{subfigure}[t]{0.4\textwidth} 186 | \centering 187 | \includegraphics[width=\textwidth]{img/example-image-a.pdf} 188 | \caption{左下} 189 | \label{} 190 | \end{subfigure} 191 | \begin{subfigure}[t]{0.4\textwidth} 192 | \centering 193 | \includegraphics[width=\textwidth]{img/example-image-b.pdf} 194 | \caption{右下} 195 | \label{} 196 | \end{subfigure} 197 | %\begin{subfigure}[t]{0.3\textwidth} 198 | % \centering 199 | % \includegraphics[width=\textwidth]{img/npca13.pdf} 200 | % \caption{result} 201 | % \label{} 202 | %\end{subfigure} 203 | \caption{组图组图变变变} 204 | \end{figure} 205 | 206 | 207 | 208 | %\subsection{Problem Background}%问题重述与文献综述选一个------------------------------------------------------------------------ 209 | \subsection{Literature Review} % 文献综述----------------- 210 | Two major problems are discussed in this paper, which are: 211 | \begin{itemize} 212 | \item Doing the first thing. 213 | \item Doing the second thing. 214 | \end{itemize} 215 | A literatrue\upcite{kopka2003guide} says something about this problem ... 216 | 217 | 218 | 219 | \subsection{Our work}%----------------------------------------------------------- 220 | We do such things ... 221 | 这部分直接上图 222 | 223 | \begin{enumerate}[\bfseries 1.] 224 | \item We do ... 225 | \item We do ... 226 | \item We do ... 227 | \end{enumerate} 228 | %===========================第二部分==模型准备========================================================== 229 | \section{Preparation of the Models} 230 | \subsection{Assumptions and Explanations} 231 | 232 | %为了简化问题,我们做出了以下假设,其中每一条都有对应的合理解释 233 | To simplify the problem, we made the following assumptions, each of which has a corresponding reasonable explanation. 234 | \begin{itemize} 235 | \item \textit{\textbf{Assumption 1:}}假设\\$\hookrightarrow$ \textit{\textbf{Explanation:}}理由 236 | 237 | \item \textit{\textbf{Assumption 2:}}假设\\$\hookrightarrow$ \textit{\textbf{Explanation:}}理由 238 | 239 | \item \textit{\textbf{Assumption 3:}}假设\\$\hookrightarrow$ \textit{\textbf{Explanation:}}理由 240 | 241 | \item \textit{\textbf{Assumption 4:}}假设\\$\hookrightarrow$ \textit{\textbf{Explanation:}}理由 242 | \end{itemize} 243 | %这里只列出了主要的假设,其他假设会在专门的小节中单独讨论 244 | Additional assumptions are made to simplify analysis for individual sections. These assumptions will be discussed at the appropriate locations. 245 | 246 | \newpage 247 | \subsection{Notations}%----------------------------------------------------------------------------------- 248 | % 三线表(可以直接在excel里编辑好然后用excel2latex插件插入) 249 | 250 | Table \ref{tb:notation} lists some important mathematical notations used in this paper. 251 | \begin{table}[htbp]%---------------------------------------------- 252 | \begin{center} 253 | \caption{Notations used in this paper} 254 | \begin{tabular}{cl} 255 | \toprule[1.5pt] 256 | \multicolumn{1}{m{4cm}}{\centering \textbf{Symbol}} 257 | & \multicolumn{1}{m{10cm}}{\textbf{ Description} } \\ 258 | \midrule 259 | $x_i$ & Longitude within the i-th Wildfire Grid \\ 260 | $y_i$ & Latitude within the i-th Wildfire Grid \\ 261 | $\varOmega _i$ & The area of the i-th grid \\ 262 | $d_{ki}$ & the distance $d_{ki}$ \\ 263 | $SC_k$ & Score for evaluating the k-th wildfire grid \\ 264 | \vspace{5pt}%公式间有点挤,空一些 265 | $x^{( \alpha )}_{ki}$ & the $SSA_\alpha$ drone sent by the k-th EOC to the i-th wild-fire grid \\ 266 | \vspace{3pt} 267 | $x^{( \beta )}_{ki}$ & the $RR_\beta$ drone sent by the k-th EOC to the i-th wildfire grid \\ 268 | $t_{fly}^{\delta}$ & The flight time of drones \\ 269 | \bottomrule[1.5pt] 270 | \end{tabular}\label{tb:notation} 271 | \begin{tablenotes} 272 | \footnotesize 273 | \item[*] *Some variables are not listed here and will be discussed in detail in each section. %此处加入注释*信息 274 | \end{tablenotes} 275 | \end{center} 276 | \end{table} 277 | \vspace{-1cm}%在\end{table}下加一行\vspace{-1cm} 其中-1的作用是缩短与下方文字距离的 切记!必须是负数 278 | 279 | 280 | 281 | %数据处理------------------------------------------------------------------------ 282 | 283 | 284 | \subsection{Data} 285 | \subsubsection{Data Collection} 286 | %下面列出了我们收集数据的来源网站 287 | Websites, where we collect data, are listed in Table \ref{tb:data}. 288 | 289 | \begin{table}[htbp]%---------------------------------------------- 290 | \begin{center} 291 | \caption{Notations used in this paper} 292 | \begin{tabular}{c c} 293 | \toprule[1.5pt] 294 | \multicolumn{1}{m{5cm}}{\centering \textbf{Database Names}} 295 | & \multicolumn{1}{m{10cm}}{\centering \textbf{Database Websites}} \\ 296 | \midrule 297 | Google Scholar & \href{https://scholar.google.com} {https://scholar.google.com} \\ 298 | Wikipedia & \href{https://www.wikipedia.org}{https://www.wikipedia.org} \\ 299 | wolframalpha & \href{https://www.wolframalpha.com}{https://www.wolframalpha.com} \\ 300 | \bottomrule[1.5pt] 301 | \end{tabular}\label{tb:data} 302 | \end{center} 303 | \end{table} 304 | \vspace{-1cm}%在\end{table}下加一行\vspace{-1cm} 其中-1的作用是缩短与下方文字距离的 切记!必须是负数 305 | \subsubsection{Data Processing} 306 | %=================================第三部分==================================================================== 307 | \section{Model 1} 308 | \subsection{Details about Model 1} 309 | The detail can be described by equation \eqref{eq:heat}: 310 | \begin{equation}\label{eq:heat} 311 | \frac{\partial u}{\partial t} - a^2 \left( \frac{\partial^2 u}{\partial x^2} + \frac{\partial^2 u}{\partial y^2} + \frac{\partial^2 u}{\partial z^2} \right) = f(x, y, z, t) 312 | \end{equation} 313 | 314 | \section{Model 2} 315 | \subsection{Conclusion of Model 2} 316 | The results are shown in Figure \ref{fig:result}, where $t$ denotes the time in seconds, and $c$ refers to the concentration of water in the boiler. 317 | 318 | \begin{figure}[!ht]%---------------结果上图!!!!!!-------------- 319 | \centering 320 | \includegraphics[width=.5\textwidth]{water.png} 321 | \caption{The result of Model 2}\label{fig:result} 322 | \end{figure}%--------------------------------------------- 323 | 324 | 再来一个伪代码,默认样式为\texttt{隐藏行号的三线表形式的伪代码} 325 | 326 | 可在\verb|ldmcm.sty|中修改样式,更详细的用法请参考algorithm2e宏包文档 327 | %%%%%%%%%%伪代码%%%%%%%%%%%%%%%%%%%%%% 328 | 329 | \begin{algorithm}[H] 330 | \KwIn{输入} 331 | \KwOut{输出 } 332 | initialization\; 333 | \While{not at end of this document}{ 334 | read current\; 335 | \Repeat{this end condition}{ 336 | do these things\; 337 | } 338 | \eIf{understand}{ 339 | go to next section\; 340 | current section becomes this one\; 341 | }{ 342 | go back to the beginning of current section\; 343 | } 344 | \Do{this end condition}{ 345 | do these things\; 346 | } 347 | } 348 | \caption{How to write algorithms} 349 | \end{algorithm} 350 | %%%%%%%%%%伪代码%%%%%%%%%%%%%%%%%%%%%% 351 | 352 | 353 | \clearpage 354 | \subsection{Commetary on Model 2} 355 | The instance of long and wide tables are shown in Table \ref{tb:longtable}. 356 | 357 | % 长表格示例,更多用法请参考 longtable 宏包文档 358 | % 以下环境及对应参数可实现表格内的自动换行与表格的自动断页 359 | % 您也可以选择自行载入 tabularx 宏包,并通过 X 参数指定对应列自动换行 360 | \begin{longtable}{ p{4em} p{14em} p{14em} } 361 | \caption{Basic Information about Three Main Continents (scratched from Wikipedia)} 362 | \label{tb:longtable} \\ 363 | \toprule 364 | Continent & Description & Information \\ 365 | \midrule 366 | Africa & Africa Continent is surrounded by the Mediterranean Sea to the 367 | north, the Isthmus of Suez and the Red Sea to the northeast, the Indian 368 | Ocean to the southeast and the Atlantic Ocean to the west. & 369 | At about 30.3 million km$^2$ including adjacent islands, it covers 6\% 370 | of Earth's total surface area and 20\% of its land area. With 1.3 371 | billion people as of 2018, it accounts for about 16\% of the world's 372 | human population. \\ 373 | \midrule 374 | Asia & Asia is Earth's largest and most populous continent which 375 | located primarily in the Eastern and Northern Hemispheres. 376 | It shares the continental landmass of Eurasia with the continent 377 | of Europe and the continental landmass of Afro-Eurasia with both 378 | Europe and Africa. & 379 | Asia covers an area of 44,579,000 square kilometres, about 30\% 380 | of Earth's total land area and 8.7\% of the Earth's total surface 381 | area. Its 4.5 billion people (as of June 2019) constitute roughly 382 | 60\% of the world's population. \\ 383 | \midrule 384 | Europe & Europe is a continent located entirely in the Northern 385 | Hemisphere and mostly in the Eastern Hemisphere. It comprises the 386 | westernmost part of Eurasia and is bordered by the Arctic Ocean to 387 | the north, the Atlantic Ocean to the west, the Mediterranean Sea to 388 | the south, and Asia to the east. & 389 | Europe covers about 10,180,000 km$^2$, or 2\% of the Earth's surface 390 | (6.8\% of land area), making it the second-smallest 391 | continent. Europe had a total population of about 741 million (about 392 | 11\% of the world population) as of 2018. \\ 393 | \bottomrule 394 | \end{longtable} 395 | 396 | 397 | 398 | 399 | 400 | \section{Model 3} 401 | %===============================================第四部分============================================= 402 | \section{Test the Model} 403 | \subsection{Sensitivity Analysis} 404 | \subsection{Robustness Analysis} 405 | \texttt{这部分很重要,不能缺!} 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | %==============================================第五部分================================================ 415 | \section{Conclusion} 416 | \subsection{Summary of Results} 417 | 418 | \subsection{Strengths}%------------------优点---------------- 419 | \begin{itemize} 420 | %1. 有灵敏度分析与稳健性分析 421 | \item The sensitivity analysis of the model demonstrates the effectiveness of the model under different parameter combinations and prove the robustness of the mod 422 | \item Second one ... 423 | \end{itemize} 424 | 425 | \subsection{Weaknesses and Improvements}%---------------缺点与改进--------------------- 426 | \begin{itemize} 427 | \item The analysis of fish migration can be more accurate if we have more complete data; 428 | \item Some approximate analysis methods are applied to model the management of fishing 429 | companies, which may lead to a situation contrary to the actual one in extreme cases. 430 | \item 此处引用了LLM.\upcite{openai2024chatgpt} 431 | \end{itemize} 432 | 433 | 434 | 435 | 436 | % 以下为信件/备忘录部分,不需要可自行去掉======================================================================== 437 | % 如有需要可将整个 letter 环境移动到文章开头或中间 438 | % 请在第二个花括号内填写标题,如「信件」(Letter)或「备忘录」(Memorandum) 439 | \begin{letter}{Memorandum} 440 | \begin{flushleft} % 左对齐环境,无首行缩进 441 | \textbf{To:} Heishan Yan\\ 442 | \textbf{From:} Team 1234567\\ 443 | \textbf{Date:} October 1st, 2019\\ 444 | \textbf{Subject:} A better choice than MS Word: \LaTeX 445 | \end{flushleft} 446 | 447 | In the memo, we want to introduce you to an alternate typesetting program to the prevailing MS Word: \textbf{\LaTeX}. In fact, the history of \LaTeX\ is even longer than that of MS Word. In the 1970s, the famous computer scientist Donald Knuth first came out with a typesetting program, named \TeX\ \ldots 448 | 449 | Firstly, \ldots 450 | 451 | Secondly, \ldots 452 | 453 | Lastly, \ldots 454 | 455 | According to all those mentioned above, it is really worth to have a try on \LaTeX! 456 | \end{letter} 457 | 458 | %================================================================================================================= 459 | 460 | 461 | 462 | 463 | % 参考文献,直接把bib格式粘贴到References.bib里面,此处无需改动!!!!!!!!!!!!!!!!!! 464 | \bibliographystyle{unsrt} %规定了参考文献的格式 465 | \begin{center} 466 | \bibliography{references.bib} %调出LaTeX生成参考文献列表 467 | \end{center} 468 | %===================================================================================== 469 | 470 | 471 | 472 | % 以下为附录内容 473 | % 如您的论文中不需要附录,请自行删除 474 | \begin{subappendices} % 附录环境 475 | 476 | \section{Appendix A: Further on \LaTeX} 477 | To clarify the importance of using \LaTeX\ in MCM or ICM, several points need to be covered, which are \ldots 478 | 479 | To be more specific, \ldots 480 | 481 | All in all, \ldots 482 | 483 | Anyway, nobody \textbf{really} needs such appendix \ldots 484 | 485 | \section{Appendix B: Program Codes} 486 | Here are the program codes we used in our research. 487 | 488 | % 代码环境示例三则 489 | % 如您的论文不需要展示代码,请删除 490 | % 更多用法,请参考 listings 宏包文档 491 | 492 | % Python 代码示例 493 | \lstinputlisting[language=python]{code/example.py} 494 | 495 | % MATLAB 代码示例 496 | \lstinputlisting[language=matlab]{code/example.m} 497 | 498 | \section{Appendix C: Report on Use of AI} 499 | % 人工智能的报告 500 | 1. OpenAI ChatGPT (Nov 5, 2023 version, ChatGPT-4) 501 | 502 | Query1: 503 | 504 | Output: 505 | 506 | 2. OpenAI Ernie (Nov 5, 2023 version, Ernie 4.0) 507 | 508 | Query1: 509 | 510 | Output: 511 | 512 | 3. Github CoPilot (Feb 3, 2024 version) 513 | 514 | Query1: 515 | 516 | Output: 517 | 518 | 4. Google Bard (Feb 2, 2024 version) 519 | 520 | Query: 521 | 522 | Output: 523 | 524 | 525 | \end{subappendices} % 附录内容结束 526 | 527 | \end{document} % 结束 528 | -------------------------------------------------------------------------------- /main.toc: -------------------------------------------------------------------------------- 1 | \contentsline {section}{\numberline {1}Introduction}{4}{section.0.1}% 2 | \contentsline {subsection}{\numberline {1.1}Problem Background}{4}{subsection.0.1.1}% 3 | \contentsline {subsection}{\numberline {1.2}Literature Review}{5}{subsection.0.1.2}% 4 | \contentsline {subsection}{\numberline {1.3}Our work}{5}{subsection.0.1.3}% 5 | \contentsline {section}{\numberline {2}Preparation of the Models}{6}{section.0.2}% 6 | \contentsline {subsection}{\numberline {2.1}Assumptions and Explanations}{6}{subsection.0.2.1}% 7 | \contentsline {subsection}{\numberline {2.2}Notations}{7}{subsection.0.2.2}% 8 | \contentsline {subsection}{\numberline {2.3}Data}{7}{subsection.0.2.3}% 9 | \contentsline {subsubsection}{\numberline {2.3.1}Data Collection}{7}{subsubsection.0.2.3.1}% 10 | \contentsline {subsubsection}{\numberline {2.3.2}Data Processing}{8}{subsubsection.0.2.3.2}% 11 | \contentsline {section}{\numberline {3}Model 1}{8}{section.0.3}% 12 | \contentsline {subsection}{\numberline {3.1}Details about Model 1}{8}{subsection.0.3.1}% 13 | \contentsline {section}{\numberline {4}Model 2}{8}{section.0.4}% 14 | \contentsline {subsection}{\numberline {4.1}Conclusion of Model 2}{8}{subsection.0.4.1}% 15 | \contentsline {subsection}{\numberline {4.2}Commetary on Model 2}{10}{subsection.0.4.2}% 16 | \contentsline {section}{\numberline {5}Model 3}{11}{section.0.5}% 17 | \contentsline {section}{\numberline {6}Test the Model}{11}{section.0.6}% 18 | \contentsline {subsection}{\numberline {6.1}Sensitivity Analysis}{11}{subsection.0.6.1}% 19 | \contentsline {subsection}{\numberline {6.2}Robustness Analysis}{11}{subsection.0.6.2}% 20 | \contentsline {section}{\numberline {7}Conclusion}{11}{section.0.7}% 21 | \contentsline {subsection}{\numberline {7.1}Summary of Results}{11}{subsection.0.7.1}% 22 | \contentsline {subsection}{\numberline {7.2}Strengths}{11}{subsection.0.7.2}% 23 | \contentsline {subsection}{\numberline {7.3}Weaknesses and Improvements}{11}{subsection.0.7.3}% 24 | \contentsline {section}{Memorandum}{12}{section.0.8}% 25 | \contentsline {section}{References}{12}{section.1.8}% 26 | \contentsline {section}{Appendix A: Further on \LaTeX }{13}{section*.7}% 27 | \contentsline {section}{Appendix B: Program Codes}{13}{section*.8}% 28 | \contentsline {section}{Appendix C: Report on Use of AI}{13}{section*.9}% 29 | \contentsfinish 30 | -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- 1 | \usepackage[style=alphabetic,maxnames=4,minnames=3,maxbibnames=99]{biblatex} 2 | 3 | @book{kopka2003guide, 4 | title={Guide to LATEX}, 5 | author={Kopka, Helmut and Daly, Patrick W}, 6 | year={2003}, 7 | publisher={Pearson Education} 8 | } 9 | 10 | @misc{openai2024chatgpt, 11 | title={ChatGPT: Optimizing Language Models for Dialogue}, 12 | author={OpenAI}, 13 | year={2024}, 14 | month={Feb}, 15 | note={Available online: \url{https://openai.com/chatgpt} (accessed on February 2$^{nd}$, 2024)} 16 | } 17 | --------------------------------------------------------------------------------