diff --git a/cache/Project1/Proj1-2/Proj1-2/report/assoc.png b/cache/Project1/Proj1-2/Proj1-2/report/assoc.png new file mode 100644 index 0000000..af30a84 Binary files /dev/null and b/cache/Project1/Proj1-2/Proj1-2/report/assoc.png differ diff --git a/cache/Project1/Proj1-2/Proj1-2/report/result.png b/cache/Project1/Proj1-2/Proj1-2/report/result.png new file mode 100644 index 0000000..1c02c83 Binary files /dev/null and b/cache/Project1/Proj1-2/Proj1-2/report/result.png differ diff --git a/cache/Project1/Proj1-2/Proj1-2/src/l1_miss_rate_vs_cache_size.png b/cache/Project1/Proj1-2/Proj1-2/src/l1_miss_rate_vs_cache_size.png new file mode 100644 index 0000000..8a8388d Binary files /dev/null and b/cache/Project1/Proj1-2/Proj1-2/src/l1_miss_rate_vs_cache_size.png differ diff --git a/cache/Project1/Proj1-2/Proj1-2/src/run-checkpoint.py b/cache/Project1/Proj1-2/Proj1-2/src/run-checkpoint.py new file mode 100644 index 0000000..62b587d --- /dev/null +++ b/cache/Project1/Proj1-2/Proj1-2/src/run-checkpoint.py @@ -0,0 +1,65 @@ +import subprocess +import matplotlib.pyplot as plt +import warnings +import numpy as np + +# 忽略警告 +warnings.filterwarnings("ignore") + +def run_simulator(BLOCKSIZE,L2_SIZE=4096,L1_ASSOC=2, L1_SIZE=1024, L2_ASSOC=4, Victim_Cache_SIZE=1024, trace_file="gcc_trace.txt"): + cmd = ["./sim_cache", str(BLOCKSIZE), str(L1_SIZE), str(L2_SIZE), str(L1_ASSOC), str(L2_ASSOC), str(Victim_Cache_SIZE), trace_file] + + try: + output = subprocess.check_output(cmd, stderr=subprocess.STDOUT).decode('utf-8') + return output + except subprocess.CalledProcessError as e: + print(f"Command failed with error: {e.output.decode('utf-8')}") + raise + +def parse_output(output): + lines = output.split('\n') + results = {} + for line in lines: + if "L1 miss rate:" in line: + results['L1_miss_rate'] = float(line.split()[-1]) + elif "L2 miss rate:" in line: + results['L2_miss_rate'] = float(line.split()[-1]) + elif "average access time:" in line: + results['AAT'] = float(line.split()[-2]) + return results + +# Define L1_SIZE values to simulate +data = [2,4,8,16,32,64, 128, 256, 512, 1024] + +# Run simulations and collect results +results = {} +for item in data: + try: + output = run_simulator(item) + parsed_results = parse_output(output) + results[item] = parsed_results + except Exception as e: + print(f"Error processing L2_SIZE {item}: {e}") + +# 准备数据用于可视化 +l1_miss_rates = [results[size]['L1_miss_rate'] for size in data if size in results] +l1_sizes_kb = [size for size in data if size in results] + +# 可视化 +plt.figure(figsize=(10, 6)) +plt.plot(l1_sizes_kb, l1_miss_rates, marker='o') +plt.title('L1 Miss Rate vs Block') +plt.xlabel('L1 Cache Size (KB)') +plt.ylabel('L1 Miss Rate') +plt.grid() + +# 设置均匀的 X 轴坐标 +plt.xticks(np.linspace(min(l1_sizes_kb), max(l1_sizes_kb), num=len(l1_sizes_kb)), + labels=l1_sizes_kb) + +plt.ylim(0, max(l1_miss_rates) + 0.01) # 设置 Y 轴范围 +plt.axhline(y=0, color='k', linestyle='--') # 添加基线 + +# 保存图像 +plt.savefig('l1_miss_rate_vs_cache_size.png', bbox_inches='tight') +plt.close() # 关闭图形以释放内存 \ No newline at end of file diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/1.tex b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/1.tex deleted file mode 100644 index 3ca9808..0000000 --- a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/1.tex +++ /dev/null @@ -1,7 +0,0 @@ - -\section{实验目标} -\begin{itemize} - \item 设计一个可灵活配置的两级 Cache 存储体系仿真器。 - \item 基于该仿真器和 SPEC 标准测试程序对 Cache 存储体系的性能进行分析。 -\end{itemize} - diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/3.tex b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/3.tex index 77277cd..dc19fd5 100644 --- a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/3.tex +++ b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/3.tex @@ -1,7 +1,5 @@ \section{实验结果} -本实验使用 C++ 构建,提供了 Makefile,通过 \verb|make| 指令运行,\verb|make clean| 会删除\verb|.o, .diff 和 .txt| 文件,如有 错误,会通过 diff 指令进行输出。 +利用所提供的验证文件与仿真器的输出文件进行自动化(非手工)比对,对所设计仿真器功能的正确性进行验证。 -执行结果如下: - -\figuremacro{Result.png}{Result}{1.0} +\figuremacro{result.png}{编译和测试结果}{1.0} diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/4.tex b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/4.tex index 01c8deb..00fdffb 100644 --- a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/4.tex +++ b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/4.tex @@ -3,52 +3,39 @@ \subsection{Miss Rate} -如图\ref{fig:mr} 所示: -\begin{figure}[!hbtp] +\begin{figure}[htbp] \centering - \subfmacro{ls1}{L1 Cache Size}{.31} - \subfmacro{a1}{Associativity}{.31} - \subfmacro{bs1}{Block Size}{.31} - \caption{Miss Rate}\label{fig:mr} + \begin{minipage}{0.4\linewidth} + \includegraphics[width=\linewidth]{L1Miss.png} + \caption{L1 Miss vs Size} + \end{minipage} + \begin{minipage}{0.4\linewidth} + \includegraphics[width=\linewidth]{block.png} + \caption{L1 Miss vs Block Size} + \end{minipage} + \begin{minipage}{0.6\linewidth} + \includegraphics[width=\linewidth]{assoc.png} + \caption{L1 Miss vs Associativity} + \end{minipage} + \end{figure} \begin{itemize} - \item 当 L1 缓存大小增加时,L1MissRate 平均值呈现下降趋势。这是符合预期的,因为更大的缓存大小通常意味着更低的缺失率。 - \item L1 Associativity 值与 L1MissRate 之间的关系似乎并不明确。这可能是因为其他参数的变化对缺失率产生了影响,使得 associativity 的影响不太明显。通常,增加 associativity 可以减少缺失率,但如果其他参数不合适,这种效果可能会受到抵消。 + + \item 当 L1 缓存大小增加时,L1MissRate 平均值呈现下降趋势,更大的缓存大小通常意味着更低的缺失率。 \item 对于给定的数据,块大小似乎并没有对 L1MissRate 产生显著的影响。这可能是因为块大小的选择需要与其他参数,如缓存大小和 associativity,相匹配才能获得最佳性能。 + \item L1 Associativity 值与 L1MissRate 之间的关系似乎并不明确。这可能是因为其他参数的变化对缺失率产生了影响,使得 associativity 的影响不太明显。通常,增加 associativity 可以减少缺失率,但如果其他参数不合适,这种效果可能会受到抵消。 \end{itemize} \subsection{AAT} -如图\ref{fig:aatL1} 和 \ref{fig:aatL2} 所示: - -\begin{figure}[!hbtp] - \centering - - \subfmacro{l1_size_assoc_trace1}{Gcc}{.31} - \subfmacro{l1_size_assoc_trace2}{Go}{.31} - \subfmacro{l1_size_assoc_trace3}{Perl}{.31} - \caption{AAT - L1 Cache}\label{fig:aatL1} - -\end{figure} - -\begin{figure}[!hbtp] - \centering - \subfmacro{l2_size_assoc_trace1}{Gcc}{.31} - \subfmacro{l2_size_assoc_trace2}{Go}{.31} - \subfmacro{l2_size_assoc_trace3}{Perl}{.31} - \caption{AAT - L2 Cache}\label{fig:aatL2} - -\end{figure} - \begin{itemize} \item 增大 L1 Cache Size 或 L1 ASSOC 通常可以降低 AAT。这可能是因为增大这些参数可以增加缓存的容量和关联性,从而降低缺失率和增加缓存命中率。 \item 与 L1 缓存类似,增大 L2 SIZE 或 L2 ASSOC 也可以降低 AAT。但是,L2 缓存的影响可能不如 L1 缓存明显,因为 L2 缓存通常在 L1 缓存缺失时才被访问。 \end{itemize} -如图 \ref{fig:aatBs} 所示: \begin{figure}[!htbp] \centering diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/5.tex b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/body/5.tex deleted file mode 100644 index e69de29..0000000 diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/L1Miss.png b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/L1Miss.png new file mode 100644 index 0000000..c43728f Binary files /dev/null and b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/L1Miss.png differ diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/Result.png b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/Result.png index 5d10daa..1c02c83 100644 Binary files a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/Result.png and b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/Result.png differ diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/assoc.png b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/assoc.png new file mode 100644 index 0000000..af30a84 Binary files /dev/null and b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/assoc.png differ diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/block.png b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/block.png new file mode 100644 index 0000000..b4b8f2f Binary files /dev/null and b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/figures/block.png differ diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.aux b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.aux index a055907..cc92fee 100644 --- a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.aux +++ b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.aux @@ -1,33 +1,20 @@ \relax -\@writefile{toc}{\contentsline {section}{\numberline {1}实验目标}{1}{}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {2}实验内容}{1}{}\protected@file@percent } -\newlabel{sec:one}{{2}{1}} -\@writefile{toc}{\contentsline {section}{\numberline {3}实验结果}{1}{}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Result}}{1}{}\protected@file@percent } -\newlabel{fig:Result.png}{{1}{1}} -\@writefile{toc}{\contentsline {section}{\numberline {4}实验分析}{1}{}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Miss Rate}{1}{}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Miss Rate}}{2}{}\protected@file@percent } -\@writefile{lof}{\contentsline {subfigure}{\numberline{(a)}{\ignorespaces {L1 Cache Size}}}{2}{}\protected@file@percent } -\@writefile{lof}{\contentsline {subfigure}{\numberline{(b)}{\ignorespaces {Associativity}}}{2}{}\protected@file@percent } -\@writefile{lof}{\contentsline {subfigure}{\numberline{(c)}{\ignorespaces {Block Size}}}{2}{}\protected@file@percent } -\newlabel{fig:mr}{{2}{2}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}AAT}{2}{}\protected@file@percent } -\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces AAT - L1 Cache}}{2}{}\protected@file@percent } -\@writefile{lof}{\contentsline {subfigure}{\numberline{(a)}{\ignorespaces {Gcc}}}{2}{}\protected@file@percent } -\@writefile{lof}{\contentsline {subfigure}{\numberline{(b)}{\ignorespaces {Go}}}{2}{}\protected@file@percent } -\@writefile{lof}{\contentsline {subfigure}{\numberline{(c)}{\ignorespaces {Perl}}}{2}{}\protected@file@percent } -\newlabel{fig:aatL1}{{3}{2}} -\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces AAT - L2 Cache}}{2}{}\protected@file@percent } -\@writefile{lof}{\contentsline {subfigure}{\numberline{(a)}{\ignorespaces {Gcc}}}{2}{}\protected@file@percent } -\@writefile{lof}{\contentsline {subfigure}{\numberline{(b)}{\ignorespaces {Go}}}{2}{}\protected@file@percent } -\@writefile{lof}{\contentsline {subfigure}{\numberline{(c)}{\ignorespaces {Perl}}}{2}{}\protected@file@percent } -\newlabel{fig:aatL2}{{4}{2}} -\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces AAT}}{3}{}\protected@file@percent } -\@writefile{lof}{\contentsline {subfigure}{\numberline{(a)}{\ignorespaces {Block Size}}}{3}{}\protected@file@percent } -\@writefile{lof}{\contentsline {subfigure}{\numberline{(b)}{\ignorespaces {Victim Size}}}{3}{}\protected@file@percent } -\newlabel{fig:aatBs}{{5}{3}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.3}最优参数组合}{3}{}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {1}实验内容}{1}{}\protected@file@percent } +\newlabel{sec:one}{{1}{1}} +\@writefile{toc}{\contentsline {section}{\numberline {2}实验结果}{1}{}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces 编译和测试结果}}{1}{}\protected@file@percent } +\newlabel{fig:result.png}{{1}{1}} +\@writefile{toc}{\contentsline {section}{\numberline {3}实验分析}{1}{}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Miss Rate}{1}{}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}AAT}{1}{}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces L1 Miss vs Size}}{2}{}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces L1 Miss vs Block Size}}{2}{}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces L1 Miss vs Associativity}}{2}{}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces AAT}}{2}{}\protected@file@percent } +\@writefile{lof}{\contentsline {subfigure}{\numberline{(a)}{\ignorespaces {Block Size}}}{2}{}\protected@file@percent } +\@writefile{lof}{\contentsline {subfigure}{\numberline{(b)}{\ignorespaces {Victim Size}}}{2}{}\protected@file@percent } +\newlabel{fig:aatBs}{{5}{2}} +\@writefile{toc}{\contentsline {subsection}{\numberline {3.3}最优参数组合}{3}{}\protected@file@percent } \@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces 最优参数组合}}{3}{}\protected@file@percent } \newlabel{tab:res2}{{1}{3}} \gdef \@abspage@last{5} diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.log b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.log index 71b8746..a4e8e16 100644 --- a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.log +++ b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.log @@ -1,90 +1,99 @@ -This is XeTeX, Version 3.141592653-2.6-0.999995 (TeX Live 2023/Arch Linux) (preloaded format=xelatex 2023.6.10) 31 OCT 2023 18:43 +This is XeTeX, Version 3.141592653-2.6-0.999993 (TeX Live 2022/dev/Debian) (preloaded format=xelatex 2024.10.30) 30 OCT 2024 15:41 entering extended mode restricted \write18 enabled. %&-line parsing enabled. **main (./main.tex -LaTeX2e <2022-11-01> patch level 1 -L3 programming layer <2023-02-22> (./tjureport.cls +LaTeX2e <2021-11-15> patch level 1 +L3 programming layer <2022-01-21> (./tjureport.cls Document Class: tjureport -(/usr/share/texmf-dist/tex/latex/ctex/ctexart.cls -(/usr/share/texmf-dist/tex/latex/ctex/config/ctexbackend.cfg -File: ctexbackend.cfg 2022/07/14 v2.5.10 Backend configuration file (CTEX) +(/usr/share/texlive/texmf-dist/tex/latex/ctex/ctexart.cls +(/usr/share/texlive/texmf-dist/tex/latex/ctex/config/ctexbackend.cfg +File: ctexbackend.cfg 2021/12/12 v2.5.8 Backend configuration file (CTEX) ) -(/usr/share/texmf-dist/tex/latex/l3kernel/expl3.sty -Package: expl3 2023-02-22 L3 programming layer (loader) +(/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty +Package: expl3 2022-01-21 L3 programming layer (loader) -(/usr/share/texmf-dist/tex/latex/l3backend/l3backend-xetex.def -File: l3backend-xetex.def 2023-01-16 L3 backend support: XeTeX -\g__graphics_track_int=\count181 -\l__pdf_internal_box=\box51 -\g__pdf_backend_object_int=\count182 -\g__pdf_backend_annotation_int=\count183 -\g__pdf_backend_link_int=\count184 +(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-xetex.def +File: l3backend-xetex.def 2022-01-12 L3 backend support: XeTeX + +(|extractbb --version) +\c__kernel_sys_dvipdfmx_version_int=\count181 +\l__color_backend_stack_int=\count182 +\g__color_backend_stack_int=\count183 +\g__graphics_track_int=\count184 +\l__pdf_internal_box=\box50 +\g__pdf_backend_object_int=\count185 +\g__pdf_backend_annotation_int=\count186 +\g__pdf_backend_link_int=\count187 )) -Document Class: ctexart 2022/07/14 v2.5.10 Chinese adapter for class article (C -TEX) -(/usr/share/texmf-dist/tex/latex/ctex/ctexhook.sty -Package: ctexhook 2022/07/14 v2.5.10 Document and package hooks (CTEX) +Document Class: ctexart 2021/12/12 v2.5.8 Chinese adapter for class article (CT +EX) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty +Package: xparse 2022-01-12 L3 Experimental document command parser ) -(/usr/share/texmf-dist/tex/latex/ctex/ctexpatch.sty -Package: ctexpatch 2022/07/14 v2.5.10 Patching commands (CTEX) +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty +Package: l3keys2e 2022-01-12 LaTeX2e option processing using LaTeX3 keys ) -(/usr/share/texmf-dist/tex/latex/base/fix-cm.sty +(/usr/share/texlive/texmf-dist/tex/latex/ctex/ctexhook.sty +Package: ctexhook 2021/12/12 v2.5.8 Document and package hooks (CTEX) +) +(/usr/share/texlive/texmf-dist/tex/latex/ctex/ctexpatch.sty +Package: ctexpatch 2021/12/12 v2.5.8 Patching commands (CTEX) +) +(/usr/share/texlive/texmf-dist/tex/latex/base/fix-cm.sty Package: fix-cm 2020/11/24 v1.1t fixes to LaTeX -(/usr/share/texmf-dist/tex/latex/base/ts1enc.def +(/usr/share/texlive/texmf-dist/tex/latex/base/ts1enc.def File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file LaTeX Font Info: Redeclaring font encoding TS1 on input line 47. )) -\l__ctex_tmp_int=\count185 -\l__ctex_tmp_box=\box52 -\l__ctex_tmp_dim=\dimen140 -\g__ctex_section_depth_int=\count186 -\g__ctex_font_size_int=\count187 +\l__ctex_tmp_int=\count188 +\l__ctex_tmp_box=\box51 +\l__ctex_tmp_dim=\dimen138 +\g__ctex_section_depth_int=\count189 +\g__ctex_font_size_int=\count190 -(/usr/share/texmf-dist/tex/latex/ctex/config/ctexopts.cfg -File: ctexopts.cfg 2022/07/14 v2.5.10 Option configuration file (CTEX) +(/usr/share/texlive/texmf-dist/tex/latex/ctex/config/ctexopts.cfg +File: ctexopts.cfg 2021/12/12 v2.5.8 Option configuration file (CTEX) ) -(/usr/share/texmf-dist/tex/latex/base/article.cls -Document Class: article 2022/07/02 v1.4n Standard LaTeX document class -(/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2022/07/02 v1.4n Standard LaTeX file (size option) -Font mapping `tex-text.tec' for font `[lmroman10-regular]:mapping=tex-text;' no -t found. +(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls +Document Class: article 2021/10/04 v1.4n Standard LaTeX document class +(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo +File: size10.clo 2021/10/04 v1.4n Standard LaTeX file (size option) ) -\c@part=\count188 -\c@section=\count189 -\c@subsection=\count190 -\c@subsubsection=\count191 -\c@paragraph=\count192 -\c@subparagraph=\count193 -\c@figure=\count194 -\c@table=\count195 -\abovecaptionskip=\skip48 -\belowcaptionskip=\skip49 -\bibindent=\dimen141 +\c@part=\count191 +\c@section=\count192 +\c@subsection=\count193 +\c@subsubsection=\count194 +\c@paragraph=\count195 +\c@subparagraph=\count196 +\c@figure=\count197 +\c@table=\count198 +\abovecaptionskip=\skip47 +\belowcaptionskip=\skip48 +\bibindent=\dimen139 ) -(/usr/share/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def -File: ctex-engine-xetex.def 2022/07/14 v2.5.10 XeLaTeX adapter (CTEX) +(/usr/share/texlive/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def +File: ctex-engine-xetex.def 2021/12/12 v2.5.8 XeLaTeX adapter (CTEX) -(/usr/share/texmf-dist/tex/xelatex/xecjk/xeCJK.sty -Package: xeCJK 2022/08/05 v3.9.1 Typesetting CJK scripts with XeLaTeX +(/usr/share/texlive/texmf-dist/tex/xelatex/xecjk/xeCJK.sty +Package: xeCJK 2021/12/12 v3.8.8 Typesetting CJK scripts with XeLaTeX -(/usr/share/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty -Package: xtemplate 2023-02-02 L3 Experimental prototype document functions -\l__xtemplate_tmp_dim=\dimen142 -\l__xtemplate_tmp_int=\count196 +(/usr/share/texlive/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty +Package: xtemplate 2022-01-12 L3 Experimental prototype document functions +\l__xtemplate_tmp_dim=\dimen140 +\l__xtemplate_tmp_int=\count199 \l__xtemplate_tmp_muskip=\muskip16 -\l__xtemplate_tmp_skip=\skip50 +\l__xtemplate_tmp_skip=\skip49 ) -\l__xeCJK_tmp_int=\count197 -\l__xeCJK_tmp_box=\box53 -\l__xeCJK_tmp_dim=\dimen143 -\l__xeCJK_tmp_skip=\skip51 -\g__xeCJK_space_factor_int=\count198 -\l__xeCJK_begin_int=\count199 -\l__xeCJK_end_int=\count266 +\l__xeCJK_tmp_int=\count266 +\l__xeCJK_tmp_box=\box52 +\l__xeCJK_tmp_dim=\dimen141 +\l__xeCJK_tmp_skip=\skip50 +\g__xeCJK_space_factor_int=\count267 +\l__xeCJK_begin_int=\count268 +\l__xeCJK_end_int=\count269 \c__xeCJK_CJK_class_int=\XeTeXcharclass1 \c__xeCJK_FullLeft_class_int=\XeTeXcharclass2 \c__xeCJK_FullRight_class_int=\XeTeXcharclass3 @@ -93,119 +102,103 @@ Package: xtemplate 2023-02-02 L3 Experimental prototype document functions \c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6 \c__xeCJK_CM_class_int=\XeTeXcharclass7 \c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8 -\l__xeCJK_last_skip=\skip52 -\c__xeCJK_none_node=\count267 -\g__xeCJK_node_int=\count268 -\c__xeCJK_CJK_node_dim=\dimen144 -\c__xeCJK_CJK-space_node_dim=\dimen145 -\c__xeCJK_default_node_dim=\dimen146 -\c__xeCJK_CJK-widow_node_dim=\dimen147 -\c__xeCJK_normalspace_node_dim=\dimen148 -\c__xeCJK_default-space_node_skip=\skip53 -\l__xeCJK_ccglue_skip=\skip54 -\l__xeCJK_ecglue_skip=\skip55 -\l__xeCJK_punct_kern_skip=\skip56 -\l__xeCJK_indent_box=\box54 -\l__xeCJK_last_penalty_int=\count269 -\l__xeCJK_last_bound_dim=\dimen149 -\l__xeCJK_last_kern_dim=\dimen150 -\l__xeCJK_widow_penalty_int=\count270 +\l__xeCJK_last_skip=\skip51 +\g__xeCJK_node_int=\count270 +\c__xeCJK_CJK_node_dim=\dimen142 +\c__xeCJK_CJK-space_node_dim=\dimen143 +\c__xeCJK_default_node_dim=\dimen144 +\c__xeCJK_default-space_node_dim=\dimen145 +\c__xeCJK_CJK-widow_node_dim=\dimen146 +\c__xeCJK_normalspace_node_dim=\dimen147 +\l__xeCJK_ccglue_skip=\skip52 +\l__xeCJK_ecglue_skip=\skip53 +\l__xeCJK_punct_kern_skip=\skip54 +\l__xeCJK_last_penalty_int=\count271 +\l__xeCJK_last_bound_dim=\dimen148 +\l__xeCJK_last_kern_dim=\dimen149 +\l__xeCJK_widow_penalty_int=\count272 Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0 -(xtemplate) argument(s) on line 2396. +(xtemplate) argument(s) on line 2337. -\l__xeCJK_fixed_punct_width_dim=\dimen151 -\l__xeCJK_mixed_punct_width_dim=\dimen152 -\l__xeCJK_middle_punct_width_dim=\dimen153 -\l__xeCJK_fixed_margin_width_dim=\dimen154 -\l__xeCJK_mixed_margin_width_dim=\dimen155 -\l__xeCJK_middle_margin_width_dim=\dimen156 -\l__xeCJK_bound_punct_width_dim=\dimen157 -\l__xeCJK_bound_margin_width_dim=\dimen158 -\l__xeCJK_margin_minimum_dim=\dimen159 -\l__xeCJK_kerning_total_width_dim=\dimen160 -\l__xeCJK_same_align_margin_dim=\dimen161 -\l__xeCJK_different_align_margin_dim=\dimen162 -\l__xeCJK_kerning_margin_width_dim=\dimen163 -\l__xeCJK_kerning_margin_minimum_dim=\dimen164 -\l__xeCJK_bound_dim=\dimen165 -\l__xeCJK_reverse_bound_dim=\dimen166 -\l__xeCJK_margin_dim=\dimen167 -\l__xeCJK_minimum_bound_dim=\dimen168 -\l__xeCJK_kerning_margin_dim=\dimen169 -\g__xeCJK_family_int=\count271 -\l__xeCJK_fam_int=\count272 -\g__xeCJK_fam_allocation_int=\count273 -\l__xeCJK_verb_case_int=\count274 -\l__xeCJK_verb_exspace_skip=\skip57 +\l__xeCJK_fixed_punct_width_dim=\dimen150 +\l__xeCJK_mixed_punct_width_dim=\dimen151 +\l__xeCJK_middle_punct_width_dim=\dimen152 +\l__xeCJK_fixed_margin_width_dim=\dimen153 +\l__xeCJK_mixed_margin_width_dim=\dimen154 +\l__xeCJK_middle_margin_width_dim=\dimen155 +\l__xeCJK_bound_punct_width_dim=\dimen156 +\l__xeCJK_bound_margin_width_dim=\dimen157 +\l__xeCJK_margin_minimum_dim=\dimen158 +\l__xeCJK_kerning_total_width_dim=\dimen159 +\l__xeCJK_same_align_margin_dim=\dimen160 +\l__xeCJK_different_align_margin_dim=\dimen161 +\l__xeCJK_kerning_margin_width_dim=\dimen162 +\l__xeCJK_kerning_margin_minimum_dim=\dimen163 +\l__xeCJK_bound_dim=\dimen164 +\l__xeCJK_reverse_bound_dim=\dimen165 +\l__xeCJK_margin_dim=\dimen166 +\l__xeCJK_minimum_bound_dim=\dimen167 +\l__xeCJK_kerning_margin_dim=\dimen168 +\g__xeCJK_family_int=\count273 +\l__xeCJK_fam_int=\count274 +\g__xeCJK_fam_allocation_int=\count275 +\l__xeCJK_verb_case_int=\count276 +\l__xeCJK_verb_exspace_skip=\skip55 -(/usr/share/texmf-dist/tex/latex/fontspec/fontspec.sty -(/usr/share/texmf-dist/tex/latex/l3packages/xparse/xparse.sty -Package: xparse 2023-02-02 L3 Experimental document command parser -) +(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty Package: fontspec 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaTeX -(/usr/share/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty +(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty Package: fontspec-xetex 2022/01/15 v2.8a Font selection for XeLaTeX and LuaLaTe X -\l__fontspec_script_int=\count275 -\l__fontspec_language_int=\count276 -\l__fontspec_strnum_int=\count277 -\l__fontspec_tmp_int=\count278 -\l__fontspec_tmpa_int=\count279 -\l__fontspec_tmpb_int=\count280 -\l__fontspec_tmpc_int=\count281 -\l__fontspec_em_int=\count282 -\l__fontspec_emdef_int=\count283 -\l__fontspec_strong_int=\count284 -\l__fontspec_strongdef_int=\count285 -\l__fontspec_tmpa_dim=\dimen170 -\l__fontspec_tmpb_dim=\dimen171 -\l__fontspec_tmpc_dim=\dimen172 +\l__fontspec_script_int=\count277 +\l__fontspec_language_int=\count278 +\l__fontspec_strnum_int=\count279 +\l__fontspec_tmp_int=\count280 +\l__fontspec_tmpa_int=\count281 +\l__fontspec_tmpb_int=\count282 +\l__fontspec_tmpc_int=\count283 +\l__fontspec_em_int=\count284 +\l__fontspec_emdef_int=\count285 +\l__fontspec_strong_int=\count286 +\l__fontspec_strongdef_int=\count287 +\l__fontspec_tmpa_dim=\dimen169 +\l__fontspec_tmpb_dim=\dimen170 +\l__fontspec_tmpc_dim=\dimen171 -(/usr/share/texmf-dist/tex/latex/base/fontenc.sty +(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty Package: fontenc 2021/04/29 v2.0v Standard LaTeX package ) -(/usr/share/texmf-dist/tex/latex/fontspec/fontspec.cfg) -Font mapping `tex-text.tec' for font `[lmroman10-bold]:mapping=tex-text;' not f -ound. +(/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg))) +(/usr/share/texlive/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg +File: xeCJK.cfg 2021/12/12 v3.8.8 Configuration file for xeCJK package )) -(/usr/share/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg -File: xeCJK.cfg 2022/08/05 v3.9.1 Configuration file for xeCJK package -)) -\ccwd=\dimen173 -\l__ctex_ccglue_skip=\skip58 +\ccwd=\dimen172 +\l__ctex_ccglue_skip=\skip56 ) -\l__ctex_ziju_dim=\dimen174 +\l__ctex_ziju_dim=\dimen173 -(/usr/share/texmf-dist/tex/latex/zhnumber/zhnumber.sty -Package: zhnumber 2022/07/14 v3.0 Typesetting numbers with Chinese glyphs -\l__zhnum_scale_int=\count286 -\l__zhnum_tmp_int=\count287 +(/usr/share/texlive/texmf-dist/tex/latex/zhnumber/zhnumber.sty +Package: zhnumber 2020/05/01 v2.8 Typesetting numbers with Chinese glyphs +\l__zhnum_scale_int=\count288 -(/usr/share/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg -File: zhnumber-utf8.cfg 2022/07/14 v3.0 Chinese numerals with UTF8 encoding +(/usr/share/texlive/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg +File: zhnumber-utf8.cfg 2020/05/01 v2.8 Chinese numerals with UTF8 encoding )) -\l__ctex_heading_skip=\skip59 +\l__ctex_heading_skip=\skip57 -(/usr/share/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-article.def -File: ctex-scheme-chinese-article.def 2022/07/14 v2.5.10 Chinese scheme for art -icle (CTEX) - -(/usr/share/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg -File: ctex-name-utf8.cfg 2022/07/14 v2.5.10 Caption with encoding UTF-8 (CTEX) -)) -(/usr/share/texmf-dist/tex/latex/ctex/ctex-c5size.clo -File: ctex-c5size.clo 2022/07/14 v2.5.10 c5size option (CTEX) +(/usr/share/texlive/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-articl +e.def +File: ctex-scheme-chinese-article.def 2021/12/12 v2.5.8 Chinese scheme for arti +cle (CTEX) + (/usr/share/texlive/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg +File: ctex-name-utf8.cfg 2021/12/12 v2.5.8 Caption with encoding UTF-8 (CTEX) +)) (/usr/share/texlive/texmf-dist/tex/latex/ctex/ctex-c5size.clo +File: ctex-c5size.clo 2021/12/12 v2.5.8 c5size option (CTEX) ) -Font mapping `tex-text.tec' for font `[lmroman8-regular]:mapping=tex-text;' not - found. -Font mapping `tex-text.tec' for font `[lmroman10-regular]:mapping=tex-text;' no -t found. - -(/usr/share/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-fandol.def -File: ctex-fontset-fandol.def 2022/07/14 v2.5.10 Fandol fonts definition (CTEX) - +(/usr/share/texlive/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-fandol.def +File: ctex-fontset-fandol.def 2021/12/12 v2.5.8 Fandol fonts definition (CTEX) Package fontspec Warning: Font "FandolSong-Regular" does not contain requested @@ -230,390 +223,377 @@ Package fontspec Info: Font family 'FandolSong-Regular(0)' created for font (fontspec) <->"[FandolKai-Regular.otf]/OT:language=dflt;" (fontspec) - 'italic small caps' (m/scit) with NFSS spec.: -)) (/usr/share/texmf-dist/tex/latex/ctex/config/ctex.cfg -File: ctex.cfg 2022/07/14 v2.5.10 Configuration file (CTEX) +)) (/usr/share/texlive/texmf-dist/tex/latex/ctex/config/ctex.cfg +File: ctex.cfg 2021/12/12 v2.5.8 Configuration file (CTEX) ) -(/usr/share/texmf-dist/tex/latex/cjk/texinput/CJKnumb.sty -Package: CJKnumb 2021/10/16 4.8.5 -\CJK@q=\count288 -\CJK@r=\count289 +(/usr/share/texmf/tex/latex/CJK/CJKnumb.sty +Package: CJKnumb 2015/04/18 4.8.4 +\CJK@q=\count289 +\CJK@r=\count290 ) -(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty +(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR) -(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2022/05/29 v1.15 key=value parser (DPC) +(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) \KV@toks@=\toks16 ) -(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2022/03/10 v1.4e Standard LaTeX Graphics (DPC,SPQR) +(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty +Package: graphics 2021/03/04 v1.4d Standard LaTeX Graphics (DPC,SPQR) -(/usr/share/texmf-dist/tex/latex/graphics/trig.sty +(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty Package: trig 2021/08/11 v1.11 sin cos tan (DPC) ) -(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration ) Package graphics Info: Driver file: xetex.def on input line 107. -(/usr/share/texmf-dist/tex/latex/graphics-def/xetex.def -File: xetex.def 2022/09/22 v5.0n Graphics/color driver for xetex +(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/xetex.def +File: xetex.def 2021/03/18 v5.0k Graphics/color driver for xetex )) -\Gin@req@height=\dimen175 -\Gin@req@width=\dimen176 +\Gin@req@height=\dimen174 +\Gin@req@width=\dimen175 ) -(/usr/share/texmf-dist/tex/latex/geometry/geometry.sty +(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty Package: geometry 2020/01/02 v5.9 Page Geometry -(/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty +(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. -(/usr/share/texmf-dist/tex/generic/iftex/iftex.sty -Package: iftex 2022/02/03 v1.0f TeX engine tests +(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +Package: iftex 2020/03/06 v1.0d TeX engine tests )) -\Gm@cnth=\count290 -\Gm@cntv=\count291 -\c@Gm@tempcnt=\count292 -\Gm@bindingoffset=\dimen177 -\Gm@wd@mp=\dimen178 -\Gm@odd@mp=\dimen179 -\Gm@even@mp=\dimen180 -\Gm@layoutwidth=\dimen181 -\Gm@layoutheight=\dimen182 -\Gm@layouthoffset=\dimen183 -\Gm@layoutvoffset=\dimen184 +\Gm@cnth=\count291 +\Gm@cntv=\count292 +\c@Gm@tempcnt=\count293 +\Gm@bindingoffset=\dimen176 +\Gm@wd@mp=\dimen177 +\Gm@odd@mp=\dimen178 +\Gm@even@mp=\dimen179 +\Gm@layoutwidth=\dimen180 +\Gm@layoutheight=\dimen181 +\Gm@layouthoffset=\dimen182 +\Gm@layoutvoffset=\dimen183 \Gm@dimlist=\toks17 ) -(/usr/share/texmf-dist/tex/latex/titlesec/titlesec.sty +(/usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty Package: titlesec 2021/07/05 v2.14 Sectioning titles -\ttl@box=\box55 -\beforetitleunit=\skip60 -\aftertitleunit=\skip61 -\ttl@plus=\dimen185 -\ttl@minus=\dimen186 +\ttl@box=\box53 +\beforetitleunit=\skip58 +\aftertitleunit=\skip59 +\ttl@plus=\dimen184 +\ttl@minus=\dimen185 \ttl@toksa=\toks18 -\titlewidth=\dimen187 -\titlewidthlast=\dimen188 -\titlewidthfirst=\dimen189 +\titlewidth=\dimen186 +\titlewidthlast=\dimen187 +\titlewidthfirst=\dimen188 ) -(/usr/share/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty -Package: fancyhdr 2022/11/09 v4.1 Extensive control of page headers and footers - -\f@nch@headwidth=\skip62 -\f@nch@O@elh=\skip63 -\f@nch@O@erh=\skip64 -\f@nch@O@olh=\skip65 -\f@nch@O@orh=\skip66 -\f@nch@O@elf=\skip67 -\f@nch@O@erf=\skip68 -\f@nch@O@olf=\skip69 -\f@nch@O@orf=\skip70 +(/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty +Package: fancyhdr 2021/01/28 v4.0.1 Extensive control of page headers and foote +rs +\f@nch@headwidth=\skip60 +\f@nch@O@elh=\skip61 +\f@nch@O@erh=\skip62 +\f@nch@O@olh=\skip63 +\f@nch@O@orh=\skip64 +\f@nch@O@elf=\skip65 +\f@nch@O@erf=\skip66 +\f@nch@O@olf=\skip67 +\f@nch@O@orf=\skip68 ) -(/usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty +(/usr/share/texlive/texmf-dist/tex/latex/enumitem/enumitem.sty Package: enumitem 2019/06/20 v3.9 Customized lists -\labelindent=\skip71 -\enit@outerparindent=\dimen190 +\labelindent=\skip69 +\enit@outerparindent=\dimen189 \enit@toks=\toks19 -\enit@inbox=\box56 -\enit@count@id=\count293 -\enitdp@description=\count294 +\enit@inbox=\box54 +\enit@count@id=\count294 +\enitdp@description=\count295 ) -(/usr/share/texmf-dist/tex/latex/listings/listings.sty -\lst@mode=\count295 -\lst@gtempboxa=\box57 +(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty +\lst@mode=\count296 +\lst@gtempboxa=\box55 \lst@token=\toks20 -\lst@length=\count296 -\lst@currlwidth=\dimen191 -\lst@column=\count297 -\lst@pos=\count298 -\lst@lostspace=\dimen192 -\lst@width=\dimen193 -\lst@newlines=\count299 -\lst@lineno=\count300 -\lst@maxwidth=\dimen194 +\lst@length=\count297 +\lst@currlwidth=\dimen190 +\lst@column=\count298 +\lst@pos=\count299 +\lst@lostspace=\dimen191 +\lst@width=\dimen192 +\lst@newlines=\count300 +\lst@lineno=\count301 +\lst@maxwidth=\dimen193 -(/usr/share/texmf-dist/tex/latex/listings/lstmisc.sty -File: lstmisc.sty 2023/02/27 1.9 (Carsten Heinz) -\c@lstnumber=\count301 -\lst@skipnumbers=\count302 -\lst@framebox=\box58 +(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty +File: lstmisc.sty 2020/03/24 1.8d (Carsten Heinz) +\c@lstnumber=\count302 +\lst@skipnumbers=\count303 +\lst@framebox=\box56 ) -(/usr/share/texmf-dist/tex/latex/listings/listings.cfg -File: listings.cfg 2023/02/27 1.9 listings configuration +(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg +File: listings.cfg 2020/03/24 1.8d listings configuration )) -Package: listings 2023/02/27 1.9 (Carsten Heinz) +Package: listings 2020/03/24 1.8d (Carsten Heinz) -(/usr/share/texmf-dist/tex/xelatex/xecjk/xeCJK-listings.sty -Package: xeCJK-listings 2022/08/05 v3.9.1 xeCJK patch file for listings -\l__xeCJK_listings_max_char_int=\count303 -\l__xeCJK_listings_flag_int=\count304 +(/usr/share/texlive/texmf-dist/tex/xelatex/xecjk/xeCJK-listings.sty +Package: xeCJK-listings 2021/12/12 v3.8.8 xeCJK patch file for listings +\l__xeCJK_listings_max_char_int=\count304 +\l__xeCJK_listings_flag_int=\count305 ) -(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2022/06/12 v2.14 LaTeX color extensions (UK) +(/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty +Package: xcolor 2021/10/31 v2.13 LaTeX color extensions (UK) -(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg +(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg File: color.cfg 2016/01/02 v1.6 sample color configuration ) Package xcolor Info: Driver file: xetex.def on input line 227. - -(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1353. -Package xcolor Info: Model `RGB' extended on input line 1369. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1371. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1372. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1373. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1374. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1375. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1376. +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1352. +Package xcolor Info: Model `RGB' extended on input line 1368. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1370. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1371. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1372. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1373. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1374. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1375. ) -(/usr/share/texmf-dist/tex/latex/tools/array.sty -Package: array 2022/09/04 v2.5g Tabular extension package (FMi) -\col@sep=\dimen195 -\ar@mcellbox=\box59 -\extrarowheight=\dimen196 +(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty +Package: array 2021/10/04 v2.5f Tabular extension package (FMi) +\col@sep=\dimen194 +\ar@mcellbox=\box57 +\extrarowheight=\dimen195 \NC@list=\toks21 -\extratabsurround=\skip72 -\backup@length=\skip73 -\ar@cellbox=\box60 +\extratabsurround=\skip70 +\backup@length=\skip71 +\ar@cellbox=\box58 ) -(/usr/share/texmf-dist/tex/latex/mathtools/mathtools.sty -Package: mathtools 2022/06/29 v1.29 mathematical typesetting tools +(/usr/share/texlive/texmf-dist/tex/latex/mathtools/mathtools.sty +Package: mathtools 2021/02/02 v1.28 mathematical typesetting tools -(/usr/share/texmf-dist/tex/latex/tools/calc.sty +(/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) -\calc@Acount=\count305 -\calc@Bcount=\count306 -\calc@Adimen=\dimen197 -\calc@Bdimen=\dimen198 -\calc@Askip=\skip74 -\calc@Bskip=\skip75 +\calc@Acount=\count306 +\calc@Bcount=\count307 +\calc@Adimen=\dimen196 +\calc@Bdimen=\dimen197 +\calc@Askip=\skip72 +\calc@Bskip=\skip73 LaTeX Info: Redefining \setlength on input line 80. LaTeX Info: Redefining \addtolength on input line 81. -\calc@Ccount=\count307 -\calc@Cskip=\skip76 +\calc@Ccount=\count308 +\calc@Cskip=\skip74 ) -(/usr/share/texmf-dist/tex/latex/mathtools/mhsetup.sty +(/usr/share/texlive/texmf-dist/tex/latex/mathtools/mhsetup.sty Package: mhsetup 2021/03/18 v1.4 programming setup (MH) ) -(/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty -Package: amsmath 2022/04/08 v2.17n AMS math features -\@mathmargin=\skip77 +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty +Package: amsmath 2021/10/15 v2.17l AMS math features +\@mathmargin=\skip75 For additional information on amsmath, use the `?' option. -(/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty Package: amstext 2021/08/26 v2.01 AMS text -(/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty File: amsgen.sty 1999/11/30 v2.0 generic functions \@emptytoks=\toks22 -\ex@=\dimen199 +\ex@=\dimen198 )) -(/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty Package: amsbsy 1999/11/29 v1.2d Bold Symbols -\pmbraise@=\dimen256 +\pmbraise@=\dimen199 ) -(/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty -Package: amsopn 2022/04/08 v2.04 operator names +(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty +Package: amsopn 2021/08/26 v2.02 operator names ) -\inf@bad=\count308 +\inf@bad=\count309 LaTeX Info: Redefining \frac on input line 234. -\uproot@=\count309 -\leftroot@=\count310 +\uproot@=\count310 +\leftroot@=\count311 LaTeX Info: Redefining \overline on input line 399. -LaTeX Info: Redefining \colon on input line 410. -\classnum@=\count311 -\DOTSCASE@=\count312 +\classnum@=\count312 +\DOTSCASE@=\count313 LaTeX Info: Redefining \ldots on input line 496. LaTeX Info: Redefining \dots on input line 499. LaTeX Info: Redefining \cdots on input line 620. -\Mathstrutbox@=\box61 -\strutbox@=\box62 -LaTeX Info: Redefining \big on input line 722. -LaTeX Info: Redefining \Big on input line 723. -LaTeX Info: Redefining \bigg on input line 724. -LaTeX Info: Redefining \Bigg on input line 725. -\big@size=\dimen257 +\Mathstrutbox@=\box59 +\strutbox@=\box60 +\big@size=\dimen256 LaTeX Font Info: Redeclaring font encoding OML on input line 743. LaTeX Font Info: Redeclaring font encoding OMS on input line 744. -\macc@depth=\count313 -LaTeX Info: Redefining \bmod on input line 905. -LaTeX Info: Redefining \pmod on input line 910. -LaTeX Info: Redefining \smash on input line 940. -LaTeX Info: Redefining \relbar on input line 970. -LaTeX Info: Redefining \Relbar on input line 971. -\c@MaxMatrixCols=\count314 +\macc@depth=\count314 +\c@MaxMatrixCols=\count315 \dotsspace@=\muskip17 -\c@parentequation=\count315 -\dspbrk@lvl=\count316 +\c@parentequation=\count316 +\dspbrk@lvl=\count317 \tag@help=\toks23 -\row@=\count317 -\column@=\count318 -\maxfields@=\count319 +\row@=\count318 +\column@=\count319 +\maxfields@=\count320 \andhelp@=\toks24 -\eqnshift@=\dimen258 -\alignsep@=\dimen259 -\tagshift@=\dimen260 -\tagwidth@=\dimen261 -\totwidth@=\dimen262 -\lineht@=\dimen263 +\eqnshift@=\dimen257 +\alignsep@=\dimen258 +\tagshift@=\dimen259 +\tagwidth@=\dimen260 +\totwidth@=\dimen261 +\lineht@=\dimen262 \@envbody=\toks25 -\multlinegap=\skip78 -\multlinetaggap=\skip79 +\multlinegap=\skip76 +\multlinetaggap=\skip77 \mathdisplay@stack=\toks26 -LaTeX Info: Redefining \[ on input line 2953. -LaTeX Info: Redefining \] on input line 2954. +LaTeX Info: Redefining \[ on input line 2938. +LaTeX Info: Redefining \] on input line 2939. ) -\g_MT_multlinerow_int=\count320 -\l_MT_multwidth_dim=\dimen264 -\origjot=\skip80 -\l_MT_shortvdotswithinadjustabove_dim=\dimen265 -\l_MT_shortvdotswithinadjustbelow_dim=\dimen266 -\l_MT_above_intertext_sep=\dimen267 -\l_MT_below_intertext_sep=\dimen268 -\l_MT_above_shortintertext_sep=\dimen269 -\l_MT_below_shortintertext_sep=\dimen270 -\xmathstrut@box=\box63 -\xmathstrut@dim=\dimen271 +\g_MT_multlinerow_int=\count321 +\l_MT_multwidth_dim=\dimen263 +\origjot=\skip78 +\l_MT_shortvdotswithinadjustabove_dim=\dimen264 +\l_MT_shortvdotswithinadjustbelow_dim=\dimen265 +\l_MT_above_intertext_sep=\dimen266 +\l_MT_below_intertext_sep=\dimen267 +\l_MT_above_shortintertext_sep=\dimen268 +\l_MT_below_shortintertext_sep=\dimen269 +\xmathstrut@box=\box61 +\xmathstrut@dim=\dimen270 ) -(/usr/share/texmf-dist/tex/latex/float/float.sty +(/usr/share/texlive/texmf-dist/tex/latex/float/float.sty Package: float 2001/11/08 v1.3d Float enhancements (AL) -\c@float@type=\count321 +\c@float@type=\count322 \float@exts=\toks27 -\float@box=\box64 +\float@box=\box62 \@float@everytoks=\toks28 -\@floatcapt=\box65 +\@floatcapt=\box63 ) -(/usr/share/texmf-dist/tex/latex/tools/indentfirst.sty +(/usr/share/texlive/texmf-dist/tex/latex/tools/indentfirst.sty Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC) ) -(/usr/share/texmf-dist/tex/latex/booktabs/booktabs.sty +(/usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty Package: booktabs 2020/01/12 v1.61803398 Publication quality tables -\heavyrulewidth=\dimen272 -\lightrulewidth=\dimen273 -\cmidrulewidth=\dimen274 -\belowrulesep=\dimen275 -\belowbottomsep=\dimen276 -\aboverulesep=\dimen277 -\abovetopsep=\dimen278 -\cmidrulesep=\dimen279 -\cmidrulekern=\dimen280 -\defaultaddspace=\dimen281 -\@cmidla=\count322 -\@cmidlb=\count323 -\@aboverulesep=\dimen282 -\@belowrulesep=\dimen283 -\@thisruleclass=\count324 -\@lastruleclass=\count325 -\@thisrulewidth=\dimen284 +\heavyrulewidth=\dimen271 +\lightrulewidth=\dimen272 +\cmidrulewidth=\dimen273 +\belowrulesep=\dimen274 +\belowbottomsep=\dimen275 +\aboverulesep=\dimen276 +\abovetopsep=\dimen277 +\cmidrulesep=\dimen278 +\cmidrulekern=\dimen279 +\defaultaddspace=\dimen280 +\@cmidla=\count323 +\@cmidlb=\count324 +\@aboverulesep=\dimen281 +\@belowrulesep=\dimen282 +\@thisruleclass=\count325 +\@lastruleclass=\count326 +\@thisrulewidth=\dimen283 ) -(/usr/share/texmf-dist/tex/latex/subfig/subfig.sty +(/usr/share/texlive/texmf-dist/tex/latex/subfig/subfig.sty Package: subfig 2005/06/28 ver: 1.3 subfig package -(/usr/share/texmf-dist/tex/latex/caption/caption3.sty -Package: caption3 2023/03/12 v2.4 caption3 kernel (AR) -\caption@tempdima=\dimen285 -\captionmargin=\dimen286 -\caption@leftmargin=\dimen287 -\caption@rightmargin=\dimen288 -\caption@width=\dimen289 -\caption@indent=\dimen290 -\caption@parindent=\dimen291 -\caption@hangindent=\dimen292 +(/usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty +Package: caption3 2020/10/21 v2.2e caption3 kernel (AR) +\captionmargin=\dimen284 +\captionmargin@=\dimen285 +\captionwidth=\dimen286 +\caption@tempdima=\dimen287 +\caption@indent=\dimen288 +\caption@parindent=\dimen289 +\caption@hangindent=\dimen290 Package caption Info: Standard document class detected. ) -\c@KVtest=\count326 -\sf@farskip=\skip81 -\sf@captopadj=\dimen293 -\sf@capskip=\skip82 -\sf@nearskip=\skip83 -\c@subfigure=\count327 -\c@subfigure@save=\count328 -\c@lofdepth=\count329 -\c@subtable=\count330 -\c@subtable@save=\count331 -\c@lotdepth=\count332 -\sf@top=\skip84 -\sf@bottom=\skip85 +\c@KVtest=\count327 +\sf@farskip=\skip79 +\sf@captopadj=\dimen291 +\sf@capskip=\skip80 +\sf@nearskip=\skip81 +\c@subfigure=\count328 +\c@subfigure@save=\count329 +\c@lofdepth=\count330 +\c@subtable=\count331 +\c@subtable@save=\count332 +\c@lotdepth=\count333 +\sf@top=\skip82 +\sf@bottom=\skip83 ) -(/usr/share/texmf-dist/tex/latex/threeparttable/threeparttable.sty +(/usr/share/texlive/texmf-dist/tex/latex/threeparttable/threeparttable.sty Package: threeparttable 2003/06/13 v 3.0 -\@tempboxb=\box66 +\@tempboxb=\box64 )) (./main.aux) \openout1 = `main.aux'. -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 24. -LaTeX Font Info: ... okay on input line 24. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 24. -LaTeX Font Info: ... okay on input line 24. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 24. -LaTeX Font Info: ... okay on input line 24. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 24. -LaTeX Font Info: ... okay on input line 24. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 24. -LaTeX Font Info: ... okay on input line 24. -LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 24. -LaTeX Font Info: ... okay on input line 24. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 24. -LaTeX Font Info: ... okay on input line 24. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 24. -LaTeX Font Info: ... okay on input line 24. +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 19. +LaTeX Font Info: ... okay on input line 19. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 19. +LaTeX Font Info: ... okay on input line 19. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 19. +LaTeX Font Info: ... okay on input line 19. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 19. +LaTeX Font Info: ... okay on input line 19. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 19. +LaTeX Font Info: ... okay on input line 19. +LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 19. +LaTeX Font Info: ... okay on input line 19. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 19. +LaTeX Font Info: ... okay on input line 19. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 19. +LaTeX Font Info: ... okay on input line 19. Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid (fontspec) this). \symlegacymaths=\mathgroup4 LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' -(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 24. -LaTeX Font Info: Redeclaring math accent \acute on input line 24. -LaTeX Font Info: Redeclaring math accent \grave on input line 24. -LaTeX Font Info: Redeclaring math accent \ddot on input line 24. -LaTeX Font Info: Redeclaring math accent \tilde on input line 24. -LaTeX Font Info: Redeclaring math accent \bar on input line 24. -LaTeX Font Info: Redeclaring math accent \breve on input line 24. -LaTeX Font Info: Redeclaring math accent \check on input line 24. -LaTeX Font Info: Redeclaring math accent \hat on input line 24. -LaTeX Font Info: Redeclaring math accent \dot on input line 24. -LaTeX Font Info: Redeclaring math accent \mathring on input line 24. -LaTeX Font Info: Redeclaring math symbol \Gamma on input line 24. -LaTeX Font Info: Redeclaring math symbol \Delta on input line 24. -LaTeX Font Info: Redeclaring math symbol \Theta on input line 24. -LaTeX Font Info: Redeclaring math symbol \Lambda on input line 24. -LaTeX Font Info: Redeclaring math symbol \Xi on input line 24. -LaTeX Font Info: Redeclaring math symbol \Pi on input line 24. -LaTeX Font Info: Redeclaring math symbol \Sigma on input line 24. -LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 24. -LaTeX Font Info: Redeclaring math symbol \Phi on input line 24. -LaTeX Font Info: Redeclaring math symbol \Psi on input line 24. -LaTeX Font Info: Redeclaring math symbol \Omega on input line 24. -LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 24. -LaTeX Font Info: Redeclaring symbol font `operators' on input line 24. +(Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 19. +LaTeX Font Info: Redeclaring math accent \acute on input line 19. +LaTeX Font Info: Redeclaring math accent \grave on input line 19. +LaTeX Font Info: Redeclaring math accent \ddot on input line 19. +LaTeX Font Info: Redeclaring math accent \tilde on input line 19. +LaTeX Font Info: Redeclaring math accent \bar on input line 19. +LaTeX Font Info: Redeclaring math accent \breve on input line 19. +LaTeX Font Info: Redeclaring math accent \check on input line 19. +LaTeX Font Info: Redeclaring math accent \hat on input line 19. +LaTeX Font Info: Redeclaring math accent \dot on input line 19. +LaTeX Font Info: Redeclaring math accent \mathring on input line 19. +LaTeX Font Info: Redeclaring math symbol \Gamma on input line 19. +LaTeX Font Info: Redeclaring math symbol \Delta on input line 19. +LaTeX Font Info: Redeclaring math symbol \Theta on input line 19. +LaTeX Font Info: Redeclaring math symbol \Lambda on input line 19. +LaTeX Font Info: Redeclaring math symbol \Xi on input line 19. +LaTeX Font Info: Redeclaring math symbol \Pi on input line 19. +LaTeX Font Info: Redeclaring math symbol \Sigma on input line 19. +LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 19. +LaTeX Font Info: Redeclaring math symbol \Phi on input line 19. +LaTeX Font Info: Redeclaring math symbol \Psi on input line 19. +LaTeX Font Info: Redeclaring math symbol \Omega on input line 19. +LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 19. +LaTeX Font Info: Redeclaring symbol font `operators' on input line 19. LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font -(Font) `operators' in the math version `normal' on input line 24. +(Font) `operators' in the math version `normal' on input line 19. LaTeX Font Info: Overwriting symbol font `operators' in version `normal' -(Font) OT1/cmr/m/n --> TU/lmr/m/n on input line 24. +(Font) OT1/cmr/m/n --> TU/lmr/m/n on input line 19. LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font -(Font) `operators' in the math version `bold' on input line 24. +(Font) `operators' in the math version `bold' on input line 19. LaTeX Font Info: Overwriting symbol font `operators' in version `bold' -(Font) OT1/cmr/bx/n --> TU/lmr/m/n on input line 24. +(Font) OT1/cmr/bx/n --> TU/lmr/m/n on input line 19. LaTeX Font Info: Overwriting symbol font `operators' in version `normal' -(Font) TU/lmr/m/n --> TU/lmr/m/n on input line 24. +(Font) TU/lmr/m/n --> TU/lmr/m/n on input line 19. LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' -(Font) OT1/cmr/m/it --> TU/lmr/m/it on input line 24. +(Font) OT1/cmr/m/it --> TU/lmr/m/it on input line 19. LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' -(Font) OT1/cmr/bx/n --> TU/lmr/b/n on input line 24. +(Font) OT1/cmr/bx/n --> TU/lmr/b/n on input line 19. LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' -(Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 24. +(Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 19. LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' -(Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 24. +(Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 19. LaTeX Font Info: Overwriting symbol font `operators' in version `bold' -(Font) TU/lmr/m/n --> TU/lmr/b/n on input line 24. +(Font) TU/lmr/m/n --> TU/lmr/b/n on input line 19. LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' -(Font) OT1/cmr/bx/it --> TU/lmr/b/it on input line 24. +(Font) OT1/cmr/bx/it --> TU/lmr/b/it on input line 19. LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' -(Font) OT1/cmss/bx/n --> TU/lmss/b/n on input line 24. +(Font) OT1/cmss/bx/n --> TU/lmss/b/n on input line 19. LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' -(Font) OT1/cmtt/m/n --> TU/lmtt/b/n on input line 24. +(Font) OT1/cmtt/m/n --> TU/lmtt/b/n on input line 19. *geometry* driver: auto-detecting *geometry* detected driver: xetex @@ -649,55 +629,55 @@ LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' * \@reversemarginfalse * (1in=72.27pt=25.4mm, 1cm=28.453pt) -\c@lstlisting=\count333 +\c@lstlisting=\count334 Package caption Info: Begin \AtBeginDocument code. Package caption Info: subfig package v1.3 is loaded. Package caption Info: End \AtBeginDocument code. File: figures/tjuname.eps Graphic file (type eps) -Font mapping `tex-text.tec' for font `[lmroman10-bold]:mapping=tex-text;' not f -ound. -Font mapping `tex-text.tec' for font `[lmroman12-bold]:mapping=tex-text;' not f -ound. -Font mapping `tex-text.tec' for font `[lmroman12-bold]:mapping=tex-text;' not f -ound. -Font mapping `tex-text.tec' for font `[lmroman17-regular]:mapping=tex-text;' no -t found. File: figures/tjulogo.eps Graphic file (type eps) -\@title@width=\skip86 -Font mapping `tex-text.tec' for font `[lmroman12-bold]:mapping=tex-text;' not f -ound. -Font mapping `tex-text.tec' for font `[lmroman17-regular]:mapping=tex-text;' no -t found. -Font mapping `tex-text.tec' for font `[lmroman12-regular]:mapping=tex-text;' no -t found. -Font mapping `tex-text.tec' for font `[lmroman9-regular]:mapping=tex-text;' not - found. +\@title@width=\skip84 LaTeX Font Warning: Font shape `OMX/cmex/m/n' in size <15.05624> not available -(Font) size <14.4> substituted on input line 28. +(Font) size <14.4> substituted on input line 23. [1 -] -Font mapping `tex-text.tec' for font `[lmroman12-bold]:mapping=tex-text;' not f -ound. - (./main.toc -Font mapping `tex-text.tec' for font `[lmroman7-regular]:mapping=tex-text;' not - found. -Font mapping `tex-text.tec' for font `[lmroman5-regular]:mapping=tex-text;' not - found. - +] (./main.toc LaTeX Font Warning: Font shape `OMX/cmex/m/n' in size <10.53937> not available -(Font) size <10.95> substituted on input line 5. +(Font) size <10.95> substituted on input line 4. ) \tf@toc=\write3 \openout3 = `main.toc'. - [2] (./body/1.tex) (./body/2.tex) (./body/3.tex + [2] (./body/2.tex) (./body/3.tex +File: figures//result.png Graphic file (type bmp) + +) (./body/4.tex +File: figures//L1Miss.png Graphic file (type bmp) + +File: figures//block.png Graphic file (type bmp) + +File: figures//assoc.png Graphic file (type bmp) + + + +Package fancyhdr Warning: \headheight is too small (12.0pt): +(fancyhdr) Make it at least 12.64723pt, for example: +(fancyhdr) \setlength{\headheight}{12.64723pt}. +(fancyhdr) You might also make \topmargin smaller to compensate: + +(fancyhdr) \addtolength{\topmargin}{-0.64723pt}. + +[1] +File: figures//blocksize_comparison.pdf Graphic file (type pdf) + +File: figures//victim_comparison_sorted.pdf Graphic file (type pdf) + + Package fontspec Warning: Font "FandolFang-Regular" does not contain requested (fontspec) Script "CJK". @@ -714,42 +694,6 @@ Package fontspec Info: Font family 'FandolFang-Regular(0)' created for font (fontspec) <->"[FandolFang-Regular.otf]/OT:language=dflt;" (fontspec) - 'small caps' (m/sc) with NFSS spec.: -File: figures//Result.png Graphic file (type bmp) - -) (./body/4.tex -File: figures//ls1.pdf Graphic file (type pdf) - -File: figures//a1.pdf Graphic file (type pdf) - -File: figures//bs1.pdf Graphic file (type pdf) - - - -Package fancyhdr Warning: \headheight is too small (12.0pt): -(fancyhdr) Make it at least 12.64723pt, for example: -(fancyhdr) \setlength{\headheight}{12.64723pt}. -(fancyhdr) You might also make \topmargin smaller to compensate: - -(fancyhdr) \addtolength{\topmargin}{-0.64723pt}. - -[1] -File: figures//l1_size_assoc_trace1.pdf Graphic file (type pdf) - -File: figures//l1_size_assoc_trace2.pdf Graphic file (type pdf) - -File: figures//l1_size_assoc_trace3.pdf Graphic file (type pdf) - -File: figures//l2_size_assoc_trace1.pdf Graphic file (type pdf) - -File: figures//l2_size_assoc_trace2.pdf Graphic file (type pdf) - -File: figures//l2_size_assoc_trace3.pdf Graphic file (type pdf) - -File: figures//blocksize_comparison.pdf Graphic file (type pdf) - -File: figures//victim_comparison_sorted.pdf Graphic file (type pdf) - - Package fancyhdr Warning: \headheight is too small (12.0pt): (fancyhdr) Make it at least 12.64723pt, for example: @@ -774,12 +718,12 @@ LaTeX Font Warning: Size substitutions with differences ) Here is how much of TeX's memory you used: - 13457 strings out of 476683 - 321973 string characters out of 5809790 - 1860018 words of memory out of 5000000 - 33497 multiletter control sequences out of 15000+600000 - 519190 words of font info for 84 fonts, out of 8000000 for 9000 - 1348 hyphenation exceptions out of 8191 - 103i,11n,111p,1195b,436s stack positions out of 10000i,1000n,20000p,200000b,200000s + 12999 strings out of 477756 + 304834 string characters out of 5843517 + 644734 words of memory out of 5000000 + 33431 multiletter control sequences out of 15000+600000 + 476154 words of font info for 79 fonts, out of 8000000 for 9000 + 264 hyphenation exceptions out of 8191 + 103i,11n,111p,1195b,439s stack positions out of 5000i,500n,10000p,200000b,80000s Output written on main.pdf (5 pages). diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.pdf b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.pdf index ed764b4..0f7f6ab 100644 Binary files a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.pdf and b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.pdf differ diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.tex b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.tex index 7f7676e..177abf4 100644 --- a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.tex +++ b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.tex @@ -5,21 +5,16 @@ \major{计算机科学与技术} -\class{计科5班} -\name{刘锦帆} +\class{计科3班} +\name{刘原驰} \title{计算机组成与体系结构实践} \subtitle{两级 Cache 仿真器} -\myheader{天津大学智能与计算学部《计算机组成与体系结构实践》} -\stuid{3020202184} +\myheader{2024秋-计算机组成与体系结构实践} +\stuid{3021244213} \college{智能与计算学部} \date{\zhtoday} -\lab{47教} \course{计算机组成与体系结构实践} -\instructor{魏继增} -\grades{59} -\expname{nmap端口扫描} -\exptype{设计实验} -\partner{Bob} + \begin{document} % ============================================= @@ -39,7 +34,6 @@ \startheader \setcounter{page}{1} % 单独从 1 开始编页码 -\input{body/1.tex} \input{body/2.tex} \input{body/3.tex} \input{body/4.tex} diff --git a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.toc b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.toc index ae19309..14d11a2 100644 --- a/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.toc +++ b/cache/TJU-2023-Computer-Organization/Proj1-2/TJU-Latex-Report/main.toc @@ -1,7 +1,6 @@ -\contentsline {section}{\numberline {1}实验目标}{1}{}% -\contentsline {section}{\numberline {2}实验内容}{1}{}% -\contentsline {section}{\numberline {3}实验结果}{1}{}% -\contentsline {section}{\numberline {4}实验分析}{1}{}% -\contentsline {subsection}{\numberline {4.1}Miss Rate}{1}{}% -\contentsline {subsection}{\numberline {4.2}AAT}{2}{}% -\contentsline {subsection}{\numberline {4.3}最优参数组合}{3}{}% +\contentsline {section}{\numberline {1}实验内容}{1}{}% +\contentsline {section}{\numberline {2}实验结果}{1}{}% +\contentsline {section}{\numberline {3}实验分析}{1}{}% +\contentsline {subsection}{\numberline {3.1}Miss Rate}{1}{}% +\contentsline {subsection}{\numberline {3.2}AAT}{1}{}% +\contentsline {subsection}{\numberline {3.3}最优参数组合}{3}{}%