├── README.md ├── lesson1 ├── 1.aux ├── 1.log ├── 1.pdf ├── 1.synctex.gz └── 1.tex ├── lesson10 ├── 10.aux ├── 10.log ├── 10.pdf ├── 10.synctex.gz └── 10.tex ├── lesson2 ├── 2.aux ├── 2.log ├── 2.pdf ├── 2.synctex.gz ├── 2.tex └── 2.toc ├── lesson3 ├── 3.aux ├── 3.log ├── 3.pdf ├── 3.synctex.gz └── 3.tex ├── lesson4 ├── 4.aux ├── 4.log ├── 4.pdf ├── 4.synctex.gz ├── 4.tex └── fig │ ├── st_250.png │ ├── thchs(1).png │ ├── thchs(2).png │ ├── thchs(3).png │ └── vctk.png ├── lesson5 ├── 5.aux ├── 5.log ├── 5.pdf ├── 5.synctex.gz ├── 5.tex └── fig │ ├── st_250.png │ ├── thchs(1).png │ ├── thchs(2).png │ ├── thchs(3).png │ └── vctk.png ├── lesson6 ├── 6.aux ├── 6.log ├── 6.pdf ├── 6.synctex.gz └── 6.tex ├── lesson7 ├── 7.aux ├── 7.log ├── 7.pdf ├── 7.synctex.gz └── 7.tex ├── lesson8 ├── 8.aux ├── 8.log ├── 8.pdf ├── 8.synctex.gz └── 8.tex ├── lesson9 ├── .DS_Store ├── 9.aux ├── 9.bbl ├── 9.bib ├── 9.blg ├── 9.log ├── 9.pdf ├── 9.synctex.gz └── 9.tex └── lshort.pdf /README.md: -------------------------------------------------------------------------------- 1 | ## LaTeX 入门学习教程 2 | - 十节课基本掌握LaTeX的使用方法 3 | - 写论文必备 4 | ### 准备 5 | - LaTeX环境 6 | - MarkDown的基本使用方法 7 | ### 传送门 8 | - [lesson1 中文字体字号设置](https://github.com/ooobsidian/learn_latex/blob/master/lesson1/1.tex) 9 | - [lesson2 文档基本结构、段落](https://github.com/ooobsidian/learn_latex/blob/master/lesson2/2.tex) 10 | - [lesson3 特殊字符](https://github.com/ooobsidian/learn_latex/blob/master/lesson3/3.tex) 11 | - [lesson4 插入图片](https://github.com/ooobsidian/learn_latex/blob/master/lesson4/4.tex) 12 | - [lesson5 表格和浮动体](https://github.com/ooobsidian/learn_latex/blob/master/lesson5/5.tex) 13 | - [lesson6 数学公式初步](https://github.com/ooobsidian/learn_latex/blob/master/lesson6/6.tex) 14 | - [lesson7 矩阵初步](https://github.com/ooobsidian/learn_latex/blob/master/lesson7/7.tex) 15 | - [lesson8 多行公式](https://github.com/ooobsidian/learn_latex/blob/master/lesson8/8.tex) 16 | - [lesson9 管理参考文献](https://github.com/ooobsidian/learn_latex/blob/master/lesson9/9.tex) 17 | - [lesson10 自定义指令、环境](https://github.com/ooobsidian/learn_latex/blob/master/lesson10/10.tex) 18 | -------------------------------------------------------------------------------- /lesson1/1.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /lesson1/1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson1/1.pdf -------------------------------------------------------------------------------- /lesson1/1.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson1/1.synctex.gz -------------------------------------------------------------------------------- /lesson1/1.tex: -------------------------------------------------------------------------------- 1 | \documentclass[UTF8]{ctexart} 2 | \usepackage{ctex} 3 | \title{\heiti 我的第一篇\LaTeX{}文档} 4 | \author{obsidian} 5 | \date{\today} 6 | \newcommand{\myfont}{\textit{\textbf{\textsf{Fancy Text}}}} 7 | 8 | \begin{document} 9 | \maketitle 10 | 你好,world! 11 | 12 | Let $f(x)$ be defined by the formula $f(x)=3x^2+x-1$. 13 | 14 | \begin{equation} 15 | AB^2=BC^2+AC^2 16 | \end{equation} 17 | 18 | % 字体族设置(罗马字体、无衬线字体、打字机字体) 19 | \textrm{Roman Family} \textsf{Sans Serif Family} 20 | \texttt{Typewriter Family} 21 | 22 | {\rmfamily Roman Family} {\sffamily Sans Serif Family} 23 | {\ttfamily Typewriter Family} 24 | 25 | {\sffamily who yuo are? you find self on everyone around. take you as the same as others!} 26 | 27 | {\ttfamily Are you wiser than others? definitely no. in some ways, may it is true. What can you achieve? a luxurious house? a brillilant car? an admirable career? who knows?} 28 | 29 | % 字体系列设置(粗细、宽度) 30 | \textmd{你好,world!} \textbf{你好,world!} 31 | 32 | \textsl{你好,world!} \textsc{你好,world!} 33 | 34 | % 字体形状(直立、斜体、伪斜体、小型大写) 35 | \textup{Upright Shape} \textit{Italic Shape} 36 | \textsl{Slanted Shape} \textsc{Small Caps Shape} 37 | 38 | {\upshape Upright Shape} {\itshape Italic Shape} {\slshape Slanted Shape} {\scshape Small Caps Shape} 39 | 40 | % 中文字体 41 | {\songti 宋体} {\heiti 黑体} {\kaishu 楷体} {\fangsong 仿宋} 42 | 43 | 中文字体的\textbf{粗体}与\textit{斜体} 44 | 45 | % 字体大小 46 | {\tiny Hello}\\ 47 | {\scriptsize Hello}\\ 48 | {\footnotesize Hello}\\ 49 | {\small Hello}\\ 50 | {\normalsize Hello}\\ 51 | {\large Hello}\\ 52 | {\Large Hello}\\ 53 | {\LARGE Hello}\\ 54 | {\huge Hello}\\ 55 | {\Huge Hello} 56 | 57 | % 中文字号设置 58 | \zihao{0} 你好!\\ 59 | \zihao{-1} 你好!\\ 60 | \zihao{-2} 你好!\\ 61 | \zihao{1} 你好!\\ 62 | \zihao{2} 你好!\\ 63 | \zihao{3} 你好!\\ 64 | 65 | \myfont 66 | \end{document} -------------------------------------------------------------------------------- /lesson10/10.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /lesson10/10.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019) (preloaded format=xelatex 2020.2.17) 24 FEB 2020 16:39 2 | entering extended mode 3 | restricted \write18 enabled. 4 | file:line:error style messages enabled. 5 | %&-line parsing enabled. 6 | **/Users/obsidian/source/latex_test/lesson10/10 7 | (/Users/obsidian/source/latex_test/lesson10/10.tex 8 | LaTeX2e <2018-12-01> 9 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexart.cls (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3.sty 10 | Package: expl3 2019-05-07 L3 programming layer (loader) 11 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3-code.tex 12 | Package: expl3 2019-05-07 L3 programming layer (code) 13 | \c_max_int=\count80 14 | \l_tmpa_int=\count81 15 | \l_tmpb_int=\count82 16 | \g_tmpa_int=\count83 17 | \g_tmpb_int=\count84 18 | \g__kernel_prg_map_int=\count85 19 | \c__ior_term_ior=\count86 20 | \c_log_iow=\count87 21 | \l_iow_line_count_int=\count88 22 | \l__iow_line_target_int=\count89 23 | \l__iow_one_indent_int=\count90 24 | \l__iow_indent_int=\count91 25 | \c_zero_dim=\dimen102 26 | \c_max_dim=\dimen103 27 | \l_tmpa_dim=\dimen104 28 | \l_tmpb_dim=\dimen105 29 | \g_tmpa_dim=\dimen106 30 | \g_tmpb_dim=\dimen107 31 | \c_zero_skip=\skip41 32 | \c_max_skip=\skip42 33 | \l_tmpa_skip=\skip43 34 | \l_tmpb_skip=\skip44 35 | \g_tmpa_skip=\skip45 36 | \g_tmpb_skip=\skip46 37 | \c_zero_muskip=\muskip10 38 | \c_max_muskip=\muskip11 39 | \l_tmpa_muskip=\muskip12 40 | \l_tmpb_muskip=\muskip13 41 | \g_tmpa_muskip=\muskip14 42 | \g_tmpb_muskip=\muskip15 43 | \l_keys_choice_int=\count92 44 | \l__intarray_loop_int=\count93 45 | \c__intarray_sp_dim=\dimen108 46 | \g__intarray_font_int=\count94 47 | \c__fp_leading_shift_int=\count95 48 | \c__fp_middle_shift_int=\count96 49 | \c__fp_trailing_shift_int=\count97 50 | \c__fp_big_leading_shift_int=\count98 51 | \c__fp_big_middle_shift_int=\count99 52 | \c__fp_big_trailing_shift_int=\count100 53 | \c__fp_Bigg_leading_shift_int=\count101 54 | \c__fp_Bigg_middle_shift_int=\count102 55 | \c__fp_Bigg_trailing_shift_int=\count103 56 | \g__fp_array_int=\count104 57 | \l__fp_array_loop_int=\count105 58 | \l__sort_length_int=\count106 59 | \l__sort_min_int=\count107 60 | \l__sort_top_int=\count108 61 | \l__sort_max_int=\count109 62 | \l__sort_true_max_int=\count110 63 | \l__sort_block_int=\count111 64 | \l__sort_begin_int=\count112 65 | \l__sort_end_int=\count113 66 | \l__sort_A_int=\count114 67 | \l__sort_B_int=\count115 68 | \l__sort_C_int=\count116 69 | \l__tl_analysis_normal_int=\count117 70 | \l__tl_analysis_index_int=\count118 71 | \l__tl_analysis_nesting_int=\count119 72 | \l__tl_analysis_type_int=\count120 73 | \l__regex_internal_a_int=\count121 74 | \l__regex_internal_b_int=\count122 75 | \l__regex_internal_c_int=\count123 76 | \l__regex_balance_int=\count124 77 | \l__regex_group_level_int=\count125 78 | \l__regex_mode_int=\count126 79 | \c__regex_cs_in_class_mode_int=\count127 80 | \c__regex_cs_mode_int=\count128 81 | \l__regex_catcodes_int=\count129 82 | \l__regex_default_catcodes_int=\count130 83 | \c__regex_catcode_L_int=\count131 84 | \c__regex_catcode_O_int=\count132 85 | \c__regex_catcode_A_int=\count133 86 | \c__regex_all_catcodes_int=\count134 87 | \l__regex_show_lines_int=\count135 88 | \l__regex_min_state_int=\count136 89 | \l__regex_max_state_int=\count137 90 | \l__regex_left_state_int=\count138 91 | \l__regex_right_state_int=\count139 92 | \l__regex_capturing_group_int=\count140 93 | \l__regex_min_pos_int=\count141 94 | \l__regex_max_pos_int=\count142 95 | \l__regex_curr_pos_int=\count143 96 | \l__regex_start_pos_int=\count144 97 | \l__regex_success_pos_int=\count145 98 | \l__regex_curr_char_int=\count146 99 | \l__regex_curr_catcode_int=\count147 100 | \l__regex_last_char_int=\count148 101 | \l__regex_case_changed_char_int=\count149 102 | \l__regex_curr_state_int=\count150 103 | \l__regex_step_int=\count151 104 | \l__regex_min_active_int=\count152 105 | \l__regex_max_active_int=\count153 106 | \l__regex_replacement_csnames_int=\count154 107 | \l__regex_match_count_int=\count155 108 | \l__regex_min_submatch_int=\count156 109 | \l__regex_submatch_int=\count157 110 | \l__regex_zeroth_submatch_int=\count158 111 | \g__regex_trace_regex_int=\count159 112 | \c_empty_box=\box27 113 | \l_tmpa_box=\box28 114 | \l_tmpb_box=\box29 115 | \g_tmpa_box=\box30 116 | \g_tmpb_box=\box31 117 | \l__box_top_dim=\dimen109 118 | \l__box_bottom_dim=\dimen110 119 | \l__box_left_dim=\dimen111 120 | \l__box_right_dim=\dimen112 121 | \l__box_top_new_dim=\dimen113 122 | \l__box_bottom_new_dim=\dimen114 123 | \l__box_left_new_dim=\dimen115 124 | \l__box_right_new_dim=\dimen116 125 | \l__box_internal_box=\box32 126 | \l__coffin_internal_box=\box33 127 | \l__coffin_internal_dim=\dimen117 128 | \l__coffin_offset_x_dim=\dimen118 129 | \l__coffin_offset_y_dim=\dimen119 130 | \l__coffin_x_dim=\dimen120 131 | \l__coffin_y_dim=\dimen121 132 | \l__coffin_x_prime_dim=\dimen122 133 | \l__coffin_y_prime_dim=\dimen123 134 | \c_empty_coffin=\box34 135 | \l__coffin_aligned_coffin=\box35 136 | \l__coffin_aligned_internal_coffin=\box36 137 | \l_tmpa_coffin=\box37 138 | \l_tmpb_coffin=\box38 139 | \g_tmpa_coffin=\box39 140 | \g_tmpb_coffin=\box40 141 | \l__coffin_bounding_shift_dim=\dimen124 142 | \l__coffin_left_corner_dim=\dimen125 143 | \l__coffin_right_corner_dim=\dimen126 144 | \l__coffin_bottom_corner_dim=\dimen127 145 | \l__coffin_top_corner_dim=\dimen128 146 | \l__coffin_scaled_total_height_dim=\dimen129 147 | \l__coffin_scaled_width_dim=\dimen130 148 | \c__coffin_empty_coffin=\box41 149 | \l__coffin_display_coffin=\box42 150 | \l__coffin_display_coord_coffin=\box43 151 | \l__coffin_display_pole_coffin=\box44 152 | \l__coffin_display_offset_dim=\dimen131 153 | \l__coffin_display_x_dim=\dimen132 154 | \l__coffin_display_y_dim=\dimen133 155 | \g__file_internal_ior=\read1 156 | \l__seq_internal_a_int=\count160 157 | \l__seq_internal_b_int=\count161 158 | \c__deprecation_minus_one=\count162 159 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def 160 | File: l3xdvipdfmx.def 2019-04-06 v L3 Experimental driver: xdvipdfmx 161 | \g__driver_image_int=\count163 162 | \l__driver_pdf_tmp_box=\box45 163 | \g__driver_pdf_object_int=\count164 164 | \g__driver_pdf_annotation_int=\count165 165 | )) 166 | Document Class: ctexart 2019/04/07 v2.4.15 Chinese adapter for class article (CTEX) 167 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 168 | Package: xparse 2019-05-03 L3 Experimental document command parser 169 | \l__xparse_current_arg_int=\count166 170 | \g__xparse_grabber_int=\count167 171 | \l__xparse_m_args_int=\count168 172 | \l__xparse_v_nesting_int=\count169 173 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 174 | Package: l3keys2e 2019-05-03 LaTeX2e option processing using LaTeX3 keys 175 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexhook.sty 176 | Package: ctexhook 2019/04/07 v2.4.15 Document and package hooks (CTEX) 177 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexpatch.sty 178 | Package: ctexpatch 2019/04/07 v2.4.15 Patching commands (CTEX) 179 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fix-cm.sty 180 | Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX 181 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/ts1enc.def 182 | File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file 183 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ms/everysel.sty 184 | Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS) 185 | ) 186 | \l__ctex_tmp_int=\count170 187 | \l__ctex_tmp_box=\box46 188 | \l__ctex_tmp_dim=\dimen134 189 | \g__ctex_section_depth_int=\count171 190 | \g__ctex_font_size_int=\count172 191 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 192 | File: ctexopts.cfg 2019/04/07 v2.4.15 Option configuration file (CTEX) 193 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/article.cls 194 | Document Class: article 2018/09/03 v1.4i Standard LaTeX document class 195 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/size10.clo 196 | File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) 197 | ) 198 | \c@part=\count173 199 | \c@section=\count174 200 | \c@subsection=\count175 201 | \c@subsubsection=\count176 202 | \c@paragraph=\count177 203 | \c@subparagraph=\count178 204 | \c@figure=\count179 205 | \c@table=\count180 206 | \abovecaptionskip=\skip47 207 | \belowcaptionskip=\skip48 208 | \bibindent=\dimen135 209 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def 210 | File: ctex-engine-xetex.def 2019/04/07 v2.4.15 XeLaTeX adapter (CTEX) 211 | (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.sty 212 | Package: xeCJK 2019/04/07 v3.7.2 Typesetting CJK scripts with XeLaTeX 213 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty 214 | Package: xtemplate 2019-05-03 L3 Experimental prototype document functions 215 | \l__xtemplate_tmp_dim=\dimen136 216 | \l__xtemplate_tmp_int=\count181 217 | \l__xtemplate_tmp_muskip=\muskip16 218 | \l__xtemplate_tmp_skip=\skip49 219 | ) 220 | \l__xeCJK_tmp_int=\count182 221 | \l__xeCJK_tmp_box=\box47 222 | \l__xeCJK_tmp_dim=\dimen137 223 | \l__xeCJK_tmp_skip=\skip50 224 | \g__xeCJK_space_factor_int=\count183 225 | \l__xeCJK_begin_int=\count184 226 | \l__xeCJK_end_int=\count185 227 | \c__xeCJK_CJK_class_int=\XeTeXcharclass1 228 | \c__xeCJK_FullLeft_class_int=\XeTeXcharclass2 229 | \c__xeCJK_FullRight_class_int=\XeTeXcharclass3 230 | \c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4 231 | \c__xeCJK_HalfRight_class_int=\XeTeXcharclass5 232 | \c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6 233 | \c__xeCJK_CM_class_int=\XeTeXcharclass7 234 | \c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8 235 | \l__xeCJK_last_skip=\skip51 236 | \g__xeCJK_node_int=\count186 237 | \c__xeCJK_CJK_node_dim=\dimen138 238 | \c__xeCJK_CJK-space_node_dim=\dimen139 239 | \c__xeCJK_default_node_dim=\dimen140 240 | \c__xeCJK_default-space_node_dim=\dimen141 241 | \c__xeCJK_CJK-widow_node_dim=\dimen142 242 | \c__xeCJK_normalspace_node_dim=\dimen143 243 | \l__xeCJK_ccglue_skip=\skip52 244 | \l__xeCJK_ecglue_skip=\skip53 245 | \l__xeCJK_punct_kern_skip=\skip54 246 | \l__xeCJK_last_penalty_int=\count187 247 | \l__xeCJK_last_bound_dim=\dimen144 248 | \l__xeCJK_last_kern_dim=\dimen145 249 | \l__xeCJK_widow_penalty_int=\count188 250 | 251 | Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0 252 | (xtemplate) argument(s) on line 2352. 253 | 254 | \l__xeCJK_fixed_punct_width_dim=\dimen146 255 | \l__xeCJK_mixed_punct_width_dim=\dimen147 256 | \l__xeCJK_middle_punct_width_dim=\dimen148 257 | \l__xeCJK_fixed_margin_width_dim=\dimen149 258 | \l__xeCJK_mixed_margin_width_dim=\dimen150 259 | \l__xeCJK_middle_margin_width_dim=\dimen151 260 | \l__xeCJK_bound_punct_width_dim=\dimen152 261 | \l__xeCJK_bound_margin_width_dim=\dimen153 262 | \l__xeCJK_margin_minimum_dim=\dimen154 263 | \l__xeCJK_kerning_total_width_dim=\dimen155 264 | \l__xeCJK_same_align_margin_dim=\dimen156 265 | \l__xeCJK_different_align_margin_dim=\dimen157 266 | \l__xeCJK_kerning_margin_width_dim=\dimen158 267 | \l__xeCJK_kerning_margin_minimum_dim=\dimen159 268 | \l__xeCJK_bound_dim=\dimen160 269 | \l__xeCJK_reverse_bound_dim=\dimen161 270 | \l__xeCJK_minimum_bound_dim=\dimen162 271 | \l__xeCJK_kerning_margin_dim=\dimen163 272 | \l__xeCJK_original_margin_dim=\dimen164 273 | \g__xeCJK_family_int=\count189 274 | \l__xeCJK_fam_int=\count190 275 | \g__xeCJK_fam_allocation_int=\count191 276 | \l__xeCJK_verb_case_int=\count192 277 | \l__xeCJK_verb_exspace_skip=\skip55 278 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.sty 279 | Package: fontspec 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 280 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty 281 | Package: fontspec-xetex 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 282 | \l__fontspec_script_int=\count193 283 | \l__fontspec_language_int=\count194 284 | \l__fontspec_strnum_int=\count195 285 | \l__fontspec_tmp_int=\count196 286 | \l__fontspec_tmpa_int=\count197 287 | \l__fontspec_tmpb_int=\count198 288 | \l__fontspec_tmpc_int=\count199 289 | \l__fontspec_em_int=\count266 290 | \l__fontspec_emdef_int=\count267 291 | \l__fontspec_strong_int=\count268 292 | \l__fontspec_strongdef_int=\count269 293 | \l__fontspec_tmpa_dim=\dimen165 294 | \l__fontspec_tmpb_dim=\dimen166 295 | \l__fontspec_tmpc_dim=\dimen167 296 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fontenc.sty 297 | Package: fontenc 2018/08/11 v2.0j Standard LaTeX package 298 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/tuenc.def 299 | File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file 300 | LaTeX Font Info: Redeclaring font encoding TU on input line 82. 301 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.cfg) 302 | LaTeX Info: Redefining \itshape on input line 4051. 303 | LaTeX Info: Redefining \slshape on input line 4056. 304 | LaTeX Info: Redefining \scshape on input line 4061. 305 | LaTeX Info: Redefining \upshape on input line 4066. 306 | LaTeX Info: Redefining \em on input line 4096. 307 | LaTeX Info: Redefining \emph on input line 4121. 308 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg 309 | File: xeCJK.cfg 2019/04/07 v3.7.2 Configuration file for xeCJK package 310 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty 311 | Package: xeCJKfntef 2019/04/07 v3.7.2 xeCJK font effect 312 | (/usr/local/texlive/2019/texmf-dist/tex/generic/ulem/ulem.sty 313 | \UL@box=\box48 314 | \UL@hyphenbox=\box49 315 | \UL@skip=\skip56 316 | \UL@hook=\toks14 317 | \UL@height=\dimen168 318 | \UL@pe=\count270 319 | \UL@pixel=\dimen169 320 | \ULC@box=\box50 321 | Package: ulem 2012/05/18 322 | \ULdepth=\dimen170 323 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty 324 | Package: CJKfntef 2015/04/18 4.8.4 325 | \CJK@fntefSkip=\skip57 326 | \CJK@nest=\count271 327 | \CJK@fntefDimen=\dimen171 328 | \CJK@underdotBox=\box51 329 | \CJK@ULbox=\box52 330 | \CJK@underanyskip=\dimen172 331 | ) 332 | \l__xeCJK_space_skip=\skip58 333 | \c__xeCJK_ulem-begin_node_dim=\dimen173 334 | \c__xeCJK_null_box=\box53 335 | \l__xeCJK_fntef_box=\box54 336 | \l__xeCJK_under_symbol_box=\box55 337 | \c__xeCJK_filll_skip=\skip59 338 | ) 339 | \ccwd=\dimen174 340 | \l__ctex_ccglue_skip=\skip60 341 | ) 342 | \l__ctex_ziju_dim=\dimen175 343 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber.sty 344 | Package: zhnumber 2019/04/07 v2.7 Typesetting numbers with Chinese glyphs 345 | \l__zhnum_scale_int=\count272 346 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 347 | File: zhnumber-utf8.cfg 2019/04/07 v2.7 Chinese numerals with UTF8 encoding 348 | )) 349 | \l__ctex_heading_skip=\skip61 350 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-article.def 351 | File: ctex-scheme-chinese-article.def 2019/04/07 v2.4.15 Chinese scheme for article (CTEX) 352 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 353 | File: ctex-name-utf8.cfg 2019/04/07 v2.4.15 Caption with encoding UTF8 (CTEX) 354 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctex-c5size.clo 355 | File: ctex-c5size.clo 2019/04/07 v2.4.15 c5size option (CTEX) 356 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-mac.def 357 | File: ctex-fontset-mac.def 2019/04/07 v2.4.15 Mac OS X fonts definition (CTEX) 358 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-macnew.def 359 | File: ctex-fontset-macnew.def 2019/04/07 v2.4.15 Mac OS X fonts definition for El Capitan or later version (CTEX) 360 | 361 | 362 | Package fontspec Warning: Font "Songti SC Light" does not contain requested 363 | (fontspec) Script "CJK". 364 | 365 | 366 | Package fontspec Info: Font family 'SongtiSC(0)' created for font 'Songti SC' 367 | (fontspec) with options [Script={CJK},UprightFont={* 368 | (fontspec) Light},BoldItalicFont={Kaiti SC Bold},BoldFont={* 369 | (fontspec) Bold},ItalicFont={Kaiti SC}]. 370 | (fontspec) 371 | (fontspec) This font family consists of the following NFSS 372 | (fontspec) series/shapes: 373 | (fontspec) 374 | (fontspec) - 'normal' (m/n) with NFSS spec.: <->"Songti SC 375 | (fontspec) Light/OT" 376 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 377 | (fontspec) - 'bold' (bx/n) with NFSS spec.: <->"Songti SC Bold/OT" 378 | (fontspec) - 'bold small caps' (bx/sc) with NFSS spec.: 379 | (fontspec) - 'italic' (m/it) with NFSS spec.: <->"Kaiti SC/OT" 380 | (fontspec) - 'italic small caps' (m/itsc) with NFSS spec.: 381 | (fontspec) - 'bold italic' (bx/it) with NFSS spec.: <->"Kaiti SC 382 | (fontspec) Bold/OT" 383 | (fontspec) - 'bold italic small caps' (bx/itsc) with NFSS spec.: 384 | 385 | ))) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex.cfg 386 | File: ctex.cfg 2019/04/07 v2.4.15 Configuration file (CTEX) 387 | ) (./10.aux) 388 | \openout1 = `10.aux'. 389 | 390 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 39. 391 | LaTeX Font Info: ... okay on input line 39. 392 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 39. 393 | LaTeX Font Info: ... okay on input line 39. 394 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 39. 395 | LaTeX Font Info: ... okay on input line 39. 396 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 39. 397 | LaTeX Font Info: ... okay on input line 39. 398 | LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 39. 399 | LaTeX Font Info: ... okay on input line 39. 400 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 39. 401 | LaTeX Font Info: ... okay on input line 39. 402 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 39. 403 | LaTeX Font Info: ... okay on input line 39. 404 | LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 39. 405 | LaTeX Font Info: ... okay on input line 39. 406 | ABD: EverySelectfont initializing macros 407 | LaTeX Info: Redefining \selectfont on input line 39. 408 | 409 | Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid 410 | (fontspec) this). 411 | 412 | \symlegacymaths=\mathgroup4 413 | LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' 414 | (Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 39. 415 | LaTeX Font Info: Redeclaring math accent \acute on input line 39. 416 | LaTeX Font Info: Redeclaring math accent \grave on input line 39. 417 | LaTeX Font Info: Redeclaring math accent \ddot on input line 39. 418 | LaTeX Font Info: Redeclaring math accent \tilde on input line 39. 419 | LaTeX Font Info: Redeclaring math accent \bar on input line 39. 420 | LaTeX Font Info: Redeclaring math accent \breve on input line 39. 421 | LaTeX Font Info: Redeclaring math accent \check on input line 39. 422 | LaTeX Font Info: Redeclaring math accent \hat on input line 39. 423 | LaTeX Font Info: Redeclaring math accent \dot on input line 39. 424 | LaTeX Font Info: Redeclaring math accent \mathring on input line 39. 425 | LaTeX Font Info: Redeclaring math symbol \colon on input line 39. 426 | LaTeX Font Info: Redeclaring math symbol \Gamma on input line 39. 427 | LaTeX Font Info: Redeclaring math symbol \Delta on input line 39. 428 | LaTeX Font Info: Redeclaring math symbol \Theta on input line 39. 429 | LaTeX Font Info: Redeclaring math symbol \Lambda on input line 39. 430 | LaTeX Font Info: Redeclaring math symbol \Xi on input line 39. 431 | LaTeX Font Info: Redeclaring math symbol \Pi on input line 39. 432 | LaTeX Font Info: Redeclaring math symbol \Sigma on input line 39. 433 | LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 39. 434 | LaTeX Font Info: Redeclaring math symbol \Phi on input line 39. 435 | LaTeX Font Info: Redeclaring math symbol \Psi on input line 39. 436 | LaTeX Font Info: Redeclaring math symbol \Omega on input line 39. 437 | LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 39. 438 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 39. 439 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 440 | (Font) `operators' in the math version `normal' on input line 39. 441 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 442 | (Font) OT1/cmr/m/n --> TU/lmr/m/n on input line 39. 443 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 444 | (Font) `operators' in the math version `bold' on input line 39. 445 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 446 | (Font) OT1/cmr/bx/n --> TU/lmr/m/n on input line 39. 447 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 448 | (Font) TU/lmr/m/n --> TU/lmr/m/n on input line 39. 449 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 450 | (Font) OT1/cmr/m/it --> TU/lmr/m/it on input line 39. 451 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 452 | (Font) OT1/cmr/bx/n --> TU/lmr/bx/n on input line 39. 453 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 454 | (Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 39. 455 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 456 | (Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 39. 457 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 458 | (Font) TU/lmr/m/n --> TU/lmr/bx/n on input line 39. 459 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 460 | (Font) OT1/cmr/bx/it --> TU/lmr/bx/it on input line 39. 461 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 462 | (Font) OT1/cmss/bx/n --> TU/lmss/bx/n on input line 39. 463 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 464 | (Font) OT1/cmtt/m/n --> TU/lmtt/bx/n on input line 39. 465 | LaTeX Font Info: External font `cmex10' loaded for size 466 | (Font) <10.53937> on input line 62. 467 | LaTeX Font Info: External font `cmex10' loaded for size 468 | (Font) <7> on input line 62. 469 | LaTeX Font Info: External font `cmex10' loaded for size 470 | (Font) <5> on input line 62. 471 | [1 472 | 473 | ] (./10.aux) ) 474 | Here is how much of TeX's memory you used: 475 | 15868 strings out of 492916 476 | 377593 string characters out of 6133345 477 | 455329 words of memory out of 5000000 478 | 19852 multiletter control sequences out of 15000+600000 479 | 533504 words of font info for 46 fonts, out of 8000000 for 9000 480 | 1348 hyphenation exceptions out of 8191 481 | 60i,4n,73p,433b,446s stack positions out of 5000i,500n,10000p,200000b,80000s 482 | 483 | Output written on 10.pdf (1 page). 484 | -------------------------------------------------------------------------------- /lesson10/10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson10/10.pdf -------------------------------------------------------------------------------- /lesson10/10.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson10/10.synctex.gz -------------------------------------------------------------------------------- /lesson10/10.tex: -------------------------------------------------------------------------------- 1 | \documentclass{ctexart} 2 | % newcommand-定义命令 3 | % 命令只能由字母组成,不能以\end开头 4 | % \newcommand<命令>[<参数个数>][<首参数默认值>]{<具体定义>} 5 | \newcommand{\PRC}{People's Republic of \emph{China}} 6 | 7 | % \newcommand也可以使用参数 8 | % 参数可以从1到9,使用时用#1,#2,...,#9表示 9 | \newcommand{\loves}[2]{#1 喜欢 #2} 10 | \newcommand{\hateby}[2]{#2 不受 #1 喜欢} 11 | 12 | % \newcommand的参数也可以有默认值 13 | % 指定参数个数同时指定了首个参数的默认值,那么这个命令的第一个参数就成为了可选的参数(要使用中括号指定) 14 | \newcommand{\love}[3][喜欢]{#2#1#3} 15 | 16 | % \renewcommand-重定义命令 17 | % 与\newcommand命令作用和用法相同,但只能用于已有命令 18 | % \renewcommand<命令>[<参数个数>][<首参数默认值>]{<具体定义>} 19 | \renewcommand{\abstractname}{内容简介} 20 | 21 | % 定义和重定义环境 22 | % \newenvironment{<环境名称>}[<参数个数>][<首参数默认值>]{<环境前定义>}{<环境后定义>} 23 | % \renewenvironment{<环境名称>}[<参数个数>][<首参数默认值>]{<环境前定义>}{<环境后定义>} 24 | \newenvironment{myabstract}[1][摘要] 25 | {\small 26 | \begin{center}\bfseries #1\end{center} 27 | \begin{quotation}}{\end{quotation} 28 | } 29 | 30 | % 环境参数只有<环境前定义>中可以使用参数 31 | % <环境后定义>中不能再使用环境参数 32 | % 如果需要,可以先把前面得到的参数保存在一个命令中,在后面使用: 33 | \newenvironment{Quotation}[1] 34 | { 35 | \newcommand{\quotesource}{#1} 36 | \begin{quotation}} 37 | {\par \hfill---《\textit{\quotesource}》 38 | \end{quotation}} 39 | \begin{document} 40 | \PRC 41 | 42 | \loves{猫儿}{鱼} 43 | 44 | \hateby{猫儿}{萝卜} 45 | 46 | \love{猫儿}{鱼} 47 | 48 | \love[最爱]{猫儿}{鱼} 49 | 50 | \abstractname 51 | 52 | \begin{abstract} 53 | 这是一段摘要... 54 | \end{abstract} 55 | 56 | \begin{myabstract}[我的摘要] 57 | 这是一段自定义摘要... 58 | \end{myabstract} 59 | 60 | \begin{Quotation}{易$\cdot$乾} 61 | 初九,潜龙勿用。 62 | \end{Quotation} 63 | \end{document} -------------------------------------------------------------------------------- /lesson2/2.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {chapter}{\numberline {第一章\hspace {.3em}}绪论}{3}\protected@file@percent } 3 | \@writefile{lof}{\addvspace {10.0pt}} 4 | \@writefile{lot}{\addvspace {10.0pt}} 5 | \@writefile{toc}{\contentsline {section}{\numberline {1.1}研究的意义和目的}{3}\protected@file@percent } 6 | \@writefile{toc}{\contentsline {section}{\numberline {1.2}国内外研究现状}{3}\protected@file@percent } 7 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.2.1}国内研究现状}{3}\protected@file@percent } 8 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.2.2}国外研究现状}{3}\protected@file@percent } 9 | \@writefile{toc}{\contentsline {section}{\numberline {1.3}研究内容}{3}\protected@file@percent } 10 | \@writefile{toc}{\contentsline {section}{\numberline {1.4}研究方法与技术路线}{3}\protected@file@percent } 11 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.4.1}研究方法}{3}\protected@file@percent } 12 | \@writefile{toc}{\contentsline {subsection}{\numberline {1.4.2}技术路线}{3}\protected@file@percent } 13 | \@writefile{toc}{\contentsline {chapter}{\numberline {第二章\hspace {.3em}}实验与结果分析}{5}\protected@file@percent } 14 | \@writefile{lof}{\addvspace {10.0pt}} 15 | \@writefile{lot}{\addvspace {10.0pt}} 16 | \@writefile{toc}{\contentsline {section}{\numberline {2.1}引言}{5}\protected@file@percent } 17 | \@writefile{toc}{\contentsline {section}{\numberline {2.2}实验方法}{5}\protected@file@percent } 18 | \@writefile{toc}{\contentsline {section}{\numberline {2.3}实验结果}{5}\protected@file@percent } 19 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.1}数据}{5}\protected@file@percent } 20 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.2}图表}{5}\protected@file@percent } 21 | \@writefile{toc}{\contentsline {subsubsection}{实验条件}{5}\protected@file@percent } 22 | \@writefile{toc}{\contentsline {subsubsection}{实验过程}{5}\protected@file@percent } 23 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3.3}结果分析}{5}\protected@file@percent } 24 | \@writefile{toc}{\contentsline {section}{\numberline {2.4}结论}{5}\protected@file@percent } 25 | \@writefile{toc}{\contentsline {section}{\numberline {2.5}致谢}{5}\protected@file@percent } 26 | -------------------------------------------------------------------------------- /lesson2/2.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019) (preloaded format=xelatex 2020.2.17) 22 FEB 2020 22:17 2 | entering extended mode 3 | restricted \write18 enabled. 4 | file:line:error style messages enabled. 5 | %&-line parsing enabled. 6 | **/Users/obsidian/source/latex_test/lesson2/2 7 | (/Users/obsidian/source/latex_test/lesson2/2.tex 8 | LaTeX2e <2018-12-01> 9 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexbook.cls (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3.sty 10 | Package: expl3 2019-05-07 L3 programming layer (loader) 11 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3-code.tex 12 | Package: expl3 2019-05-07 L3 programming layer (code) 13 | \c_max_int=\count80 14 | \l_tmpa_int=\count81 15 | \l_tmpb_int=\count82 16 | \g_tmpa_int=\count83 17 | \g_tmpb_int=\count84 18 | \g__kernel_prg_map_int=\count85 19 | \c__ior_term_ior=\count86 20 | \c_log_iow=\count87 21 | \l_iow_line_count_int=\count88 22 | \l__iow_line_target_int=\count89 23 | \l__iow_one_indent_int=\count90 24 | \l__iow_indent_int=\count91 25 | \c_zero_dim=\dimen102 26 | \c_max_dim=\dimen103 27 | \l_tmpa_dim=\dimen104 28 | \l_tmpb_dim=\dimen105 29 | \g_tmpa_dim=\dimen106 30 | \g_tmpb_dim=\dimen107 31 | \c_zero_skip=\skip41 32 | \c_max_skip=\skip42 33 | \l_tmpa_skip=\skip43 34 | \l_tmpb_skip=\skip44 35 | \g_tmpa_skip=\skip45 36 | \g_tmpb_skip=\skip46 37 | \c_zero_muskip=\muskip10 38 | \c_max_muskip=\muskip11 39 | \l_tmpa_muskip=\muskip12 40 | \l_tmpb_muskip=\muskip13 41 | \g_tmpa_muskip=\muskip14 42 | \g_tmpb_muskip=\muskip15 43 | \l_keys_choice_int=\count92 44 | \l__intarray_loop_int=\count93 45 | \c__intarray_sp_dim=\dimen108 46 | \g__intarray_font_int=\count94 47 | \c__fp_leading_shift_int=\count95 48 | \c__fp_middle_shift_int=\count96 49 | \c__fp_trailing_shift_int=\count97 50 | \c__fp_big_leading_shift_int=\count98 51 | \c__fp_big_middle_shift_int=\count99 52 | \c__fp_big_trailing_shift_int=\count100 53 | \c__fp_Bigg_leading_shift_int=\count101 54 | \c__fp_Bigg_middle_shift_int=\count102 55 | \c__fp_Bigg_trailing_shift_int=\count103 56 | \g__fp_array_int=\count104 57 | \l__fp_array_loop_int=\count105 58 | \l__sort_length_int=\count106 59 | \l__sort_min_int=\count107 60 | \l__sort_top_int=\count108 61 | \l__sort_max_int=\count109 62 | \l__sort_true_max_int=\count110 63 | \l__sort_block_int=\count111 64 | \l__sort_begin_int=\count112 65 | \l__sort_end_int=\count113 66 | \l__sort_A_int=\count114 67 | \l__sort_B_int=\count115 68 | \l__sort_C_int=\count116 69 | \l__tl_analysis_normal_int=\count117 70 | \l__tl_analysis_index_int=\count118 71 | \l__tl_analysis_nesting_int=\count119 72 | \l__tl_analysis_type_int=\count120 73 | \l__regex_internal_a_int=\count121 74 | \l__regex_internal_b_int=\count122 75 | \l__regex_internal_c_int=\count123 76 | \l__regex_balance_int=\count124 77 | \l__regex_group_level_int=\count125 78 | \l__regex_mode_int=\count126 79 | \c__regex_cs_in_class_mode_int=\count127 80 | \c__regex_cs_mode_int=\count128 81 | \l__regex_catcodes_int=\count129 82 | \l__regex_default_catcodes_int=\count130 83 | \c__regex_catcode_L_int=\count131 84 | \c__regex_catcode_O_int=\count132 85 | \c__regex_catcode_A_int=\count133 86 | \c__regex_all_catcodes_int=\count134 87 | \l__regex_show_lines_int=\count135 88 | \l__regex_min_state_int=\count136 89 | \l__regex_max_state_int=\count137 90 | \l__regex_left_state_int=\count138 91 | \l__regex_right_state_int=\count139 92 | \l__regex_capturing_group_int=\count140 93 | \l__regex_min_pos_int=\count141 94 | \l__regex_max_pos_int=\count142 95 | \l__regex_curr_pos_int=\count143 96 | \l__regex_start_pos_int=\count144 97 | \l__regex_success_pos_int=\count145 98 | \l__regex_curr_char_int=\count146 99 | \l__regex_curr_catcode_int=\count147 100 | \l__regex_last_char_int=\count148 101 | \l__regex_case_changed_char_int=\count149 102 | \l__regex_curr_state_int=\count150 103 | \l__regex_step_int=\count151 104 | \l__regex_min_active_int=\count152 105 | \l__regex_max_active_int=\count153 106 | \l__regex_replacement_csnames_int=\count154 107 | \l__regex_match_count_int=\count155 108 | \l__regex_min_submatch_int=\count156 109 | \l__regex_submatch_int=\count157 110 | \l__regex_zeroth_submatch_int=\count158 111 | \g__regex_trace_regex_int=\count159 112 | \c_empty_box=\box27 113 | \l_tmpa_box=\box28 114 | \l_tmpb_box=\box29 115 | \g_tmpa_box=\box30 116 | \g_tmpb_box=\box31 117 | \l__box_top_dim=\dimen109 118 | \l__box_bottom_dim=\dimen110 119 | \l__box_left_dim=\dimen111 120 | \l__box_right_dim=\dimen112 121 | \l__box_top_new_dim=\dimen113 122 | \l__box_bottom_new_dim=\dimen114 123 | \l__box_left_new_dim=\dimen115 124 | \l__box_right_new_dim=\dimen116 125 | \l__box_internal_box=\box32 126 | \l__coffin_internal_box=\box33 127 | \l__coffin_internal_dim=\dimen117 128 | \l__coffin_offset_x_dim=\dimen118 129 | \l__coffin_offset_y_dim=\dimen119 130 | \l__coffin_x_dim=\dimen120 131 | \l__coffin_y_dim=\dimen121 132 | \l__coffin_x_prime_dim=\dimen122 133 | \l__coffin_y_prime_dim=\dimen123 134 | \c_empty_coffin=\box34 135 | \l__coffin_aligned_coffin=\box35 136 | \l__coffin_aligned_internal_coffin=\box36 137 | \l_tmpa_coffin=\box37 138 | \l_tmpb_coffin=\box38 139 | \g_tmpa_coffin=\box39 140 | \g_tmpb_coffin=\box40 141 | \l__coffin_bounding_shift_dim=\dimen124 142 | \l__coffin_left_corner_dim=\dimen125 143 | \l__coffin_right_corner_dim=\dimen126 144 | \l__coffin_bottom_corner_dim=\dimen127 145 | \l__coffin_top_corner_dim=\dimen128 146 | \l__coffin_scaled_total_height_dim=\dimen129 147 | \l__coffin_scaled_width_dim=\dimen130 148 | \c__coffin_empty_coffin=\box41 149 | \l__coffin_display_coffin=\box42 150 | \l__coffin_display_coord_coffin=\box43 151 | \l__coffin_display_pole_coffin=\box44 152 | \l__coffin_display_offset_dim=\dimen131 153 | \l__coffin_display_x_dim=\dimen132 154 | \l__coffin_display_y_dim=\dimen133 155 | \g__file_internal_ior=\read1 156 | \l__seq_internal_a_int=\count160 157 | \l__seq_internal_b_int=\count161 158 | \c__deprecation_minus_one=\count162 159 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def 160 | File: l3xdvipdfmx.def 2019-04-06 v L3 Experimental driver: xdvipdfmx 161 | \g__driver_image_int=\count163 162 | \l__driver_pdf_tmp_box=\box45 163 | \g__driver_pdf_object_int=\count164 164 | \g__driver_pdf_annotation_int=\count165 165 | )) 166 | Document Class: ctexbook 2019/04/07 v2.4.15 Chinese adapter for class book (CTEX) 167 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 168 | Package: xparse 2019-05-03 L3 Experimental document command parser 169 | \l__xparse_current_arg_int=\count166 170 | \g__xparse_grabber_int=\count167 171 | \l__xparse_m_args_int=\count168 172 | \l__xparse_v_nesting_int=\count169 173 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 174 | Package: l3keys2e 2019-05-03 LaTeX2e option processing using LaTeX3 keys 175 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexhook.sty 176 | Package: ctexhook 2019/04/07 v2.4.15 Document and package hooks (CTEX) 177 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexpatch.sty 178 | Package: ctexpatch 2019/04/07 v2.4.15 Patching commands (CTEX) 179 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fix-cm.sty 180 | Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX 181 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/ts1enc.def 182 | File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file 183 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ms/everysel.sty 184 | Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS) 185 | ) 186 | \l__ctex_tmp_int=\count170 187 | \l__ctex_tmp_box=\box46 188 | \l__ctex_tmp_dim=\dimen134 189 | \g__ctex_section_depth_int=\count171 190 | \g__ctex_font_size_int=\count172 191 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 192 | File: ctexopts.cfg 2019/04/07 v2.4.15 Option configuration file (CTEX) 193 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/book.cls 194 | Document Class: book 2018/09/03 v1.4i Standard LaTeX document class 195 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/bk10.clo 196 | File: bk10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) 197 | ) 198 | \c@part=\count173 199 | \c@chapter=\count174 200 | \c@section=\count175 201 | \c@subsection=\count176 202 | \c@subsubsection=\count177 203 | \c@paragraph=\count178 204 | \c@subparagraph=\count179 205 | \c@figure=\count180 206 | \c@table=\count181 207 | \abovecaptionskip=\skip47 208 | \belowcaptionskip=\skip48 209 | \bibindent=\dimen135 210 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def 211 | File: ctex-engine-xetex.def 2019/04/07 v2.4.15 XeLaTeX adapter (CTEX) 212 | (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.sty 213 | Package: xeCJK 2019/04/07 v3.7.2 Typesetting CJK scripts with XeLaTeX 214 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty 215 | Package: xtemplate 2019-05-03 L3 Experimental prototype document functions 216 | \l__xtemplate_tmp_dim=\dimen136 217 | \l__xtemplate_tmp_int=\count182 218 | \l__xtemplate_tmp_muskip=\muskip16 219 | \l__xtemplate_tmp_skip=\skip49 220 | ) 221 | \l__xeCJK_tmp_int=\count183 222 | \l__xeCJK_tmp_box=\box47 223 | \l__xeCJK_tmp_dim=\dimen137 224 | \l__xeCJK_tmp_skip=\skip50 225 | \g__xeCJK_space_factor_int=\count184 226 | \l__xeCJK_begin_int=\count185 227 | \l__xeCJK_end_int=\count186 228 | \c__xeCJK_CJK_class_int=\XeTeXcharclass1 229 | \c__xeCJK_FullLeft_class_int=\XeTeXcharclass2 230 | \c__xeCJK_FullRight_class_int=\XeTeXcharclass3 231 | \c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4 232 | \c__xeCJK_HalfRight_class_int=\XeTeXcharclass5 233 | \c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6 234 | \c__xeCJK_CM_class_int=\XeTeXcharclass7 235 | \c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8 236 | \l__xeCJK_last_skip=\skip51 237 | \g__xeCJK_node_int=\count187 238 | \c__xeCJK_CJK_node_dim=\dimen138 239 | \c__xeCJK_CJK-space_node_dim=\dimen139 240 | \c__xeCJK_default_node_dim=\dimen140 241 | \c__xeCJK_default-space_node_dim=\dimen141 242 | \c__xeCJK_CJK-widow_node_dim=\dimen142 243 | \c__xeCJK_normalspace_node_dim=\dimen143 244 | \l__xeCJK_ccglue_skip=\skip52 245 | \l__xeCJK_ecglue_skip=\skip53 246 | \l__xeCJK_punct_kern_skip=\skip54 247 | \l__xeCJK_last_penalty_int=\count188 248 | \l__xeCJK_last_bound_dim=\dimen144 249 | \l__xeCJK_last_kern_dim=\dimen145 250 | \l__xeCJK_widow_penalty_int=\count189 251 | 252 | Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0 253 | (xtemplate) argument(s) on line 2352. 254 | 255 | \l__xeCJK_fixed_punct_width_dim=\dimen146 256 | \l__xeCJK_mixed_punct_width_dim=\dimen147 257 | \l__xeCJK_middle_punct_width_dim=\dimen148 258 | \l__xeCJK_fixed_margin_width_dim=\dimen149 259 | \l__xeCJK_mixed_margin_width_dim=\dimen150 260 | \l__xeCJK_middle_margin_width_dim=\dimen151 261 | \l__xeCJK_bound_punct_width_dim=\dimen152 262 | \l__xeCJK_bound_margin_width_dim=\dimen153 263 | \l__xeCJK_margin_minimum_dim=\dimen154 264 | \l__xeCJK_kerning_total_width_dim=\dimen155 265 | \l__xeCJK_same_align_margin_dim=\dimen156 266 | \l__xeCJK_different_align_margin_dim=\dimen157 267 | \l__xeCJK_kerning_margin_width_dim=\dimen158 268 | \l__xeCJK_kerning_margin_minimum_dim=\dimen159 269 | \l__xeCJK_bound_dim=\dimen160 270 | \l__xeCJK_reverse_bound_dim=\dimen161 271 | \l__xeCJK_minimum_bound_dim=\dimen162 272 | \l__xeCJK_kerning_margin_dim=\dimen163 273 | \l__xeCJK_original_margin_dim=\dimen164 274 | \g__xeCJK_family_int=\count190 275 | \l__xeCJK_fam_int=\count191 276 | \g__xeCJK_fam_allocation_int=\count192 277 | \l__xeCJK_verb_case_int=\count193 278 | \l__xeCJK_verb_exspace_skip=\skip55 279 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.sty 280 | Package: fontspec 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 281 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty 282 | Package: fontspec-xetex 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 283 | \l__fontspec_script_int=\count194 284 | \l__fontspec_language_int=\count195 285 | \l__fontspec_strnum_int=\count196 286 | \l__fontspec_tmp_int=\count197 287 | \l__fontspec_tmpa_int=\count198 288 | \l__fontspec_tmpb_int=\count199 289 | \l__fontspec_tmpc_int=\count266 290 | \l__fontspec_em_int=\count267 291 | \l__fontspec_emdef_int=\count268 292 | \l__fontspec_strong_int=\count269 293 | \l__fontspec_strongdef_int=\count270 294 | \l__fontspec_tmpa_dim=\dimen165 295 | \l__fontspec_tmpb_dim=\dimen166 296 | \l__fontspec_tmpc_dim=\dimen167 297 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fontenc.sty 298 | Package: fontenc 2018/08/11 v2.0j Standard LaTeX package 299 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/tuenc.def 300 | File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file 301 | LaTeX Font Info: Redeclaring font encoding TU on input line 82. 302 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.cfg) 303 | LaTeX Info: Redefining \itshape on input line 4051. 304 | LaTeX Info: Redefining \slshape on input line 4056. 305 | LaTeX Info: Redefining \scshape on input line 4061. 306 | LaTeX Info: Redefining \upshape on input line 4066. 307 | LaTeX Info: Redefining \em on input line 4096. 308 | LaTeX Info: Redefining \emph on input line 4121. 309 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg 310 | File: xeCJK.cfg 2019/04/07 v3.7.2 Configuration file for xeCJK package 311 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty 312 | Package: xeCJKfntef 2019/04/07 v3.7.2 xeCJK font effect 313 | (/usr/local/texlive/2019/texmf-dist/tex/generic/ulem/ulem.sty 314 | \UL@box=\box48 315 | \UL@hyphenbox=\box49 316 | \UL@skip=\skip56 317 | \UL@hook=\toks14 318 | \UL@height=\dimen168 319 | \UL@pe=\count271 320 | \UL@pixel=\dimen169 321 | \ULC@box=\box50 322 | Package: ulem 2012/05/18 323 | \ULdepth=\dimen170 324 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty 325 | Package: CJKfntef 2015/04/18 4.8.4 326 | \CJK@fntefSkip=\skip57 327 | \CJK@nest=\count272 328 | \CJK@fntefDimen=\dimen171 329 | \CJK@underdotBox=\box51 330 | \CJK@ULbox=\box52 331 | \CJK@underanyskip=\dimen172 332 | ) 333 | \l__xeCJK_space_skip=\skip58 334 | \c__xeCJK_ulem-begin_node_dim=\dimen173 335 | \c__xeCJK_null_box=\box53 336 | \l__xeCJK_fntef_box=\box54 337 | \l__xeCJK_under_symbol_box=\box55 338 | \c__xeCJK_filll_skip=\skip59 339 | ) 340 | \ccwd=\dimen174 341 | \l__ctex_ccglue_skip=\skip60 342 | ) 343 | \l__ctex_ziju_dim=\dimen175 344 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber.sty 345 | Package: zhnumber 2019/04/07 v2.7 Typesetting numbers with Chinese glyphs 346 | \l__zhnum_scale_int=\count273 347 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 348 | File: zhnumber-utf8.cfg 2019/04/07 v2.7 Chinese numerals with UTF8 encoding 349 | )) 350 | \l__ctex_heading_skip=\skip61 351 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-book.def 352 | File: ctex-scheme-chinese-book.def 2019/04/07 v2.4.15 Chinese scheme for book (CTEX) 353 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 354 | File: ctex-name-utf8.cfg 2019/04/07 v2.4.15 Caption with encoding UTF8 (CTEX) 355 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctex-c5size.clo 356 | File: ctex-c5size.clo 2019/04/07 v2.4.15 c5size option (CTEX) 357 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-mac.def 358 | File: ctex-fontset-mac.def 2019/04/07 v2.4.15 Mac OS X fonts definition (CTEX) 359 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-macnew.def 360 | File: ctex-fontset-macnew.def 2019/04/07 v2.4.15 Mac OS X fonts definition for El Capitan or later version (CTEX) 361 | 362 | 363 | Package fontspec Warning: Font "Songti SC Light" does not contain requested 364 | (fontspec) Script "CJK". 365 | 366 | 367 | Package fontspec Info: Font family 'SongtiSC(0)' created for font 'Songti SC' 368 | (fontspec) with options [Script={CJK},UprightFont={* 369 | (fontspec) Light},BoldItalicFont={Kaiti SC Bold},BoldFont={* 370 | (fontspec) Bold},ItalicFont={Kaiti SC}]. 371 | (fontspec) 372 | (fontspec) This font family consists of the following NFSS 373 | (fontspec) series/shapes: 374 | (fontspec) 375 | (fontspec) - 'normal' (m/n) with NFSS spec.: <->"Songti SC 376 | (fontspec) Light/OT" 377 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 378 | (fontspec) - 'bold' (bx/n) with NFSS spec.: <->"Songti SC Bold/OT" 379 | (fontspec) - 'bold small caps' (bx/sc) with NFSS spec.: 380 | (fontspec) - 'italic' (m/it) with NFSS spec.: <->"Kaiti SC/OT" 381 | (fontspec) - 'italic small caps' (m/itsc) with NFSS spec.: 382 | (fontspec) - 'bold italic' (bx/it) with NFSS spec.: <->"Kaiti SC 383 | (fontspec) Bold/OT" 384 | (fontspec) - 'bold italic small caps' (bx/itsc) with NFSS spec.: 385 | 386 | ))) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex.cfg 387 | File: ctex.cfg 2019/04/07 v2.4.15 Configuration file (CTEX) 388 | ) (./2.aux) 389 | \openout1 = `2.aux'. 390 | 391 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 4. 392 | LaTeX Font Info: ... okay on input line 4. 393 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 4. 394 | LaTeX Font Info: ... okay on input line 4. 395 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 4. 396 | LaTeX Font Info: ... okay on input line 4. 397 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 4. 398 | LaTeX Font Info: ... okay on input line 4. 399 | LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 4. 400 | LaTeX Font Info: ... okay on input line 4. 401 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 4. 402 | LaTeX Font Info: ... okay on input line 4. 403 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 4. 404 | LaTeX Font Info: ... okay on input line 4. 405 | LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 4. 406 | LaTeX Font Info: ... okay on input line 4. 407 | ABD: EverySelectfont initializing macros 408 | LaTeX Info: Redefining \selectfont on input line 4. 409 | 410 | Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid 411 | (fontspec) this). 412 | 413 | \symlegacymaths=\mathgroup4 414 | LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' 415 | (Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 4. 416 | LaTeX Font Info: Redeclaring math accent \acute on input line 4. 417 | LaTeX Font Info: Redeclaring math accent \grave on input line 4. 418 | LaTeX Font Info: Redeclaring math accent \ddot on input line 4. 419 | LaTeX Font Info: Redeclaring math accent \tilde on input line 4. 420 | LaTeX Font Info: Redeclaring math accent \bar on input line 4. 421 | LaTeX Font Info: Redeclaring math accent \breve on input line 4. 422 | LaTeX Font Info: Redeclaring math accent \check on input line 4. 423 | LaTeX Font Info: Redeclaring math accent \hat on input line 4. 424 | LaTeX Font Info: Redeclaring math accent \dot on input line 4. 425 | LaTeX Font Info: Redeclaring math accent \mathring on input line 4. 426 | LaTeX Font Info: Redeclaring math symbol \colon on input line 4. 427 | LaTeX Font Info: Redeclaring math symbol \Gamma on input line 4. 428 | LaTeX Font Info: Redeclaring math symbol \Delta on input line 4. 429 | LaTeX Font Info: Redeclaring math symbol \Theta on input line 4. 430 | LaTeX Font Info: Redeclaring math symbol \Lambda on input line 4. 431 | LaTeX Font Info: Redeclaring math symbol \Xi on input line 4. 432 | LaTeX Font Info: Redeclaring math symbol \Pi on input line 4. 433 | LaTeX Font Info: Redeclaring math symbol \Sigma on input line 4. 434 | LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 4. 435 | LaTeX Font Info: Redeclaring math symbol \Phi on input line 4. 436 | LaTeX Font Info: Redeclaring math symbol \Psi on input line 4. 437 | LaTeX Font Info: Redeclaring math symbol \Omega on input line 4. 438 | LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 4. 439 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 4. 440 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 441 | (Font) `operators' in the math version `normal' on input line 4. 442 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 443 | (Font) OT1/cmr/m/n --> TU/lmr/m/n on input line 4. 444 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 445 | (Font) `operators' in the math version `bold' on input line 4. 446 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 447 | (Font) OT1/cmr/bx/n --> TU/lmr/m/n on input line 4. 448 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 449 | (Font) TU/lmr/m/n --> TU/lmr/m/n on input line 4. 450 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 451 | (Font) OT1/cmr/m/it --> TU/lmr/m/it on input line 4. 452 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 453 | (Font) OT1/cmr/bx/n --> TU/lmr/bx/n on input line 4. 454 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 455 | (Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 4. 456 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 457 | (Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 4. 458 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 459 | (Font) TU/lmr/m/n --> TU/lmr/bx/n on input line 4. 460 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 461 | (Font) OT1/cmr/bx/it --> TU/lmr/bx/it on input line 4. 462 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 463 | (Font) OT1/cmss/bx/n --> TU/lmss/bx/n on input line 4. 464 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 465 | (Font) OT1/cmtt/m/n --> TU/lmtt/bx/n on input line 4. 466 | (./2.toc 467 | LaTeX Font Info: External font `cmex10' loaded for size 468 | (Font) <10.53937> on input line 2. 469 | LaTeX Font Info: External font `cmex10' loaded for size 470 | (Font) <7> on input line 2. 471 | LaTeX Font Info: External font `cmex10' loaded for size 472 | (Font) <5> on input line 2. 473 | ) 474 | \tf@toc=\write3 475 | \openout3 = `2.toc'. 476 | 477 | [1 478 | 479 | 480 | ] 481 | LaTeX Font Info: Font shape `TU/SongtiSC(0)/m/sl' in size <10.53937> not available 482 | (Font) Font shape `TU/SongtiSC(0)/m/it' tried instead on input line 6. 483 | [2 484 | 485 | ] 486 | 第一章 487 | [3] [4 488 | 489 | ] 490 | 第二章 491 | [5] (./2.aux) ) 492 | Here is how much of TeX's memory you used: 493 | 15960 strings out of 492916 494 | 378340 string characters out of 6133345 495 | 468264 words of memory out of 5000000 496 | 19934 multiletter control sequences out of 15000+600000 497 | 533544 words of font info for 51 fonts, out of 8000000 for 9000 498 | 1348 hyphenation exceptions out of 8191 499 | 60i,4n,73p,533b,446s stack positions out of 5000i,500n,10000p,200000b,80000s 500 | 501 | Output written on 2.pdf (5 pages). 502 | -------------------------------------------------------------------------------- /lesson2/2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson2/2.pdf -------------------------------------------------------------------------------- /lesson2/2.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson2/2.synctex.gz -------------------------------------------------------------------------------- /lesson2/2.tex: -------------------------------------------------------------------------------- 1 | \documentclass{ctexbook} 2 | \usepackage{ctex} 3 | 4 | \begin{document} 5 | \tableofcontents 6 | \chapter{绪论} 7 | \section{研究的意义和目的} 8 | \section{国内外研究现状} 9 | \subsection{国内研究现状} 10 | \subsection{国外研究现状} 11 | \section{研究内容} 12 | \section{研究方法与技术路线} 13 | \subsection{研究方法} 14 | \subsection{技术路线} 15 | \chapter{实验与结果分析} 16 | \section{引言} 17 | \section{实验方法} 18 | \section{实验结果} 19 | \subsection{数据} 20 | \subsection{图表} 21 | \subsubsection{实验条件} 22 | \subsubsection{实验过程} 23 | \subsection{结果分析} 24 | \section{结论} 25 | \section{致谢} 26 | \end{document} -------------------------------------------------------------------------------- /lesson2/2.toc: -------------------------------------------------------------------------------- 1 | \contentsline {chapter}{\numberline {第一章\hspace {.3em}}绪论}{3}% 2 | \contentsline {section}{\numberline {1.1}研究的意义和目的}{3}% 3 | \contentsline {section}{\numberline {1.2}国内外研究现状}{3}% 4 | \contentsline {subsection}{\numberline {1.2.1}国内研究现状}{3}% 5 | \contentsline {subsection}{\numberline {1.2.2}国外研究现状}{3}% 6 | \contentsline {section}{\numberline {1.3}研究内容}{3}% 7 | \contentsline {section}{\numberline {1.4}研究方法与技术路线}{3}% 8 | \contentsline {subsection}{\numberline {1.4.1}研究方法}{3}% 9 | \contentsline {subsection}{\numberline {1.4.2}技术路线}{3}% 10 | \contentsline {chapter}{\numberline {第二章\hspace {.3em}}实验与结果分析}{5}% 11 | \contentsline {section}{\numberline {2.1}引言}{5}% 12 | \contentsline {section}{\numberline {2.2}实验方法}{5}% 13 | \contentsline {section}{\numberline {2.3}实验结果}{5}% 14 | \contentsline {subsection}{\numberline {2.3.1}数据}{5}% 15 | \contentsline {subsection}{\numberline {2.3.2}图表}{5}% 16 | \contentsline {subsubsection}{实验条件}{5}% 17 | \contentsline {subsubsection}{实验过程}{5}% 18 | \contentsline {subsection}{\numberline {2.3.3}结果分析}{5}% 19 | \contentsline {section}{\numberline {2.4}结论}{5}% 20 | \contentsline {section}{\numberline {2.5}致谢}{5}% 21 | -------------------------------------------------------------------------------- /lesson3/3.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {1}空白符号}{1}\protected@file@percent } 3 | \@writefile{toc}{\contentsline {section}{\numberline {2}\LaTeX 控制符}{1}\protected@file@percent } 4 | \@writefile{toc}{\contentsline {section}{\numberline {3}排版符号}{1}\protected@file@percent } 5 | \@writefile{toc}{\contentsline {section}{\numberline {4}T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\spacefactor 1000 标志符号}{1}\protected@file@percent } 6 | \@writefile{toc}{\contentsline {section}{\numberline {5}引号}{2}\protected@file@percent } 7 | \@writefile{toc}{\contentsline {section}{\numberline {6}连字符}{2}\protected@file@percent } 8 | \@writefile{toc}{\contentsline {section}{\numberline {7}非英文字符}{2}\protected@file@percent } 9 | \@writefile{toc}{\contentsline {section}{\numberline {8}重音字符(以o为例)}{2}\protected@file@percent } 10 | -------------------------------------------------------------------------------- /lesson3/3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson3/3.pdf -------------------------------------------------------------------------------- /lesson3/3.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson3/3.synctex.gz -------------------------------------------------------------------------------- /lesson3/3.tex: -------------------------------------------------------------------------------- 1 | \documentclass{article} 2 | \usepackage{ctex} 3 | \usepackage{xltxtra} % 提供了针对XeTex的改进并加入了XeTex的LOGO 4 | \usepackage{mflogo} 5 | \usepackage{texnames} 6 | \begin{document} 7 | \section{空白符号} 8 | % 空行分段,多个空行等于一个 9 | % 自动缩进,绝对不能使用空格代替 10 | % 英文中多个空格处理成一个空格,中文中空格将被忽略 11 | % 汉字与其他字符的间距会自动由XeLaTex处理 12 | % 禁止使用中文全角空格 13 | Are you wiser than others? definitely no. in some ways, may it is true. What can you achieve? a luxurious house? a brillilant car? an admirable career? who knows? 14 | 15 | 近年来,随着逆向工程和三维重建技术的发展和应用,获取现实物体的三维数据的方法越来越多的关注和研究,很多研究机构和商业公司都陆续推出了自己的三维重建系统。 16 | 17 | % 1em 18 | a \quad b 19 | 20 | % 2em 21 | a \qquad b 22 | 23 | % 1/6em 24 | a\,b 25 | 26 | a\thinspace b 27 | 28 | % 0.5em 29 | a\enspace b 30 | 31 | % 空格 32 | a\ b 33 | 34 | % 硬空格 35 | a~b 36 | 37 | % 1pc=12pt=4.218mm 38 | a\kern 1pc b 39 | 40 | a\kern -1em b 41 | 42 | a\hskip 1em b 43 | 44 | a\hspace{35pt}b 45 | 46 | % 占位宽度 47 | a\hphantom{xyz}b 48 | 49 | axyzb 50 | 51 | % 弹性 52 | a\hfill b 53 | 54 | \section{\LaTeX 控制符} 55 | \# \$ \% \{ \} \~{} \_{} \^{} \textbackslash 56 | \section{排版符号} 57 | \S \P \dag \ddag \copyright \pounds 58 | \section{\TeX 标志符号} 59 | \TeX{} \LaTeX{} \LaTeXe{} 60 | 61 | % xltxtra 62 | \XeLaTeX 63 | 64 | % texnames 65 | \AmSTeX{} \AmS-\LaTeX{} 66 | \BibTeX{} \LuaTeX{} 67 | 68 | % mflogo 69 | \METAFONT{} \MF{} \MP{} 70 | 71 | \section{引号} 72 | ` ' `` '' ``你好'' 73 | \section{连字符} 74 | - -- --- 75 | \section{非英文字符} 76 | \oe \OE \ae \AE \aa \AA \o \O \l \L \ss \SS !` ?` 77 | \section{重音字符(以o为例)} 78 | \`o \'o \^o \''o \~o \=o \.o \u{o} \v{o} \H{o} \r{o} \t{o} \b{o} \c{o} \d{o} 79 | \end{document} -------------------------------------------------------------------------------- /lesson4/4.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /lesson4/4.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019) (preloaded format=xelatex 2020.2.17) 23 FEB 2020 10:47 2 | entering extended mode 3 | restricted \write18 enabled. 4 | file:line:error style messages enabled. 5 | %&-line parsing enabled. 6 | **/Users/obsidian/source/latex_test/lesson4/4 7 | (/Users/obsidian/source/latex_test/lesson4/4.tex 8 | LaTeX2e <2018-12-01> 9 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexart.cls (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3.sty 10 | Package: expl3 2019-05-07 L3 programming layer (loader) 11 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3-code.tex 12 | Package: expl3 2019-05-07 L3 programming layer (code) 13 | \c_max_int=\count80 14 | \l_tmpa_int=\count81 15 | \l_tmpb_int=\count82 16 | \g_tmpa_int=\count83 17 | \g_tmpb_int=\count84 18 | \g__kernel_prg_map_int=\count85 19 | \c__ior_term_ior=\count86 20 | \c_log_iow=\count87 21 | \l_iow_line_count_int=\count88 22 | \l__iow_line_target_int=\count89 23 | \l__iow_one_indent_int=\count90 24 | \l__iow_indent_int=\count91 25 | \c_zero_dim=\dimen102 26 | \c_max_dim=\dimen103 27 | \l_tmpa_dim=\dimen104 28 | \l_tmpb_dim=\dimen105 29 | \g_tmpa_dim=\dimen106 30 | \g_tmpb_dim=\dimen107 31 | \c_zero_skip=\skip41 32 | \c_max_skip=\skip42 33 | \l_tmpa_skip=\skip43 34 | \l_tmpb_skip=\skip44 35 | \g_tmpa_skip=\skip45 36 | \g_tmpb_skip=\skip46 37 | \c_zero_muskip=\muskip10 38 | \c_max_muskip=\muskip11 39 | \l_tmpa_muskip=\muskip12 40 | \l_tmpb_muskip=\muskip13 41 | \g_tmpa_muskip=\muskip14 42 | \g_tmpb_muskip=\muskip15 43 | \l_keys_choice_int=\count92 44 | \l__intarray_loop_int=\count93 45 | \c__intarray_sp_dim=\dimen108 46 | \g__intarray_font_int=\count94 47 | \c__fp_leading_shift_int=\count95 48 | \c__fp_middle_shift_int=\count96 49 | \c__fp_trailing_shift_int=\count97 50 | \c__fp_big_leading_shift_int=\count98 51 | \c__fp_big_middle_shift_int=\count99 52 | \c__fp_big_trailing_shift_int=\count100 53 | \c__fp_Bigg_leading_shift_int=\count101 54 | \c__fp_Bigg_middle_shift_int=\count102 55 | \c__fp_Bigg_trailing_shift_int=\count103 56 | \g__fp_array_int=\count104 57 | \l__fp_array_loop_int=\count105 58 | \l__sort_length_int=\count106 59 | \l__sort_min_int=\count107 60 | \l__sort_top_int=\count108 61 | \l__sort_max_int=\count109 62 | \l__sort_true_max_int=\count110 63 | \l__sort_block_int=\count111 64 | \l__sort_begin_int=\count112 65 | \l__sort_end_int=\count113 66 | \l__sort_A_int=\count114 67 | \l__sort_B_int=\count115 68 | \l__sort_C_int=\count116 69 | \l__tl_analysis_normal_int=\count117 70 | \l__tl_analysis_index_int=\count118 71 | \l__tl_analysis_nesting_int=\count119 72 | \l__tl_analysis_type_int=\count120 73 | \l__regex_internal_a_int=\count121 74 | \l__regex_internal_b_int=\count122 75 | \l__regex_internal_c_int=\count123 76 | \l__regex_balance_int=\count124 77 | \l__regex_group_level_int=\count125 78 | \l__regex_mode_int=\count126 79 | \c__regex_cs_in_class_mode_int=\count127 80 | \c__regex_cs_mode_int=\count128 81 | \l__regex_catcodes_int=\count129 82 | \l__regex_default_catcodes_int=\count130 83 | \c__regex_catcode_L_int=\count131 84 | \c__regex_catcode_O_int=\count132 85 | \c__regex_catcode_A_int=\count133 86 | \c__regex_all_catcodes_int=\count134 87 | \l__regex_show_lines_int=\count135 88 | \l__regex_min_state_int=\count136 89 | \l__regex_max_state_int=\count137 90 | \l__regex_left_state_int=\count138 91 | \l__regex_right_state_int=\count139 92 | \l__regex_capturing_group_int=\count140 93 | \l__regex_min_pos_int=\count141 94 | \l__regex_max_pos_int=\count142 95 | \l__regex_curr_pos_int=\count143 96 | \l__regex_start_pos_int=\count144 97 | \l__regex_success_pos_int=\count145 98 | \l__regex_curr_char_int=\count146 99 | \l__regex_curr_catcode_int=\count147 100 | \l__regex_last_char_int=\count148 101 | \l__regex_case_changed_char_int=\count149 102 | \l__regex_curr_state_int=\count150 103 | \l__regex_step_int=\count151 104 | \l__regex_min_active_int=\count152 105 | \l__regex_max_active_int=\count153 106 | \l__regex_replacement_csnames_int=\count154 107 | \l__regex_match_count_int=\count155 108 | \l__regex_min_submatch_int=\count156 109 | \l__regex_submatch_int=\count157 110 | \l__regex_zeroth_submatch_int=\count158 111 | \g__regex_trace_regex_int=\count159 112 | \c_empty_box=\box27 113 | \l_tmpa_box=\box28 114 | \l_tmpb_box=\box29 115 | \g_tmpa_box=\box30 116 | \g_tmpb_box=\box31 117 | \l__box_top_dim=\dimen109 118 | \l__box_bottom_dim=\dimen110 119 | \l__box_left_dim=\dimen111 120 | \l__box_right_dim=\dimen112 121 | \l__box_top_new_dim=\dimen113 122 | \l__box_bottom_new_dim=\dimen114 123 | \l__box_left_new_dim=\dimen115 124 | \l__box_right_new_dim=\dimen116 125 | \l__box_internal_box=\box32 126 | \l__coffin_internal_box=\box33 127 | \l__coffin_internal_dim=\dimen117 128 | \l__coffin_offset_x_dim=\dimen118 129 | \l__coffin_offset_y_dim=\dimen119 130 | \l__coffin_x_dim=\dimen120 131 | \l__coffin_y_dim=\dimen121 132 | \l__coffin_x_prime_dim=\dimen122 133 | \l__coffin_y_prime_dim=\dimen123 134 | \c_empty_coffin=\box34 135 | \l__coffin_aligned_coffin=\box35 136 | \l__coffin_aligned_internal_coffin=\box36 137 | \l_tmpa_coffin=\box37 138 | \l_tmpb_coffin=\box38 139 | \g_tmpa_coffin=\box39 140 | \g_tmpb_coffin=\box40 141 | \l__coffin_bounding_shift_dim=\dimen124 142 | \l__coffin_left_corner_dim=\dimen125 143 | \l__coffin_right_corner_dim=\dimen126 144 | \l__coffin_bottom_corner_dim=\dimen127 145 | \l__coffin_top_corner_dim=\dimen128 146 | \l__coffin_scaled_total_height_dim=\dimen129 147 | \l__coffin_scaled_width_dim=\dimen130 148 | \c__coffin_empty_coffin=\box41 149 | \l__coffin_display_coffin=\box42 150 | \l__coffin_display_coord_coffin=\box43 151 | \l__coffin_display_pole_coffin=\box44 152 | \l__coffin_display_offset_dim=\dimen131 153 | \l__coffin_display_x_dim=\dimen132 154 | \l__coffin_display_y_dim=\dimen133 155 | \g__file_internal_ior=\read1 156 | \l__seq_internal_a_int=\count160 157 | \l__seq_internal_b_int=\count161 158 | \c__deprecation_minus_one=\count162 159 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def 160 | File: l3xdvipdfmx.def 2019-04-06 v L3 Experimental driver: xdvipdfmx 161 | \g__driver_image_int=\count163 162 | \l__driver_pdf_tmp_box=\box45 163 | \g__driver_pdf_object_int=\count164 164 | \g__driver_pdf_annotation_int=\count165 165 | )) 166 | Document Class: ctexart 2019/04/07 v2.4.15 Chinese adapter for class article (CTEX) 167 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 168 | Package: xparse 2019-05-03 L3 Experimental document command parser 169 | \l__xparse_current_arg_int=\count166 170 | \g__xparse_grabber_int=\count167 171 | \l__xparse_m_args_int=\count168 172 | \l__xparse_v_nesting_int=\count169 173 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 174 | Package: l3keys2e 2019-05-03 LaTeX2e option processing using LaTeX3 keys 175 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexhook.sty 176 | Package: ctexhook 2019/04/07 v2.4.15 Document and package hooks (CTEX) 177 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexpatch.sty 178 | Package: ctexpatch 2019/04/07 v2.4.15 Patching commands (CTEX) 179 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fix-cm.sty 180 | Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX 181 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/ts1enc.def 182 | File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file 183 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ms/everysel.sty 184 | Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS) 185 | ) 186 | \l__ctex_tmp_int=\count170 187 | \l__ctex_tmp_box=\box46 188 | \l__ctex_tmp_dim=\dimen134 189 | \g__ctex_section_depth_int=\count171 190 | \g__ctex_font_size_int=\count172 191 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 192 | File: ctexopts.cfg 2019/04/07 v2.4.15 Option configuration file (CTEX) 193 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/article.cls 194 | Document Class: article 2018/09/03 v1.4i Standard LaTeX document class 195 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/size10.clo 196 | File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) 197 | ) 198 | \c@part=\count173 199 | \c@section=\count174 200 | \c@subsection=\count175 201 | \c@subsubsection=\count176 202 | \c@paragraph=\count177 203 | \c@subparagraph=\count178 204 | \c@figure=\count179 205 | \c@table=\count180 206 | \abovecaptionskip=\skip47 207 | \belowcaptionskip=\skip48 208 | \bibindent=\dimen135 209 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def 210 | File: ctex-engine-xetex.def 2019/04/07 v2.4.15 XeLaTeX adapter (CTEX) 211 | (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.sty 212 | Package: xeCJK 2019/04/07 v3.7.2 Typesetting CJK scripts with XeLaTeX 213 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty 214 | Package: xtemplate 2019-05-03 L3 Experimental prototype document functions 215 | \l__xtemplate_tmp_dim=\dimen136 216 | \l__xtemplate_tmp_int=\count181 217 | \l__xtemplate_tmp_muskip=\muskip16 218 | \l__xtemplate_tmp_skip=\skip49 219 | ) 220 | \l__xeCJK_tmp_int=\count182 221 | \l__xeCJK_tmp_box=\box47 222 | \l__xeCJK_tmp_dim=\dimen137 223 | \l__xeCJK_tmp_skip=\skip50 224 | \g__xeCJK_space_factor_int=\count183 225 | \l__xeCJK_begin_int=\count184 226 | \l__xeCJK_end_int=\count185 227 | \c__xeCJK_CJK_class_int=\XeTeXcharclass1 228 | \c__xeCJK_FullLeft_class_int=\XeTeXcharclass2 229 | \c__xeCJK_FullRight_class_int=\XeTeXcharclass3 230 | \c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4 231 | \c__xeCJK_HalfRight_class_int=\XeTeXcharclass5 232 | \c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6 233 | \c__xeCJK_CM_class_int=\XeTeXcharclass7 234 | \c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8 235 | \l__xeCJK_last_skip=\skip51 236 | \g__xeCJK_node_int=\count186 237 | \c__xeCJK_CJK_node_dim=\dimen138 238 | \c__xeCJK_CJK-space_node_dim=\dimen139 239 | \c__xeCJK_default_node_dim=\dimen140 240 | \c__xeCJK_default-space_node_dim=\dimen141 241 | \c__xeCJK_CJK-widow_node_dim=\dimen142 242 | \c__xeCJK_normalspace_node_dim=\dimen143 243 | \l__xeCJK_ccglue_skip=\skip52 244 | \l__xeCJK_ecglue_skip=\skip53 245 | \l__xeCJK_punct_kern_skip=\skip54 246 | \l__xeCJK_last_penalty_int=\count187 247 | \l__xeCJK_last_bound_dim=\dimen144 248 | \l__xeCJK_last_kern_dim=\dimen145 249 | \l__xeCJK_widow_penalty_int=\count188 250 | 251 | Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0 252 | (xtemplate) argument(s) on line 2352. 253 | 254 | \l__xeCJK_fixed_punct_width_dim=\dimen146 255 | \l__xeCJK_mixed_punct_width_dim=\dimen147 256 | \l__xeCJK_middle_punct_width_dim=\dimen148 257 | \l__xeCJK_fixed_margin_width_dim=\dimen149 258 | \l__xeCJK_mixed_margin_width_dim=\dimen150 259 | \l__xeCJK_middle_margin_width_dim=\dimen151 260 | \l__xeCJK_bound_punct_width_dim=\dimen152 261 | \l__xeCJK_bound_margin_width_dim=\dimen153 262 | \l__xeCJK_margin_minimum_dim=\dimen154 263 | \l__xeCJK_kerning_total_width_dim=\dimen155 264 | \l__xeCJK_same_align_margin_dim=\dimen156 265 | \l__xeCJK_different_align_margin_dim=\dimen157 266 | \l__xeCJK_kerning_margin_width_dim=\dimen158 267 | \l__xeCJK_kerning_margin_minimum_dim=\dimen159 268 | \l__xeCJK_bound_dim=\dimen160 269 | \l__xeCJK_reverse_bound_dim=\dimen161 270 | \l__xeCJK_minimum_bound_dim=\dimen162 271 | \l__xeCJK_kerning_margin_dim=\dimen163 272 | \l__xeCJK_original_margin_dim=\dimen164 273 | \g__xeCJK_family_int=\count189 274 | \l__xeCJK_fam_int=\count190 275 | \g__xeCJK_fam_allocation_int=\count191 276 | \l__xeCJK_verb_case_int=\count192 277 | \l__xeCJK_verb_exspace_skip=\skip55 278 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.sty 279 | Package: fontspec 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 280 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty 281 | Package: fontspec-xetex 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 282 | \l__fontspec_script_int=\count193 283 | \l__fontspec_language_int=\count194 284 | \l__fontspec_strnum_int=\count195 285 | \l__fontspec_tmp_int=\count196 286 | \l__fontspec_tmpa_int=\count197 287 | \l__fontspec_tmpb_int=\count198 288 | \l__fontspec_tmpc_int=\count199 289 | \l__fontspec_em_int=\count266 290 | \l__fontspec_emdef_int=\count267 291 | \l__fontspec_strong_int=\count268 292 | \l__fontspec_strongdef_int=\count269 293 | \l__fontspec_tmpa_dim=\dimen165 294 | \l__fontspec_tmpb_dim=\dimen166 295 | \l__fontspec_tmpc_dim=\dimen167 296 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fontenc.sty 297 | Package: fontenc 2018/08/11 v2.0j Standard LaTeX package 298 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/tuenc.def 299 | File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file 300 | LaTeX Font Info: Redeclaring font encoding TU on input line 82. 301 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.cfg) 302 | LaTeX Info: Redefining \itshape on input line 4051. 303 | LaTeX Info: Redefining \slshape on input line 4056. 304 | LaTeX Info: Redefining \scshape on input line 4061. 305 | LaTeX Info: Redefining \upshape on input line 4066. 306 | LaTeX Info: Redefining \em on input line 4096. 307 | LaTeX Info: Redefining \emph on input line 4121. 308 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg 309 | File: xeCJK.cfg 2019/04/07 v3.7.2 Configuration file for xeCJK package 310 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty 311 | Package: xeCJKfntef 2019/04/07 v3.7.2 xeCJK font effect 312 | (/usr/local/texlive/2019/texmf-dist/tex/generic/ulem/ulem.sty 313 | \UL@box=\box48 314 | \UL@hyphenbox=\box49 315 | \UL@skip=\skip56 316 | \UL@hook=\toks14 317 | \UL@height=\dimen168 318 | \UL@pe=\count270 319 | \UL@pixel=\dimen169 320 | \ULC@box=\box50 321 | Package: ulem 2012/05/18 322 | \ULdepth=\dimen170 323 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty 324 | Package: CJKfntef 2015/04/18 4.8.4 325 | \CJK@fntefSkip=\skip57 326 | \CJK@nest=\count271 327 | \CJK@fntefDimen=\dimen171 328 | \CJK@underdotBox=\box51 329 | \CJK@ULbox=\box52 330 | \CJK@underanyskip=\dimen172 331 | ) 332 | \l__xeCJK_space_skip=\skip58 333 | \c__xeCJK_ulem-begin_node_dim=\dimen173 334 | \c__xeCJK_null_box=\box53 335 | \l__xeCJK_fntef_box=\box54 336 | \l__xeCJK_under_symbol_box=\box55 337 | \c__xeCJK_filll_skip=\skip59 338 | ) 339 | \ccwd=\dimen174 340 | \l__ctex_ccglue_skip=\skip60 341 | ) 342 | \l__ctex_ziju_dim=\dimen175 343 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber.sty 344 | Package: zhnumber 2019/04/07 v2.7 Typesetting numbers with Chinese glyphs 345 | \l__zhnum_scale_int=\count272 346 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 347 | File: zhnumber-utf8.cfg 2019/04/07 v2.7 Chinese numerals with UTF8 encoding 348 | )) 349 | \l__ctex_heading_skip=\skip61 350 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-article.def 351 | File: ctex-scheme-chinese-article.def 2019/04/07 v2.4.15 Chinese scheme for article (CTEX) 352 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 353 | File: ctex-name-utf8.cfg 2019/04/07 v2.4.15 Caption with encoding UTF8 (CTEX) 354 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctex-c5size.clo 355 | File: ctex-c5size.clo 2019/04/07 v2.4.15 c5size option (CTEX) 356 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-mac.def 357 | File: ctex-fontset-mac.def 2019/04/07 v2.4.15 Mac OS X fonts definition (CTEX) 358 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-macnew.def 359 | File: ctex-fontset-macnew.def 2019/04/07 v2.4.15 Mac OS X fonts definition for El Capitan or later version (CTEX) 360 | 361 | 362 | Package fontspec Warning: Font "Songti SC Light" does not contain requested 363 | (fontspec) Script "CJK". 364 | 365 | 366 | Package fontspec Info: Font family 'SongtiSC(0)' created for font 'Songti SC' 367 | (fontspec) with options [Script={CJK},UprightFont={* 368 | (fontspec) Light},BoldItalicFont={Kaiti SC Bold},BoldFont={* 369 | (fontspec) Bold},ItalicFont={Kaiti SC}]. 370 | (fontspec) 371 | (fontspec) This font family consists of the following NFSS 372 | (fontspec) series/shapes: 373 | (fontspec) 374 | (fontspec) - 'normal' (m/n) with NFSS spec.: <->"Songti SC 375 | (fontspec) Light/OT" 376 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 377 | (fontspec) - 'bold' (bx/n) with NFSS spec.: <->"Songti SC Bold/OT" 378 | (fontspec) - 'bold small caps' (bx/sc) with NFSS spec.: 379 | (fontspec) - 'italic' (m/it) with NFSS spec.: <->"Kaiti SC/OT" 380 | (fontspec) - 'italic small caps' (m/itsc) with NFSS spec.: 381 | (fontspec) - 'bold italic' (bx/it) with NFSS spec.: <->"Kaiti SC 382 | (fontspec) Bold/OT" 383 | (fontspec) - 'bold italic small caps' (bx/itsc) with NFSS spec.: 384 | 385 | ))) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex.cfg 386 | File: ctex.cfg 2019/04/07 v2.4.15 Configuration file (CTEX) 387 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/graphics/graphicx.sty 388 | Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) 389 | (/usr/local/texlive/2019/texmf-dist/tex/latex/graphics/keyval.sty 390 | Package: keyval 2014/10/28 v1.15 key=value parser (DPC) 391 | \KV@toks@=\toks15 392 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/graphics/graphics.sty 393 | Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) 394 | (/usr/local/texlive/2019/texmf-dist/tex/latex/graphics/trig.sty 395 | Package: trig 2016/01/03 v1.10 sin cos tan (DPC) 396 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/graphics-cfg/graphics.cfg 397 | File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration 398 | ) 399 | Package graphics Info: Driver file: xetex.def on input line 99. 400 | (/usr/local/texlive/2019/texmf-dist/tex/latex/graphics-def/xetex.def 401 | File: xetex.def 2017/06/24 v5.0h Graphics/color driver for xetex 402 | )) 403 | \Gin@req@height=\dimen176 404 | \Gin@req@width=\dimen177 405 | ) (./4.aux) 406 | \openout1 = `4.aux'. 407 | 408 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 10. 409 | LaTeX Font Info: ... okay on input line 10. 410 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 10. 411 | LaTeX Font Info: ... okay on input line 10. 412 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 10. 413 | LaTeX Font Info: ... okay on input line 10. 414 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 10. 415 | LaTeX Font Info: ... okay on input line 10. 416 | LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 10. 417 | LaTeX Font Info: ... okay on input line 10. 418 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 10. 419 | LaTeX Font Info: ... okay on input line 10. 420 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 10. 421 | LaTeX Font Info: ... okay on input line 10. 422 | LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 10. 423 | LaTeX Font Info: ... okay on input line 10. 424 | ABD: EverySelectfont initializing macros 425 | LaTeX Info: Redefining \selectfont on input line 10. 426 | 427 | Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid 428 | (fontspec) this). 429 | 430 | \symlegacymaths=\mathgroup4 431 | LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' 432 | (Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 10. 433 | LaTeX Font Info: Redeclaring math accent \acute on input line 10. 434 | LaTeX Font Info: Redeclaring math accent \grave on input line 10. 435 | LaTeX Font Info: Redeclaring math accent \ddot on input line 10. 436 | LaTeX Font Info: Redeclaring math accent \tilde on input line 10. 437 | LaTeX Font Info: Redeclaring math accent \bar on input line 10. 438 | LaTeX Font Info: Redeclaring math accent \breve on input line 10. 439 | LaTeX Font Info: Redeclaring math accent \check on input line 10. 440 | LaTeX Font Info: Redeclaring math accent \hat on input line 10. 441 | LaTeX Font Info: Redeclaring math accent \dot on input line 10. 442 | LaTeX Font Info: Redeclaring math accent \mathring on input line 10. 443 | LaTeX Font Info: Redeclaring math symbol \colon on input line 10. 444 | LaTeX Font Info: Redeclaring math symbol \Gamma on input line 10. 445 | LaTeX Font Info: Redeclaring math symbol \Delta on input line 10. 446 | LaTeX Font Info: Redeclaring math symbol \Theta on input line 10. 447 | LaTeX Font Info: Redeclaring math symbol \Lambda on input line 10. 448 | LaTeX Font Info: Redeclaring math symbol \Xi on input line 10. 449 | LaTeX Font Info: Redeclaring math symbol \Pi on input line 10. 450 | LaTeX Font Info: Redeclaring math symbol \Sigma on input line 10. 451 | LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 10. 452 | LaTeX Font Info: Redeclaring math symbol \Phi on input line 10. 453 | LaTeX Font Info: Redeclaring math symbol \Psi on input line 10. 454 | LaTeX Font Info: Redeclaring math symbol \Omega on input line 10. 455 | LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 10. 456 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 10. 457 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 458 | (Font) `operators' in the math version `normal' on input line 10. 459 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 460 | (Font) OT1/cmr/m/n --> TU/lmr/m/n on input line 10. 461 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 462 | (Font) `operators' in the math version `bold' on input line 10. 463 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 464 | (Font) OT1/cmr/bx/n --> TU/lmr/m/n on input line 10. 465 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 466 | (Font) TU/lmr/m/n --> TU/lmr/m/n on input line 10. 467 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 468 | (Font) OT1/cmr/m/it --> TU/lmr/m/it on input line 10. 469 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 470 | (Font) OT1/cmr/bx/n --> TU/lmr/bx/n on input line 10. 471 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 472 | (Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 10. 473 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 474 | (Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 10. 475 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 476 | (Font) TU/lmr/m/n --> TU/lmr/bx/n on input line 10. 477 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 478 | (Font) OT1/cmr/bx/it --> TU/lmr/bx/it on input line 10. 479 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 480 | (Font) OT1/cmss/bx/n --> TU/lmss/bx/n on input line 10. 481 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 482 | (Font) OT1/cmtt/m/n --> TU/lmtt/bx/n on input line 10. 483 | LaTeX Font Info: External font `cmex10' loaded for size 484 | (Font) <10.53937> on input line 11. 485 | LaTeX Font Info: External font `cmex10' loaded for size 486 | (Font) <7> on input line 11. 487 | LaTeX Font Info: External font `cmex10' loaded for size 488 | (Font) <5> on input line 11. 489 | File: fig/vctk.png Graphic file (type bmp) 490 | 491 | 492 | Overfull \hbox (72.11818pt too wide) in paragraph at lines 13--14 493 | [][] 494 | [] 495 | 496 | File: fig/vctk.png Graphic file (type bmp) 497 | 498 | File: fig/vctk.png Graphic file (type bmp) 499 | 500 | File: fig/vctk.png Graphic file (type bmp) 501 | 502 | File: fig/vctk.png Graphic file (type bmp) 503 | 504 | File: fig/vctk.png Graphic file (type bmp) 505 | 506 | File: fig/vctk.png Graphic file (type bmp) 507 | 508 | [1 509 | 510 | ] [2] (./4.aux) ) 511 | Here is how much of TeX's memory you used: 512 | 16204 strings out of 492916 513 | 380198 string characters out of 6133345 514 | 454327 words of memory out of 5000000 515 | 20170 multiletter control sequences out of 15000+600000 516 | 533464 words of font info for 41 fonts, out of 8000000 for 9000 517 | 1348 hyphenation exceptions out of 8191 518 | 60i,4n,73p,396b,446s stack positions out of 5000i,500n,10000p,200000b,80000s 519 | 520 | Output written on 4.pdf (2 pages). 521 | -------------------------------------------------------------------------------- /lesson4/4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson4/4.pdf -------------------------------------------------------------------------------- /lesson4/4.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson4/4.synctex.gz -------------------------------------------------------------------------------- /lesson4/4.tex: -------------------------------------------------------------------------------- 1 | \documentclass{ctexart} 2 | \usepackage{ctex} 3 | % 导言区:\usepackage{graphicx} 4 | % 语法:\includegraphics[<选项>]{<文件名>} 5 | % 格式:EPS,PDF,PNG,JPEG,BMP 6 | \usepackage{graphicx} 7 | \graphicspath{{fig/}} % 图片的搜索路径 8 | 9 | 10 | \begin{document} 11 | \LaTeX{}中的插图: 12 | 13 | \includegraphics[scale=0.5]{vctk.png} 14 | 15 | \includegraphics[height=2cm]{vctk.png} 16 | 17 | \includegraphics[width=2cm]{vctk.png} 18 | 19 | \includegraphics[height=0.1\textheight]{vctk.png} 20 | 21 | \includegraphics[height=0.1\textwidth]{vctk.png} 22 | 23 | \includegraphics[angle=-45,height=0.1\textwidth]{vctk.png} 24 | 25 | \includegraphics[angle=45,width=0.2\textwidth]{vctk.png} 26 | 27 | \end{document} -------------------------------------------------------------------------------- /lesson4/fig/st_250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson4/fig/st_250.png -------------------------------------------------------------------------------- /lesson4/fig/thchs(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson4/fig/thchs(1).png -------------------------------------------------------------------------------- /lesson4/fig/thchs(2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson4/fig/thchs(2).png -------------------------------------------------------------------------------- /lesson4/fig/thchs(3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson4/fig/thchs(3).png -------------------------------------------------------------------------------- /lesson4/fig/vctk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson4/fig/vctk.png -------------------------------------------------------------------------------- /lesson5/5.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces loss of st\_250}}{1}\protected@file@percent } 3 | \@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces 成绩表}}{1}\protected@file@percent } 4 | \newlabel{table1}{{1}{1}} 5 | \@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces loss of thchs(1)}}{1}\protected@file@percent } 6 | \@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces loss of thchs(2)}}{2}\protected@file@percent } 7 | \@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces loss of vctk}}{2}\protected@file@percent } 8 | \@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces loss of thchs(3)}}{2}\protected@file@percent } 9 | -------------------------------------------------------------------------------- /lesson5/5.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019) (preloaded format=xelatex 2020.2.17) 23 FEB 2020 11:54 2 | entering extended mode 3 | restricted \write18 enabled. 4 | file:line:error style messages enabled. 5 | %&-line parsing enabled. 6 | **/Users/obsidian/source/latex_test/lesson5/5 7 | (/Users/obsidian/source/latex_test/lesson5/5.tex 8 | LaTeX2e <2018-12-01> 9 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexart.cls (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3.sty 10 | Package: expl3 2019-05-07 L3 programming layer (loader) 11 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3-code.tex 12 | Package: expl3 2019-05-07 L3 programming layer (code) 13 | \c_max_int=\count80 14 | \l_tmpa_int=\count81 15 | \l_tmpb_int=\count82 16 | \g_tmpa_int=\count83 17 | \g_tmpb_int=\count84 18 | \g__kernel_prg_map_int=\count85 19 | \c__ior_term_ior=\count86 20 | \c_log_iow=\count87 21 | \l_iow_line_count_int=\count88 22 | \l__iow_line_target_int=\count89 23 | \l__iow_one_indent_int=\count90 24 | \l__iow_indent_int=\count91 25 | \c_zero_dim=\dimen102 26 | \c_max_dim=\dimen103 27 | \l_tmpa_dim=\dimen104 28 | \l_tmpb_dim=\dimen105 29 | \g_tmpa_dim=\dimen106 30 | \g_tmpb_dim=\dimen107 31 | \c_zero_skip=\skip41 32 | \c_max_skip=\skip42 33 | \l_tmpa_skip=\skip43 34 | \l_tmpb_skip=\skip44 35 | \g_tmpa_skip=\skip45 36 | \g_tmpb_skip=\skip46 37 | \c_zero_muskip=\muskip10 38 | \c_max_muskip=\muskip11 39 | \l_tmpa_muskip=\muskip12 40 | \l_tmpb_muskip=\muskip13 41 | \g_tmpa_muskip=\muskip14 42 | \g_tmpb_muskip=\muskip15 43 | \l_keys_choice_int=\count92 44 | \l__intarray_loop_int=\count93 45 | \c__intarray_sp_dim=\dimen108 46 | \g__intarray_font_int=\count94 47 | \c__fp_leading_shift_int=\count95 48 | \c__fp_middle_shift_int=\count96 49 | \c__fp_trailing_shift_int=\count97 50 | \c__fp_big_leading_shift_int=\count98 51 | \c__fp_big_middle_shift_int=\count99 52 | \c__fp_big_trailing_shift_int=\count100 53 | \c__fp_Bigg_leading_shift_int=\count101 54 | \c__fp_Bigg_middle_shift_int=\count102 55 | \c__fp_Bigg_trailing_shift_int=\count103 56 | \g__fp_array_int=\count104 57 | \l__fp_array_loop_int=\count105 58 | \l__sort_length_int=\count106 59 | \l__sort_min_int=\count107 60 | \l__sort_top_int=\count108 61 | \l__sort_max_int=\count109 62 | \l__sort_true_max_int=\count110 63 | \l__sort_block_int=\count111 64 | \l__sort_begin_int=\count112 65 | \l__sort_end_int=\count113 66 | \l__sort_A_int=\count114 67 | \l__sort_B_int=\count115 68 | \l__sort_C_int=\count116 69 | \l__tl_analysis_normal_int=\count117 70 | \l__tl_analysis_index_int=\count118 71 | \l__tl_analysis_nesting_int=\count119 72 | \l__tl_analysis_type_int=\count120 73 | \l__regex_internal_a_int=\count121 74 | \l__regex_internal_b_int=\count122 75 | \l__regex_internal_c_int=\count123 76 | \l__regex_balance_int=\count124 77 | \l__regex_group_level_int=\count125 78 | \l__regex_mode_int=\count126 79 | \c__regex_cs_in_class_mode_int=\count127 80 | \c__regex_cs_mode_int=\count128 81 | \l__regex_catcodes_int=\count129 82 | \l__regex_default_catcodes_int=\count130 83 | \c__regex_catcode_L_int=\count131 84 | \c__regex_catcode_O_int=\count132 85 | \c__regex_catcode_A_int=\count133 86 | \c__regex_all_catcodes_int=\count134 87 | \l__regex_show_lines_int=\count135 88 | \l__regex_min_state_int=\count136 89 | \l__regex_max_state_int=\count137 90 | \l__regex_left_state_int=\count138 91 | \l__regex_right_state_int=\count139 92 | \l__regex_capturing_group_int=\count140 93 | \l__regex_min_pos_int=\count141 94 | \l__regex_max_pos_int=\count142 95 | \l__regex_curr_pos_int=\count143 96 | \l__regex_start_pos_int=\count144 97 | \l__regex_success_pos_int=\count145 98 | \l__regex_curr_char_int=\count146 99 | \l__regex_curr_catcode_int=\count147 100 | \l__regex_last_char_int=\count148 101 | \l__regex_case_changed_char_int=\count149 102 | \l__regex_curr_state_int=\count150 103 | \l__regex_step_int=\count151 104 | \l__regex_min_active_int=\count152 105 | \l__regex_max_active_int=\count153 106 | \l__regex_replacement_csnames_int=\count154 107 | \l__regex_match_count_int=\count155 108 | \l__regex_min_submatch_int=\count156 109 | \l__regex_submatch_int=\count157 110 | \l__regex_zeroth_submatch_int=\count158 111 | \g__regex_trace_regex_int=\count159 112 | \c_empty_box=\box27 113 | \l_tmpa_box=\box28 114 | \l_tmpb_box=\box29 115 | \g_tmpa_box=\box30 116 | \g_tmpb_box=\box31 117 | \l__box_top_dim=\dimen109 118 | \l__box_bottom_dim=\dimen110 119 | \l__box_left_dim=\dimen111 120 | \l__box_right_dim=\dimen112 121 | \l__box_top_new_dim=\dimen113 122 | \l__box_bottom_new_dim=\dimen114 123 | \l__box_left_new_dim=\dimen115 124 | \l__box_right_new_dim=\dimen116 125 | \l__box_internal_box=\box32 126 | \l__coffin_internal_box=\box33 127 | \l__coffin_internal_dim=\dimen117 128 | \l__coffin_offset_x_dim=\dimen118 129 | \l__coffin_offset_y_dim=\dimen119 130 | \l__coffin_x_dim=\dimen120 131 | \l__coffin_y_dim=\dimen121 132 | \l__coffin_x_prime_dim=\dimen122 133 | \l__coffin_y_prime_dim=\dimen123 134 | \c_empty_coffin=\box34 135 | \l__coffin_aligned_coffin=\box35 136 | \l__coffin_aligned_internal_coffin=\box36 137 | \l_tmpa_coffin=\box37 138 | \l_tmpb_coffin=\box38 139 | \g_tmpa_coffin=\box39 140 | \g_tmpb_coffin=\box40 141 | \l__coffin_bounding_shift_dim=\dimen124 142 | \l__coffin_left_corner_dim=\dimen125 143 | \l__coffin_right_corner_dim=\dimen126 144 | \l__coffin_bottom_corner_dim=\dimen127 145 | \l__coffin_top_corner_dim=\dimen128 146 | \l__coffin_scaled_total_height_dim=\dimen129 147 | \l__coffin_scaled_width_dim=\dimen130 148 | \c__coffin_empty_coffin=\box41 149 | \l__coffin_display_coffin=\box42 150 | \l__coffin_display_coord_coffin=\box43 151 | \l__coffin_display_pole_coffin=\box44 152 | \l__coffin_display_offset_dim=\dimen131 153 | \l__coffin_display_x_dim=\dimen132 154 | \l__coffin_display_y_dim=\dimen133 155 | \g__file_internal_ior=\read1 156 | \l__seq_internal_a_int=\count160 157 | \l__seq_internal_b_int=\count161 158 | \c__deprecation_minus_one=\count162 159 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def 160 | File: l3xdvipdfmx.def 2019-04-06 v L3 Experimental driver: xdvipdfmx 161 | \g__driver_image_int=\count163 162 | \l__driver_pdf_tmp_box=\box45 163 | \g__driver_pdf_object_int=\count164 164 | \g__driver_pdf_annotation_int=\count165 165 | )) 166 | Document Class: ctexart 2019/04/07 v2.4.15 Chinese adapter for class article (CTEX) 167 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 168 | Package: xparse 2019-05-03 L3 Experimental document command parser 169 | \l__xparse_current_arg_int=\count166 170 | \g__xparse_grabber_int=\count167 171 | \l__xparse_m_args_int=\count168 172 | \l__xparse_v_nesting_int=\count169 173 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 174 | Package: l3keys2e 2019-05-03 LaTeX2e option processing using LaTeX3 keys 175 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexhook.sty 176 | Package: ctexhook 2019/04/07 v2.4.15 Document and package hooks (CTEX) 177 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexpatch.sty 178 | Package: ctexpatch 2019/04/07 v2.4.15 Patching commands (CTEX) 179 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fix-cm.sty 180 | Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX 181 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/ts1enc.def 182 | File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file 183 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ms/everysel.sty 184 | Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS) 185 | ) 186 | \l__ctex_tmp_int=\count170 187 | \l__ctex_tmp_box=\box46 188 | \l__ctex_tmp_dim=\dimen134 189 | \g__ctex_section_depth_int=\count171 190 | \g__ctex_font_size_int=\count172 191 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 192 | File: ctexopts.cfg 2019/04/07 v2.4.15 Option configuration file (CTEX) 193 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/article.cls 194 | Document Class: article 2018/09/03 v1.4i Standard LaTeX document class 195 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/size10.clo 196 | File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) 197 | ) 198 | \c@part=\count173 199 | \c@section=\count174 200 | \c@subsection=\count175 201 | \c@subsubsection=\count176 202 | \c@paragraph=\count177 203 | \c@subparagraph=\count178 204 | \c@figure=\count179 205 | \c@table=\count180 206 | \abovecaptionskip=\skip47 207 | \belowcaptionskip=\skip48 208 | \bibindent=\dimen135 209 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def 210 | File: ctex-engine-xetex.def 2019/04/07 v2.4.15 XeLaTeX adapter (CTEX) 211 | (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.sty 212 | Package: xeCJK 2019/04/07 v3.7.2 Typesetting CJK scripts with XeLaTeX 213 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty 214 | Package: xtemplate 2019-05-03 L3 Experimental prototype document functions 215 | \l__xtemplate_tmp_dim=\dimen136 216 | \l__xtemplate_tmp_int=\count181 217 | \l__xtemplate_tmp_muskip=\muskip16 218 | \l__xtemplate_tmp_skip=\skip49 219 | ) 220 | \l__xeCJK_tmp_int=\count182 221 | \l__xeCJK_tmp_box=\box47 222 | \l__xeCJK_tmp_dim=\dimen137 223 | \l__xeCJK_tmp_skip=\skip50 224 | \g__xeCJK_space_factor_int=\count183 225 | \l__xeCJK_begin_int=\count184 226 | \l__xeCJK_end_int=\count185 227 | \c__xeCJK_CJK_class_int=\XeTeXcharclass1 228 | \c__xeCJK_FullLeft_class_int=\XeTeXcharclass2 229 | \c__xeCJK_FullRight_class_int=\XeTeXcharclass3 230 | \c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4 231 | \c__xeCJK_HalfRight_class_int=\XeTeXcharclass5 232 | \c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6 233 | \c__xeCJK_CM_class_int=\XeTeXcharclass7 234 | \c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8 235 | \l__xeCJK_last_skip=\skip51 236 | \g__xeCJK_node_int=\count186 237 | \c__xeCJK_CJK_node_dim=\dimen138 238 | \c__xeCJK_CJK-space_node_dim=\dimen139 239 | \c__xeCJK_default_node_dim=\dimen140 240 | \c__xeCJK_default-space_node_dim=\dimen141 241 | \c__xeCJK_CJK-widow_node_dim=\dimen142 242 | \c__xeCJK_normalspace_node_dim=\dimen143 243 | \l__xeCJK_ccglue_skip=\skip52 244 | \l__xeCJK_ecglue_skip=\skip53 245 | \l__xeCJK_punct_kern_skip=\skip54 246 | \l__xeCJK_last_penalty_int=\count187 247 | \l__xeCJK_last_bound_dim=\dimen144 248 | \l__xeCJK_last_kern_dim=\dimen145 249 | \l__xeCJK_widow_penalty_int=\count188 250 | 251 | Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0 252 | (xtemplate) argument(s) on line 2352. 253 | 254 | \l__xeCJK_fixed_punct_width_dim=\dimen146 255 | \l__xeCJK_mixed_punct_width_dim=\dimen147 256 | \l__xeCJK_middle_punct_width_dim=\dimen148 257 | \l__xeCJK_fixed_margin_width_dim=\dimen149 258 | \l__xeCJK_mixed_margin_width_dim=\dimen150 259 | \l__xeCJK_middle_margin_width_dim=\dimen151 260 | \l__xeCJK_bound_punct_width_dim=\dimen152 261 | \l__xeCJK_bound_margin_width_dim=\dimen153 262 | \l__xeCJK_margin_minimum_dim=\dimen154 263 | \l__xeCJK_kerning_total_width_dim=\dimen155 264 | \l__xeCJK_same_align_margin_dim=\dimen156 265 | \l__xeCJK_different_align_margin_dim=\dimen157 266 | \l__xeCJK_kerning_margin_width_dim=\dimen158 267 | \l__xeCJK_kerning_margin_minimum_dim=\dimen159 268 | \l__xeCJK_bound_dim=\dimen160 269 | \l__xeCJK_reverse_bound_dim=\dimen161 270 | \l__xeCJK_minimum_bound_dim=\dimen162 271 | \l__xeCJK_kerning_margin_dim=\dimen163 272 | \l__xeCJK_original_margin_dim=\dimen164 273 | \g__xeCJK_family_int=\count189 274 | \l__xeCJK_fam_int=\count190 275 | \g__xeCJK_fam_allocation_int=\count191 276 | \l__xeCJK_verb_case_int=\count192 277 | \l__xeCJK_verb_exspace_skip=\skip55 278 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.sty 279 | Package: fontspec 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 280 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty 281 | Package: fontspec-xetex 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 282 | \l__fontspec_script_int=\count193 283 | \l__fontspec_language_int=\count194 284 | \l__fontspec_strnum_int=\count195 285 | \l__fontspec_tmp_int=\count196 286 | \l__fontspec_tmpa_int=\count197 287 | \l__fontspec_tmpb_int=\count198 288 | \l__fontspec_tmpc_int=\count199 289 | \l__fontspec_em_int=\count266 290 | \l__fontspec_emdef_int=\count267 291 | \l__fontspec_strong_int=\count268 292 | \l__fontspec_strongdef_int=\count269 293 | \l__fontspec_tmpa_dim=\dimen165 294 | \l__fontspec_tmpb_dim=\dimen166 295 | \l__fontspec_tmpc_dim=\dimen167 296 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fontenc.sty 297 | Package: fontenc 2018/08/11 v2.0j Standard LaTeX package 298 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/tuenc.def 299 | File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file 300 | LaTeX Font Info: Redeclaring font encoding TU on input line 82. 301 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.cfg) 302 | LaTeX Info: Redefining \itshape on input line 4051. 303 | LaTeX Info: Redefining \slshape on input line 4056. 304 | LaTeX Info: Redefining \scshape on input line 4061. 305 | LaTeX Info: Redefining \upshape on input line 4066. 306 | LaTeX Info: Redefining \em on input line 4096. 307 | LaTeX Info: Redefining \emph on input line 4121. 308 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg 309 | File: xeCJK.cfg 2019/04/07 v3.7.2 Configuration file for xeCJK package 310 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty 311 | Package: xeCJKfntef 2019/04/07 v3.7.2 xeCJK font effect 312 | (/usr/local/texlive/2019/texmf-dist/tex/generic/ulem/ulem.sty 313 | \UL@box=\box48 314 | \UL@hyphenbox=\box49 315 | \UL@skip=\skip56 316 | \UL@hook=\toks14 317 | \UL@height=\dimen168 318 | \UL@pe=\count270 319 | \UL@pixel=\dimen169 320 | \ULC@box=\box50 321 | Package: ulem 2012/05/18 322 | \ULdepth=\dimen170 323 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty 324 | Package: CJKfntef 2015/04/18 4.8.4 325 | \CJK@fntefSkip=\skip57 326 | \CJK@nest=\count271 327 | \CJK@fntefDimen=\dimen171 328 | \CJK@underdotBox=\box51 329 | \CJK@ULbox=\box52 330 | \CJK@underanyskip=\dimen172 331 | ) 332 | \l__xeCJK_space_skip=\skip58 333 | \c__xeCJK_ulem-begin_node_dim=\dimen173 334 | \c__xeCJK_null_box=\box53 335 | \l__xeCJK_fntef_box=\box54 336 | \l__xeCJK_under_symbol_box=\box55 337 | \c__xeCJK_filll_skip=\skip59 338 | ) 339 | \ccwd=\dimen174 340 | \l__ctex_ccglue_skip=\skip60 341 | ) 342 | \l__ctex_ziju_dim=\dimen175 343 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber.sty 344 | Package: zhnumber 2019/04/07 v2.7 Typesetting numbers with Chinese glyphs 345 | \l__zhnum_scale_int=\count272 346 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 347 | File: zhnumber-utf8.cfg 2019/04/07 v2.7 Chinese numerals with UTF8 encoding 348 | )) 349 | \l__ctex_heading_skip=\skip61 350 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-article.def 351 | File: ctex-scheme-chinese-article.def 2019/04/07 v2.4.15 Chinese scheme for article (CTEX) 352 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 353 | File: ctex-name-utf8.cfg 2019/04/07 v2.4.15 Caption with encoding UTF8 (CTEX) 354 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctex-c5size.clo 355 | File: ctex-c5size.clo 2019/04/07 v2.4.15 c5size option (CTEX) 356 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-mac.def 357 | File: ctex-fontset-mac.def 2019/04/07 v2.4.15 Mac OS X fonts definition (CTEX) 358 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-macnew.def 359 | File: ctex-fontset-macnew.def 2019/04/07 v2.4.15 Mac OS X fonts definition for El Capitan or later version (CTEX) 360 | 361 | 362 | Package fontspec Warning: Font "Songti SC Light" does not contain requested 363 | (fontspec) Script "CJK". 364 | 365 | 366 | Package fontspec Info: Font family 'SongtiSC(0)' created for font 'Songti SC' 367 | (fontspec) with options [Script={CJK},UprightFont={* 368 | (fontspec) Light},BoldItalicFont={Kaiti SC Bold},BoldFont={* 369 | (fontspec) Bold},ItalicFont={Kaiti SC}]. 370 | (fontspec) 371 | (fontspec) This font family consists of the following NFSS 372 | (fontspec) series/shapes: 373 | (fontspec) 374 | (fontspec) - 'normal' (m/n) with NFSS spec.: <->"Songti SC 375 | (fontspec) Light/OT" 376 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 377 | (fontspec) - 'bold' (bx/n) with NFSS spec.: <->"Songti SC Bold/OT" 378 | (fontspec) - 'bold small caps' (bx/sc) with NFSS spec.: 379 | (fontspec) - 'italic' (m/it) with NFSS spec.: <->"Kaiti SC/OT" 380 | (fontspec) - 'italic small caps' (m/itsc) with NFSS spec.: 381 | (fontspec) - 'bold italic' (bx/it) with NFSS spec.: <->"Kaiti SC 382 | (fontspec) Bold/OT" 383 | (fontspec) - 'bold italic small caps' (bx/itsc) with NFSS spec.: 384 | 385 | ))) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex.cfg 386 | File: ctex.cfg 2019/04/07 v2.4.15 Configuration file (CTEX) 387 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/graphics/graphicx.sty 388 | Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) 389 | (/usr/local/texlive/2019/texmf-dist/tex/latex/graphics/keyval.sty 390 | Package: keyval 2014/10/28 v1.15 key=value parser (DPC) 391 | \KV@toks@=\toks15 392 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/graphics/graphics.sty 393 | Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) 394 | (/usr/local/texlive/2019/texmf-dist/tex/latex/graphics/trig.sty 395 | Package: trig 2016/01/03 v1.10 sin cos tan (DPC) 396 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/graphics-cfg/graphics.cfg 397 | File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration 398 | ) 399 | Package graphics Info: Driver file: xetex.def on input line 99. 400 | (/usr/local/texlive/2019/texmf-dist/tex/latex/graphics-def/xetex.def 401 | File: xetex.def 2017/06/24 v5.0h Graphics/color driver for xetex 402 | )) 403 | \Gin@req@height=\dimen176 404 | \Gin@req@width=\dimen177 405 | ) (./5.aux) 406 | \openout1 = `5.aux'. 407 | 408 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 38. 409 | LaTeX Font Info: ... okay on input line 38. 410 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 38. 411 | LaTeX Font Info: ... okay on input line 38. 412 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 38. 413 | LaTeX Font Info: ... okay on input line 38. 414 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 38. 415 | LaTeX Font Info: ... okay on input line 38. 416 | LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 38. 417 | LaTeX Font Info: ... okay on input line 38. 418 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 38. 419 | LaTeX Font Info: ... okay on input line 38. 420 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 38. 421 | LaTeX Font Info: ... okay on input line 38. 422 | LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 38. 423 | LaTeX Font Info: ... okay on input line 38. 424 | ABD: EverySelectfont initializing macros 425 | LaTeX Info: Redefining \selectfont on input line 38. 426 | 427 | Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid 428 | (fontspec) this). 429 | 430 | \symlegacymaths=\mathgroup4 431 | LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' 432 | (Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 38. 433 | LaTeX Font Info: Redeclaring math accent \acute on input line 38. 434 | LaTeX Font Info: Redeclaring math accent \grave on input line 38. 435 | LaTeX Font Info: Redeclaring math accent \ddot on input line 38. 436 | LaTeX Font Info: Redeclaring math accent \tilde on input line 38. 437 | LaTeX Font Info: Redeclaring math accent \bar on input line 38. 438 | LaTeX Font Info: Redeclaring math accent \breve on input line 38. 439 | LaTeX Font Info: Redeclaring math accent \check on input line 38. 440 | LaTeX Font Info: Redeclaring math accent \hat on input line 38. 441 | LaTeX Font Info: Redeclaring math accent \dot on input line 38. 442 | LaTeX Font Info: Redeclaring math accent \mathring on input line 38. 443 | LaTeX Font Info: Redeclaring math symbol \colon on input line 38. 444 | LaTeX Font Info: Redeclaring math symbol \Gamma on input line 38. 445 | LaTeX Font Info: Redeclaring math symbol \Delta on input line 38. 446 | LaTeX Font Info: Redeclaring math symbol \Theta on input line 38. 447 | LaTeX Font Info: Redeclaring math symbol \Lambda on input line 38. 448 | LaTeX Font Info: Redeclaring math symbol \Xi on input line 38. 449 | LaTeX Font Info: Redeclaring math symbol \Pi on input line 38. 450 | LaTeX Font Info: Redeclaring math symbol \Sigma on input line 38. 451 | LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 38. 452 | LaTeX Font Info: Redeclaring math symbol \Phi on input line 38. 453 | LaTeX Font Info: Redeclaring math symbol \Psi on input line 38. 454 | LaTeX Font Info: Redeclaring math symbol \Omega on input line 38. 455 | LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 38. 456 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 38. 457 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 458 | (Font) `operators' in the math version `normal' on input line 38. 459 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 460 | (Font) OT1/cmr/m/n --> TU/lmr/m/n on input line 38. 461 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 462 | (Font) `operators' in the math version `bold' on input line 38. 463 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 464 | (Font) OT1/cmr/bx/n --> TU/lmr/m/n on input line 38. 465 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 466 | (Font) TU/lmr/m/n --> TU/lmr/m/n on input line 38. 467 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 468 | (Font) OT1/cmr/m/it --> TU/lmr/m/it on input line 38. 469 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 470 | (Font) OT1/cmr/bx/n --> TU/lmr/bx/n on input line 38. 471 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 472 | (Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 38. 473 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 474 | (Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 38. 475 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 476 | (Font) TU/lmr/m/n --> TU/lmr/bx/n on input line 38. 477 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 478 | (Font) OT1/cmr/bx/it --> TU/lmr/bx/it on input line 38. 479 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 480 | (Font) OT1/cmss/bx/n --> TU/lmss/bx/n on input line 38. 481 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 482 | (Font) OT1/cmtt/m/n --> TU/lmtt/bx/n on input line 38. 483 | LaTeX Font Info: External font `cmex10' loaded for size 484 | (Font) <10.53937> on input line 41. 485 | LaTeX Font Info: External font `cmex10' loaded for size 486 | (Font) <7> on input line 41. 487 | LaTeX Font Info: External font `cmex10' loaded for size 488 | (Font) <5> on input line 41. 489 | File: fig/st_250.png Graphic file (type bmp) 490 | 491 | File: fig/thchs(1).png Graphic file (type bmp) 492 | 493 | File: fig/thchs(2).png Graphic file (type bmp) 494 | 495 | 496 | 497 | LaTeX Warning: `h' float specifier changed to `ht'. 498 | 499 | File: fig/vctk.png Graphic file (type bmp) 500 | 501 | 502 | LaTeX Warning: `h' float specifier changed to `ht'. 503 | 504 | File: fig/thchs(3).png Graphic file (type bmp) 505 | 506 | 507 | LaTeX Warning: `h' float specifier changed to `ht'. 508 | 509 | [1 510 | 511 | ] [2] (./5.aux) ) 512 | Here is how much of TeX's memory you used: 513 | 16229 strings out of 492916 514 | 381144 string characters out of 6133345 515 | 457327 words of memory out of 5000000 516 | 20188 multiletter control sequences out of 15000+600000 517 | 533464 words of font info for 41 fonts, out of 8000000 for 9000 518 | 1348 hyphenation exceptions out of 8191 519 | 60i,8n,73p,400b,446s stack positions out of 5000i,500n,10000p,200000b,80000s 520 | 521 | Output written on 5.pdf (2 pages). 522 | -------------------------------------------------------------------------------- /lesson5/5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson5/5.pdf -------------------------------------------------------------------------------- /lesson5/5.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson5/5.synctex.gz -------------------------------------------------------------------------------- /lesson5/5.tex: -------------------------------------------------------------------------------- 1 | \documentclass{ctexart} 2 | \usepackage{graphicx} 3 | \graphicspath{{fig/}} 4 | % \usepackage{caption} 5 | % \usepackage{subcaption} 6 | 7 | % 标题控制(caption,bicaption等宏包) 8 | % 并排与子图表(subcaption,subfigure,floatrow等宏包) 9 | % 绕排(picinpar,wrapfig等宏包) 10 | 11 | % \begin{tabular}[<垂直对齐方式>]{<列格式说明>} 12 | % <表项> & <表项> & <表项> & ... & <表项> \\ 13 | % ...... 14 | % \end{tabular} 15 | % 用\\表示换行 16 | % 用&表示不同列 17 | % l-列左对齐 18 | % c-列居中对齐 19 | % r-列右对齐 20 | % p{<宽>}-列宽度固定,超过宽度的自动换行 21 | 22 | % 浮动体 23 | % 实现灵活分页(避免无法分割的内容产生的页面留白) 24 | % 给图表添加标题 25 | % 交叉引用 26 | 27 | % figure环境(table环境与之类似) 28 | % \begin{figure}[<允许位置>] 29 | % <任意内容> 30 | % \end{figure} 31 | 32 | % <允许位置>参数(默认tbp) 33 | % h,此处(here)-代码所在的上下文位置 34 | % t,页顶(top)-代码所在的页面或之后页面的顶部 35 | % b,底部(buttom)-代码所在的页面或之后页面的底部 36 | % p,独立一页(page)-浮动页面 37 | 38 | \begin{document} 39 | 成绩表见表\ref{table1}。 40 | 41 | \LaTeX{}的插图1: 42 | \begin{figure}[htbp] 43 | \centering 44 | \includegraphics[scale=0.3]{st_250} 45 | \caption{loss of st\_250} 46 | \end{figure} 47 | 48 | 49 | \LaTeX{}的表格1: 50 | \begin{table}[h] 51 | \centering 52 | \caption{成绩表}\label{table1} 53 | \begin{tabular}{|l|c|c|c|r|} 54 | \hline 55 | 姓名 & 语文 & 数学 & 外语 & 备注 \\ 56 | \hline 57 | 张三 & 87 & 100 & 64 & 优秀 \\ 58 | \hline 59 | 李四 & 75 & 88 & 52 & 补考另行通知 \\ 60 | \hline 61 | 王五 & 60 & 90 & 80 & \\ 62 | \hline 63 | \end{tabular} 64 | \end{table} 65 | 66 | \begin{figure}[h] 67 | \centering 68 | \includegraphics[scale=0.3]{thchs(1).png} 69 | \caption{loss of thchs(1)} 70 | \end{figure} 71 | 72 | \begin{figure}[h] 73 | \centering 74 | \includegraphics[scale=0.3]{thchs(2).png} 75 | \caption{loss of thchs(2)} 76 | \end{figure} 77 | 78 | \begin{figure}[h] 79 | \centering 80 | \includegraphics[scale=0.3]{vctk.png} 81 | \caption{loss of vctk} 82 | \end{figure} 83 | 84 | \begin{figure}[h] 85 | \centering 86 | \includegraphics[scale=0.3]{thchs(3).png} 87 | \caption{loss of thchs(3)} 88 | \end{figure} 89 | 90 | \end{document} -------------------------------------------------------------------------------- /lesson5/fig/st_250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson5/fig/st_250.png -------------------------------------------------------------------------------- /lesson5/fig/thchs(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson5/fig/thchs(1).png -------------------------------------------------------------------------------- /lesson5/fig/thchs(2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson5/fig/thchs(2).png -------------------------------------------------------------------------------- /lesson5/fig/thchs(3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson5/fig/thchs(3).png -------------------------------------------------------------------------------- /lesson5/fig/vctk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson5/fig/vctk.png -------------------------------------------------------------------------------- /lesson6/6.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \@writefile{toc}{\contentsline {section}{\numberline {1}简介}{1}\protected@file@percent } 3 | \@writefile{toc}{\contentsline {section}{\numberline {2}行内公式}{1}\protected@file@percent } 4 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.1}美元符号}{1}\protected@file@percent } 5 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.2}小括号}{1}\protected@file@percent } 6 | \@writefile{toc}{\contentsline {subsection}{\numberline {2.3}math环境}{1}\protected@file@percent } 7 | \@writefile{toc}{\contentsline {section}{\numberline {3}上下标}{1}\protected@file@percent } 8 | \@writefile{toc}{\contentsline {subsection}{\numberline {3.1}上标}{1}\protected@file@percent } 9 | \@writefile{toc}{\contentsline {subsection}{\numberline {3.2}下标}{1}\protected@file@percent } 10 | \@writefile{toc}{\contentsline {section}{\numberline {4}希腊字母}{1}\protected@file@percent } 11 | \@writefile{toc}{\contentsline {section}{\numberline {5}数学函数}{2}\protected@file@percent } 12 | \@writefile{toc}{\contentsline {section}{\numberline {6}分式}{2}\protected@file@percent } 13 | \@writefile{toc}{\contentsline {section}{\numberline {7}行间公式}{2}\protected@file@percent } 14 | \@writefile{toc}{\contentsline {subsection}{\numberline {7.1}美元符号}{2}\protected@file@percent } 15 | \@writefile{toc}{\contentsline {subsection}{\numberline {7.2}中括号}{2}\protected@file@percent } 16 | \@writefile{toc}{\contentsline {subsection}{\numberline {7.3}displaymath环境}{3}\protected@file@percent } 17 | \@writefile{toc}{\contentsline {subsection}{\numberline {7.4}自动编号公式equation环境}{3}\protected@file@percent } 18 | \newlabel{equ1}{{1}{3}} 19 | \@writefile{toc}{\contentsline {subsection}{\numberline {7.5}不编号公式equation*环境}{3}\protected@file@percent } 20 | \newlabel{equ2}{{7.5}{3}} 21 | -------------------------------------------------------------------------------- /lesson6/6.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019) (preloaded format=xelatex 2020.2.17) 23 FEB 2020 16:37 2 | entering extended mode 3 | restricted \write18 enabled. 4 | file:line:error style messages enabled. 5 | %&-line parsing enabled. 6 | **/Users/obsidian/source/latex_test/lesson6/6 7 | (/Users/obsidian/source/latex_test/lesson6/6.tex 8 | LaTeX2e <2018-12-01> 9 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/article.cls 10 | Document Class: article 2018/09/03 v1.4i Standard LaTeX document class 11 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/size10.clo 12 | File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) 13 | ) 14 | \c@part=\count80 15 | \c@section=\count81 16 | \c@subsection=\count82 17 | \c@subsubsection=\count83 18 | \c@paragraph=\count84 19 | \c@subparagraph=\count85 20 | \c@figure=\count86 21 | \c@table=\count87 22 | \abovecaptionskip=\skip41 23 | \belowcaptionskip=\skip42 24 | \bibindent=\dimen102 25 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctex.sty (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3.sty 26 | Package: expl3 2019-05-07 L3 programming layer (loader) 27 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3-code.tex 28 | Package: expl3 2019-05-07 L3 programming layer (code) 29 | \c_max_int=\count88 30 | \l_tmpa_int=\count89 31 | \l_tmpb_int=\count90 32 | \g_tmpa_int=\count91 33 | \g_tmpb_int=\count92 34 | \g__kernel_prg_map_int=\count93 35 | \c__ior_term_ior=\count94 36 | \c_log_iow=\count95 37 | \l_iow_line_count_int=\count96 38 | \l__iow_line_target_int=\count97 39 | \l__iow_one_indent_int=\count98 40 | \l__iow_indent_int=\count99 41 | \c_zero_dim=\dimen103 42 | \c_max_dim=\dimen104 43 | \l_tmpa_dim=\dimen105 44 | \l_tmpb_dim=\dimen106 45 | \g_tmpa_dim=\dimen107 46 | \g_tmpb_dim=\dimen108 47 | \c_zero_skip=\skip43 48 | \c_max_skip=\skip44 49 | \l_tmpa_skip=\skip45 50 | \l_tmpb_skip=\skip46 51 | \g_tmpa_skip=\skip47 52 | \g_tmpb_skip=\skip48 53 | \c_zero_muskip=\muskip10 54 | \c_max_muskip=\muskip11 55 | \l_tmpa_muskip=\muskip12 56 | \l_tmpb_muskip=\muskip13 57 | \g_tmpa_muskip=\muskip14 58 | \g_tmpb_muskip=\muskip15 59 | \l_keys_choice_int=\count100 60 | \l__intarray_loop_int=\count101 61 | \c__intarray_sp_dim=\dimen109 62 | \g__intarray_font_int=\count102 63 | \c__fp_leading_shift_int=\count103 64 | \c__fp_middle_shift_int=\count104 65 | \c__fp_trailing_shift_int=\count105 66 | \c__fp_big_leading_shift_int=\count106 67 | \c__fp_big_middle_shift_int=\count107 68 | \c__fp_big_trailing_shift_int=\count108 69 | \c__fp_Bigg_leading_shift_int=\count109 70 | \c__fp_Bigg_middle_shift_int=\count110 71 | \c__fp_Bigg_trailing_shift_int=\count111 72 | \g__fp_array_int=\count112 73 | \l__fp_array_loop_int=\count113 74 | \l__sort_length_int=\count114 75 | \l__sort_min_int=\count115 76 | \l__sort_top_int=\count116 77 | \l__sort_max_int=\count117 78 | \l__sort_true_max_int=\count118 79 | \l__sort_block_int=\count119 80 | \l__sort_begin_int=\count120 81 | \l__sort_end_int=\count121 82 | \l__sort_A_int=\count122 83 | \l__sort_B_int=\count123 84 | \l__sort_C_int=\count124 85 | \l__tl_analysis_normal_int=\count125 86 | \l__tl_analysis_index_int=\count126 87 | \l__tl_analysis_nesting_int=\count127 88 | \l__tl_analysis_type_int=\count128 89 | \l__regex_internal_a_int=\count129 90 | \l__regex_internal_b_int=\count130 91 | \l__regex_internal_c_int=\count131 92 | \l__regex_balance_int=\count132 93 | \l__regex_group_level_int=\count133 94 | \l__regex_mode_int=\count134 95 | \c__regex_cs_in_class_mode_int=\count135 96 | \c__regex_cs_mode_int=\count136 97 | \l__regex_catcodes_int=\count137 98 | \l__regex_default_catcodes_int=\count138 99 | \c__regex_catcode_L_int=\count139 100 | \c__regex_catcode_O_int=\count140 101 | \c__regex_catcode_A_int=\count141 102 | \c__regex_all_catcodes_int=\count142 103 | \l__regex_show_lines_int=\count143 104 | \l__regex_min_state_int=\count144 105 | \l__regex_max_state_int=\count145 106 | \l__regex_left_state_int=\count146 107 | \l__regex_right_state_int=\count147 108 | \l__regex_capturing_group_int=\count148 109 | \l__regex_min_pos_int=\count149 110 | \l__regex_max_pos_int=\count150 111 | \l__regex_curr_pos_int=\count151 112 | \l__regex_start_pos_int=\count152 113 | \l__regex_success_pos_int=\count153 114 | \l__regex_curr_char_int=\count154 115 | \l__regex_curr_catcode_int=\count155 116 | \l__regex_last_char_int=\count156 117 | \l__regex_case_changed_char_int=\count157 118 | \l__regex_curr_state_int=\count158 119 | \l__regex_step_int=\count159 120 | \l__regex_min_active_int=\count160 121 | \l__regex_max_active_int=\count161 122 | \l__regex_replacement_csnames_int=\count162 123 | \l__regex_match_count_int=\count163 124 | \l__regex_min_submatch_int=\count164 125 | \l__regex_submatch_int=\count165 126 | \l__regex_zeroth_submatch_int=\count166 127 | \g__regex_trace_regex_int=\count167 128 | \c_empty_box=\box27 129 | \l_tmpa_box=\box28 130 | \l_tmpb_box=\box29 131 | \g_tmpa_box=\box30 132 | \g_tmpb_box=\box31 133 | \l__box_top_dim=\dimen110 134 | \l__box_bottom_dim=\dimen111 135 | \l__box_left_dim=\dimen112 136 | \l__box_right_dim=\dimen113 137 | \l__box_top_new_dim=\dimen114 138 | \l__box_bottom_new_dim=\dimen115 139 | \l__box_left_new_dim=\dimen116 140 | \l__box_right_new_dim=\dimen117 141 | \l__box_internal_box=\box32 142 | \l__coffin_internal_box=\box33 143 | \l__coffin_internal_dim=\dimen118 144 | \l__coffin_offset_x_dim=\dimen119 145 | \l__coffin_offset_y_dim=\dimen120 146 | \l__coffin_x_dim=\dimen121 147 | \l__coffin_y_dim=\dimen122 148 | \l__coffin_x_prime_dim=\dimen123 149 | \l__coffin_y_prime_dim=\dimen124 150 | \c_empty_coffin=\box34 151 | \l__coffin_aligned_coffin=\box35 152 | \l__coffin_aligned_internal_coffin=\box36 153 | \l_tmpa_coffin=\box37 154 | \l_tmpb_coffin=\box38 155 | \g_tmpa_coffin=\box39 156 | \g_tmpb_coffin=\box40 157 | \l__coffin_bounding_shift_dim=\dimen125 158 | \l__coffin_left_corner_dim=\dimen126 159 | \l__coffin_right_corner_dim=\dimen127 160 | \l__coffin_bottom_corner_dim=\dimen128 161 | \l__coffin_top_corner_dim=\dimen129 162 | \l__coffin_scaled_total_height_dim=\dimen130 163 | \l__coffin_scaled_width_dim=\dimen131 164 | \c__coffin_empty_coffin=\box41 165 | \l__coffin_display_coffin=\box42 166 | \l__coffin_display_coord_coffin=\box43 167 | \l__coffin_display_pole_coffin=\box44 168 | \l__coffin_display_offset_dim=\dimen132 169 | \l__coffin_display_x_dim=\dimen133 170 | \l__coffin_display_y_dim=\dimen134 171 | \g__file_internal_ior=\read1 172 | \l__seq_internal_a_int=\count168 173 | \l__seq_internal_b_int=\count169 174 | \c__deprecation_minus_one=\count170 175 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def 176 | File: l3xdvipdfmx.def 2019-04-06 v L3 Experimental driver: xdvipdfmx 177 | \g__driver_image_int=\count171 178 | \l__driver_pdf_tmp_box=\box45 179 | \g__driver_pdf_object_int=\count172 180 | \g__driver_pdf_annotation_int=\count173 181 | )) 182 | Package: ctex 2019/04/07 v2.4.15 Chinese adapter in LaTeX (CTEX) 183 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 184 | Package: xparse 2019-05-03 L3 Experimental document command parser 185 | \l__xparse_current_arg_int=\count174 186 | \g__xparse_grabber_int=\count175 187 | \l__xparse_m_args_int=\count176 188 | \l__xparse_v_nesting_int=\count177 189 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 190 | Package: l3keys2e 2019-05-03 LaTeX2e option processing using LaTeX3 keys 191 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexhook.sty 192 | Package: ctexhook 2019/04/07 v2.4.15 Document and package hooks (CTEX) 193 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexpatch.sty 194 | Package: ctexpatch 2019/04/07 v2.4.15 Patching commands (CTEX) 195 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fix-cm.sty 196 | Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX 197 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/ts1enc.def 198 | File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file 199 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ms/everysel.sty 200 | Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS) 201 | ) 202 | \l__ctex_tmp_int=\count178 203 | \l__ctex_tmp_box=\box46 204 | \l__ctex_tmp_dim=\dimen135 205 | \g__ctex_section_depth_int=\count179 206 | \g__ctex_font_size_int=\count180 207 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 208 | File: ctexopts.cfg 2019/04/07 v2.4.15 Option configuration file (CTEX) 209 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def 210 | File: ctex-engine-xetex.def 2019/04/07 v2.4.15 XeLaTeX adapter (CTEX) 211 | (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.sty 212 | Package: xeCJK 2019/04/07 v3.7.2 Typesetting CJK scripts with XeLaTeX 213 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty 214 | Package: xtemplate 2019-05-03 L3 Experimental prototype document functions 215 | \l__xtemplate_tmp_dim=\dimen136 216 | \l__xtemplate_tmp_int=\count181 217 | \l__xtemplate_tmp_muskip=\muskip16 218 | \l__xtemplate_tmp_skip=\skip49 219 | ) 220 | \l__xeCJK_tmp_int=\count182 221 | \l__xeCJK_tmp_box=\box47 222 | \l__xeCJK_tmp_dim=\dimen137 223 | \l__xeCJK_tmp_skip=\skip50 224 | \g__xeCJK_space_factor_int=\count183 225 | \l__xeCJK_begin_int=\count184 226 | \l__xeCJK_end_int=\count185 227 | \c__xeCJK_CJK_class_int=\XeTeXcharclass1 228 | \c__xeCJK_FullLeft_class_int=\XeTeXcharclass2 229 | \c__xeCJK_FullRight_class_int=\XeTeXcharclass3 230 | \c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4 231 | \c__xeCJK_HalfRight_class_int=\XeTeXcharclass5 232 | \c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6 233 | \c__xeCJK_CM_class_int=\XeTeXcharclass7 234 | \c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8 235 | \l__xeCJK_last_skip=\skip51 236 | \g__xeCJK_node_int=\count186 237 | \c__xeCJK_CJK_node_dim=\dimen138 238 | \c__xeCJK_CJK-space_node_dim=\dimen139 239 | \c__xeCJK_default_node_dim=\dimen140 240 | \c__xeCJK_default-space_node_dim=\dimen141 241 | \c__xeCJK_CJK-widow_node_dim=\dimen142 242 | \c__xeCJK_normalspace_node_dim=\dimen143 243 | \l__xeCJK_ccglue_skip=\skip52 244 | \l__xeCJK_ecglue_skip=\skip53 245 | \l__xeCJK_punct_kern_skip=\skip54 246 | \l__xeCJK_last_penalty_int=\count187 247 | \l__xeCJK_last_bound_dim=\dimen144 248 | \l__xeCJK_last_kern_dim=\dimen145 249 | \l__xeCJK_widow_penalty_int=\count188 250 | 251 | Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0 252 | (xtemplate) argument(s) on line 2352. 253 | 254 | \l__xeCJK_fixed_punct_width_dim=\dimen146 255 | \l__xeCJK_mixed_punct_width_dim=\dimen147 256 | \l__xeCJK_middle_punct_width_dim=\dimen148 257 | \l__xeCJK_fixed_margin_width_dim=\dimen149 258 | \l__xeCJK_mixed_margin_width_dim=\dimen150 259 | \l__xeCJK_middle_margin_width_dim=\dimen151 260 | \l__xeCJK_bound_punct_width_dim=\dimen152 261 | \l__xeCJK_bound_margin_width_dim=\dimen153 262 | \l__xeCJK_margin_minimum_dim=\dimen154 263 | \l__xeCJK_kerning_total_width_dim=\dimen155 264 | \l__xeCJK_same_align_margin_dim=\dimen156 265 | \l__xeCJK_different_align_margin_dim=\dimen157 266 | \l__xeCJK_kerning_margin_width_dim=\dimen158 267 | \l__xeCJK_kerning_margin_minimum_dim=\dimen159 268 | \l__xeCJK_bound_dim=\dimen160 269 | \l__xeCJK_reverse_bound_dim=\dimen161 270 | \l__xeCJK_minimum_bound_dim=\dimen162 271 | \l__xeCJK_kerning_margin_dim=\dimen163 272 | \l__xeCJK_original_margin_dim=\dimen164 273 | \g__xeCJK_family_int=\count189 274 | \l__xeCJK_fam_int=\count190 275 | \g__xeCJK_fam_allocation_int=\count191 276 | \l__xeCJK_verb_case_int=\count192 277 | \l__xeCJK_verb_exspace_skip=\skip55 278 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.sty 279 | Package: fontspec 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 280 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty 281 | Package: fontspec-xetex 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 282 | \l__fontspec_script_int=\count193 283 | \l__fontspec_language_int=\count194 284 | \l__fontspec_strnum_int=\count195 285 | \l__fontspec_tmp_int=\count196 286 | \l__fontspec_tmpa_int=\count197 287 | \l__fontspec_tmpb_int=\count198 288 | \l__fontspec_tmpc_int=\count199 289 | \l__fontspec_em_int=\count266 290 | \l__fontspec_emdef_int=\count267 291 | \l__fontspec_strong_int=\count268 292 | \l__fontspec_strongdef_int=\count269 293 | \l__fontspec_tmpa_dim=\dimen165 294 | \l__fontspec_tmpb_dim=\dimen166 295 | \l__fontspec_tmpc_dim=\dimen167 296 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fontenc.sty 297 | Package: fontenc 2018/08/11 v2.0j Standard LaTeX package 298 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/tuenc.def 299 | File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file 300 | LaTeX Font Info: Redeclaring font encoding TU on input line 82. 301 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.cfg) 302 | LaTeX Info: Redefining \itshape on input line 4051. 303 | LaTeX Info: Redefining \slshape on input line 4056. 304 | LaTeX Info: Redefining \scshape on input line 4061. 305 | LaTeX Info: Redefining \upshape on input line 4066. 306 | LaTeX Info: Redefining \em on input line 4096. 307 | LaTeX Info: Redefining \emph on input line 4121. 308 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg 309 | File: xeCJK.cfg 2019/04/07 v3.7.2 Configuration file for xeCJK package 310 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty 311 | Package: xeCJKfntef 2019/04/07 v3.7.2 xeCJK font effect 312 | (/usr/local/texlive/2019/texmf-dist/tex/generic/ulem/ulem.sty 313 | \UL@box=\box48 314 | \UL@hyphenbox=\box49 315 | \UL@skip=\skip56 316 | \UL@hook=\toks14 317 | \UL@height=\dimen168 318 | \UL@pe=\count270 319 | \UL@pixel=\dimen169 320 | \ULC@box=\box50 321 | Package: ulem 2012/05/18 322 | \ULdepth=\dimen170 323 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty 324 | Package: CJKfntef 2015/04/18 4.8.4 325 | \CJK@fntefSkip=\skip57 326 | \CJK@nest=\count271 327 | \CJK@fntefDimen=\dimen171 328 | \CJK@underdotBox=\box51 329 | \CJK@ULbox=\box52 330 | \CJK@underanyskip=\dimen172 331 | ) 332 | \l__xeCJK_space_skip=\skip58 333 | \c__xeCJK_ulem-begin_node_dim=\dimen173 334 | \c__xeCJK_null_box=\box53 335 | \l__xeCJK_fntef_box=\box54 336 | \l__xeCJK_under_symbol_box=\box55 337 | \c__xeCJK_filll_skip=\skip59 338 | ) 339 | \ccwd=\dimen174 340 | \l__ctex_ccglue_skip=\skip60 341 | ) 342 | \l__ctex_ziju_dim=\dimen175 343 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber.sty 344 | Package: zhnumber 2019/04/07 v2.7 Typesetting numbers with Chinese glyphs 345 | \l__zhnum_scale_int=\count272 346 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 347 | File: zhnumber-utf8.cfg 2019/04/07 v2.7 Chinese numerals with UTF8 encoding 348 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese.def 349 | File: ctex-scheme-chinese.def 2019/04/07 v2.4.15 Chinese scheme for generic (CTEX) 350 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 351 | File: ctex-name-utf8.cfg 2019/04/07 v2.4.15 Caption with encoding UTF8 (CTEX) 352 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/tools/indentfirst.sty 353 | Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC) 354 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctex-c5size.clo 355 | File: ctex-c5size.clo 2019/04/07 v2.4.15 c5size option (CTEX) 356 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-mac.def 357 | File: ctex-fontset-mac.def 2019/04/07 v2.4.15 Mac OS X fonts definition (CTEX) 358 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-macnew.def 359 | File: ctex-fontset-macnew.def 2019/04/07 v2.4.15 Mac OS X fonts definition for El Capitan or later version (CTEX) 360 | 361 | 362 | Package fontspec Warning: Font "Songti SC Light" does not contain requested 363 | (fontspec) Script "CJK". 364 | 365 | 366 | Package fontspec Info: Font family 'SongtiSC(0)' created for font 'Songti SC' 367 | (fontspec) with options [Script={CJK},UprightFont={* 368 | (fontspec) Light},BoldItalicFont={Kaiti SC Bold},BoldFont={* 369 | (fontspec) Bold},ItalicFont={Kaiti SC}]. 370 | (fontspec) 371 | (fontspec) This font family consists of the following NFSS 372 | (fontspec) series/shapes: 373 | (fontspec) 374 | (fontspec) - 'normal' (m/n) with NFSS spec.: <->"Songti SC 375 | (fontspec) Light/OT" 376 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 377 | (fontspec) - 'bold' (bx/n) with NFSS spec.: <->"Songti SC Bold/OT" 378 | (fontspec) - 'bold small caps' (bx/sc) with NFSS spec.: 379 | (fontspec) - 'italic' (m/it) with NFSS spec.: <->"Kaiti SC/OT" 380 | (fontspec) - 'italic small caps' (m/itsc) with NFSS spec.: 381 | (fontspec) - 'bold italic' (bx/it) with NFSS spec.: <->"Kaiti SC 382 | (fontspec) Bold/OT" 383 | (fontspec) - 'bold italic small caps' (bx/itsc) with NFSS spec.: 384 | 385 | ))) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex.cfg 386 | File: ctex.cfg 2019/04/07 v2.4.15 Configuration file (CTEX) 387 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amsmath.sty 388 | Package: amsmath 2018/12/01 v2.17b AMS math features 389 | \@mathmargin=\skip61 390 | 391 | For additional information on amsmath, use the `?' option. 392 | (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amstext.sty 393 | Package: amstext 2000/06/29 v2.01 AMS text 394 | (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amsgen.sty 395 | File: amsgen.sty 1999/11/30 v2.0 generic functions 396 | \@emptytoks=\toks15 397 | \ex@=\dimen176 398 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amsbsy.sty 399 | Package: amsbsy 1999/11/29 v1.2d Bold Symbols 400 | \pmbraise@=\dimen177 401 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amsopn.sty 402 | Package: amsopn 2016/03/08 v2.02 operator names 403 | ) 404 | \inf@bad=\count273 405 | LaTeX Info: Redefining \frac on input line 223. 406 | \uproot@=\count274 407 | \leftroot@=\count275 408 | LaTeX Info: Redefining \overline on input line 385. 409 | \classnum@=\count276 410 | \DOTSCASE@=\count277 411 | LaTeX Info: Redefining \ldots on input line 482. 412 | LaTeX Info: Redefining \dots on input line 485. 413 | LaTeX Info: Redefining \cdots on input line 606. 414 | \Mathstrutbox@=\box56 415 | \strutbox@=\box57 416 | \big@size=\dimen178 417 | LaTeX Font Info: Redeclaring font encoding OML on input line 729. 418 | LaTeX Font Info: Redeclaring font encoding OMS on input line 730. 419 | \macc@depth=\count278 420 | \c@MaxMatrixCols=\count279 421 | \dotsspace@=\muskip17 422 | \c@parentequation=\count280 423 | \dspbrk@lvl=\count281 424 | \tag@help=\toks16 425 | \row@=\count282 426 | \column@=\count283 427 | \maxfields@=\count284 428 | \andhelp@=\toks17 429 | \eqnshift@=\dimen179 430 | \alignsep@=\dimen180 431 | \tagshift@=\dimen181 432 | \tagwidth@=\dimen182 433 | \totwidth@=\dimen183 434 | \lineht@=\dimen184 435 | \@envbody=\toks18 436 | \multlinegap=\skip62 437 | \multlinetaggap=\skip63 438 | \mathdisplay@stack=\toks19 439 | LaTeX Info: Redefining \[ on input line 2844. 440 | LaTeX Info: Redefining \] on input line 2845. 441 | ) (./6.aux) 442 | \openout1 = `6.aux'. 443 | 444 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 5. 445 | LaTeX Font Info: ... okay on input line 5. 446 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 5. 447 | LaTeX Font Info: ... okay on input line 5. 448 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 5. 449 | LaTeX Font Info: ... okay on input line 5. 450 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 5. 451 | LaTeX Font Info: ... okay on input line 5. 452 | LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 5. 453 | LaTeX Font Info: ... okay on input line 5. 454 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 5. 455 | LaTeX Font Info: ... okay on input line 5. 456 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 5. 457 | LaTeX Font Info: ... okay on input line 5. 458 | LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 5. 459 | LaTeX Font Info: ... okay on input line 5. 460 | ABD: EverySelectfont initializing macros 461 | LaTeX Info: Redefining \selectfont on input line 5. 462 | 463 | Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid 464 | (fontspec) this). 465 | 466 | \symlegacymaths=\mathgroup4 467 | LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' 468 | (Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 5. 469 | LaTeX Font Info: Redeclaring math accent \acute on input line 5. 470 | LaTeX Font Info: Redeclaring math accent \grave on input line 5. 471 | LaTeX Font Info: Redeclaring math accent \ddot on input line 5. 472 | LaTeX Font Info: Redeclaring math accent \tilde on input line 5. 473 | LaTeX Font Info: Redeclaring math accent \bar on input line 5. 474 | LaTeX Font Info: Redeclaring math accent \breve on input line 5. 475 | LaTeX Font Info: Redeclaring math accent \check on input line 5. 476 | LaTeX Font Info: Redeclaring math accent \hat on input line 5. 477 | LaTeX Font Info: Redeclaring math accent \dot on input line 5. 478 | LaTeX Font Info: Redeclaring math accent \mathring on input line 5. 479 | LaTeX Font Info: Redeclaring math symbol \Gamma on input line 5. 480 | LaTeX Font Info: Redeclaring math symbol \Delta on input line 5. 481 | LaTeX Font Info: Redeclaring math symbol \Theta on input line 5. 482 | LaTeX Font Info: Redeclaring math symbol \Lambda on input line 5. 483 | LaTeX Font Info: Redeclaring math symbol \Xi on input line 5. 484 | LaTeX Font Info: Redeclaring math symbol \Pi on input line 5. 485 | LaTeX Font Info: Redeclaring math symbol \Sigma on input line 5. 486 | LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 5. 487 | LaTeX Font Info: Redeclaring math symbol \Phi on input line 5. 488 | LaTeX Font Info: Redeclaring math symbol \Psi on input line 5. 489 | LaTeX Font Info: Redeclaring math symbol \Omega on input line 5. 490 | LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 5. 491 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 5. 492 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 493 | (Font) `operators' in the math version `normal' on input line 5. 494 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 495 | (Font) OT1/cmr/m/n --> TU/lmr/m/n on input line 5. 496 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 497 | (Font) `operators' in the math version `bold' on input line 5. 498 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 499 | (Font) OT1/cmr/bx/n --> TU/lmr/m/n on input line 5. 500 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 501 | (Font) TU/lmr/m/n --> TU/lmr/m/n on input line 5. 502 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 503 | (Font) OT1/cmr/m/it --> TU/lmr/m/it on input line 5. 504 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 505 | (Font) OT1/cmr/bx/n --> TU/lmr/bx/n on input line 5. 506 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 507 | (Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 5. 508 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 509 | (Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 5. 510 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 511 | (Font) TU/lmr/m/n --> TU/lmr/bx/n on input line 5. 512 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 513 | (Font) OT1/cmr/bx/it --> TU/lmr/bx/it on input line 5. 514 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 515 | (Font) OT1/cmss/bx/n --> TU/lmss/bx/n on input line 5. 516 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 517 | (Font) OT1/cmtt/m/n --> TU/lmtt/bx/n on input line 5. 518 | 519 | 520 | LaTeX Font Warning: Font shape `OMX/cmex/m/n' in size <10.53937> not available 521 | (Font) size <10.95> substituted on input line 7. 522 | 523 | [1 524 | 525 | ] [2] [3] (./6.aux) 526 | 527 | LaTeX Font Warning: Size substitutions with differences 528 | (Font) up to 0.41063pt have occurred. 529 | 530 | ) 531 | Here is how much of TeX's memory you used: 532 | 15878 strings out of 492916 533 | 365588 string characters out of 6133345 534 | 423757 words of memory out of 5000000 535 | 19842 multiletter control sequences out of 15000+600000 536 | 534182 words of font info for 49 fonts, out of 8000000 for 9000 537 | 1348 hyphenation exceptions out of 8191 538 | 60i,6n,73p,399b,446s stack positions out of 5000i,500n,10000p,200000b,80000s 539 | 540 | Output written on 6.pdf (3 pages). 541 | -------------------------------------------------------------------------------- /lesson6/6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson6/6.pdf -------------------------------------------------------------------------------- /lesson6/6.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson6/6.synctex.gz -------------------------------------------------------------------------------- /lesson6/6.tex: -------------------------------------------------------------------------------- 1 | \documentclass{article} 2 | \usepackage{ctex} 3 | \usepackage{amsmath} 4 | 5 | \begin{document} 6 | \section{简介} 7 | \LaTeX{}将排版内容分为文本模式和数学模式。文本模式用于普通文本排版,数学模式用于数学公式排版。 8 | \section{行内公式} 9 | \subsection{美元符号} 10 | 交换律是$a+b=b+a$,如$1+2=2+1=3$ 11 | \subsection{小括号} 12 | 交换律是\(a+b=b+a\),如\(1+2=2+1=3\) 13 | \subsection{math环境} 14 | 交换律是 \begin{math}a+b=b+a\end{math},如 \begin{math}1+2=2+1=3\end{math} 15 | \section{上下标} 16 | \subsection{上标} 17 | $3x^2-x+2=0$,$3x^{20}-x+2=0$ 18 | \subsection{下标} 19 | $a_0, a_1, a_2$ 20 | 21 | $a_0, a_2, a_3, ..., a_{3x^2-x+2}$ 22 | \section{希腊字母} 23 | $\alpha$ 24 | $\beta$ 25 | $\gamma$ 26 | $\epsilon$ 27 | $\pi$ 28 | $\omega$ 29 | 30 | $\Gamma$ 31 | $\Delta$ 32 | $\Theta$ 33 | $\Pi$ 34 | $\Omega$ 35 | \section{数学函数} 36 | $\log$ 37 | $\sin$ 38 | $\cos$ 39 | $\arcsin$ 40 | $\arccos$ 41 | $\arctan$ 42 | $\ln$ 43 | 44 | $\sin^2x+\cos^2x=1$ 45 | 46 | $y=\arcsin x$ 47 | 48 | $y=\sin^{-1}x$ 49 | 50 | $y=\log_2x$ 51 | 52 | $y=\ln x$ 53 | 54 | $\sqrt{2}$ 55 | $\sqrt{x^2 + y^2}$ 56 | $\sqrt{2+\sqrt{2}}$ 57 | $\sqrt[4]{x}$ 58 | \section{分式} 59 | 大约是原体积的3/4. 60 | 61 | 大约是原体积的$\frac{3}{4}$ 62 | \section{行间公式} 63 | \subsection{美元符号} 64 | 交换律是$$a+b=b+a$$如$$1+2=2+1=3$$ 65 | \subsection{中括号} 66 | 交换律是\[a+b=b+a\]如\[1+2=2+1=3\] 67 | \subsection{displaymath环境} 68 | 交换律是\begin{displaymath}a+b=b+a\end{displaymath}如\begin{displaymath}1+2=2+1=3\end{displaymath} 69 | \subsection{自动编号公式equation环境} 70 | 交换律公式见式(\ref{equ1}). 71 | \begin{equation} 72 | a+b=b+a\label{equ1} 73 | \end{equation} 74 | \subsection{不编号公式equation*环境} 75 | 交换律公式见式(\ref{equ2}). 76 | \begin{equation*} 77 | a+b=b+a\label{equ2} 78 | \end{equation*} 79 | 80 | \end{document} -------------------------------------------------------------------------------- /lesson7/7.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /lesson7/7.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019) (preloaded format=xelatex 2020.2.17) 23 FEB 2020 19:09 2 | entering extended mode 3 | restricted \write18 enabled. 4 | file:line:error style messages enabled. 5 | %&-line parsing enabled. 6 | **/Users/obsidian/source/latex_test/lesson7/7 7 | (/Users/obsidian/source/latex_test/lesson7/7.tex 8 | LaTeX2e <2018-12-01> 9 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexart.cls (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3.sty 10 | Package: expl3 2019-05-07 L3 programming layer (loader) 11 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3-code.tex 12 | Package: expl3 2019-05-07 L3 programming layer (code) 13 | \c_max_int=\count80 14 | \l_tmpa_int=\count81 15 | \l_tmpb_int=\count82 16 | \g_tmpa_int=\count83 17 | \g_tmpb_int=\count84 18 | \g__kernel_prg_map_int=\count85 19 | \c__ior_term_ior=\count86 20 | \c_log_iow=\count87 21 | \l_iow_line_count_int=\count88 22 | \l__iow_line_target_int=\count89 23 | \l__iow_one_indent_int=\count90 24 | \l__iow_indent_int=\count91 25 | \c_zero_dim=\dimen102 26 | \c_max_dim=\dimen103 27 | \l_tmpa_dim=\dimen104 28 | \l_tmpb_dim=\dimen105 29 | \g_tmpa_dim=\dimen106 30 | \g_tmpb_dim=\dimen107 31 | \c_zero_skip=\skip41 32 | \c_max_skip=\skip42 33 | \l_tmpa_skip=\skip43 34 | \l_tmpb_skip=\skip44 35 | \g_tmpa_skip=\skip45 36 | \g_tmpb_skip=\skip46 37 | \c_zero_muskip=\muskip10 38 | \c_max_muskip=\muskip11 39 | \l_tmpa_muskip=\muskip12 40 | \l_tmpb_muskip=\muskip13 41 | \g_tmpa_muskip=\muskip14 42 | \g_tmpb_muskip=\muskip15 43 | \l_keys_choice_int=\count92 44 | \l__intarray_loop_int=\count93 45 | \c__intarray_sp_dim=\dimen108 46 | \g__intarray_font_int=\count94 47 | \c__fp_leading_shift_int=\count95 48 | \c__fp_middle_shift_int=\count96 49 | \c__fp_trailing_shift_int=\count97 50 | \c__fp_big_leading_shift_int=\count98 51 | \c__fp_big_middle_shift_int=\count99 52 | \c__fp_big_trailing_shift_int=\count100 53 | \c__fp_Bigg_leading_shift_int=\count101 54 | \c__fp_Bigg_middle_shift_int=\count102 55 | \c__fp_Bigg_trailing_shift_int=\count103 56 | \g__fp_array_int=\count104 57 | \l__fp_array_loop_int=\count105 58 | \l__sort_length_int=\count106 59 | \l__sort_min_int=\count107 60 | \l__sort_top_int=\count108 61 | \l__sort_max_int=\count109 62 | \l__sort_true_max_int=\count110 63 | \l__sort_block_int=\count111 64 | \l__sort_begin_int=\count112 65 | \l__sort_end_int=\count113 66 | \l__sort_A_int=\count114 67 | \l__sort_B_int=\count115 68 | \l__sort_C_int=\count116 69 | \l__tl_analysis_normal_int=\count117 70 | \l__tl_analysis_index_int=\count118 71 | \l__tl_analysis_nesting_int=\count119 72 | \l__tl_analysis_type_int=\count120 73 | \l__regex_internal_a_int=\count121 74 | \l__regex_internal_b_int=\count122 75 | \l__regex_internal_c_int=\count123 76 | \l__regex_balance_int=\count124 77 | \l__regex_group_level_int=\count125 78 | \l__regex_mode_int=\count126 79 | \c__regex_cs_in_class_mode_int=\count127 80 | \c__regex_cs_mode_int=\count128 81 | \l__regex_catcodes_int=\count129 82 | \l__regex_default_catcodes_int=\count130 83 | \c__regex_catcode_L_int=\count131 84 | \c__regex_catcode_O_int=\count132 85 | \c__regex_catcode_A_int=\count133 86 | \c__regex_all_catcodes_int=\count134 87 | \l__regex_show_lines_int=\count135 88 | \l__regex_min_state_int=\count136 89 | \l__regex_max_state_int=\count137 90 | \l__regex_left_state_int=\count138 91 | \l__regex_right_state_int=\count139 92 | \l__regex_capturing_group_int=\count140 93 | \l__regex_min_pos_int=\count141 94 | \l__regex_max_pos_int=\count142 95 | \l__regex_curr_pos_int=\count143 96 | \l__regex_start_pos_int=\count144 97 | \l__regex_success_pos_int=\count145 98 | \l__regex_curr_char_int=\count146 99 | \l__regex_curr_catcode_int=\count147 100 | \l__regex_last_char_int=\count148 101 | \l__regex_case_changed_char_int=\count149 102 | \l__regex_curr_state_int=\count150 103 | \l__regex_step_int=\count151 104 | \l__regex_min_active_int=\count152 105 | \l__regex_max_active_int=\count153 106 | \l__regex_replacement_csnames_int=\count154 107 | \l__regex_match_count_int=\count155 108 | \l__regex_min_submatch_int=\count156 109 | \l__regex_submatch_int=\count157 110 | \l__regex_zeroth_submatch_int=\count158 111 | \g__regex_trace_regex_int=\count159 112 | \c_empty_box=\box27 113 | \l_tmpa_box=\box28 114 | \l_tmpb_box=\box29 115 | \g_tmpa_box=\box30 116 | \g_tmpb_box=\box31 117 | \l__box_top_dim=\dimen109 118 | \l__box_bottom_dim=\dimen110 119 | \l__box_left_dim=\dimen111 120 | \l__box_right_dim=\dimen112 121 | \l__box_top_new_dim=\dimen113 122 | \l__box_bottom_new_dim=\dimen114 123 | \l__box_left_new_dim=\dimen115 124 | \l__box_right_new_dim=\dimen116 125 | \l__box_internal_box=\box32 126 | \l__coffin_internal_box=\box33 127 | \l__coffin_internal_dim=\dimen117 128 | \l__coffin_offset_x_dim=\dimen118 129 | \l__coffin_offset_y_dim=\dimen119 130 | \l__coffin_x_dim=\dimen120 131 | \l__coffin_y_dim=\dimen121 132 | \l__coffin_x_prime_dim=\dimen122 133 | \l__coffin_y_prime_dim=\dimen123 134 | \c_empty_coffin=\box34 135 | \l__coffin_aligned_coffin=\box35 136 | \l__coffin_aligned_internal_coffin=\box36 137 | \l_tmpa_coffin=\box37 138 | \l_tmpb_coffin=\box38 139 | \g_tmpa_coffin=\box39 140 | \g_tmpb_coffin=\box40 141 | \l__coffin_bounding_shift_dim=\dimen124 142 | \l__coffin_left_corner_dim=\dimen125 143 | \l__coffin_right_corner_dim=\dimen126 144 | \l__coffin_bottom_corner_dim=\dimen127 145 | \l__coffin_top_corner_dim=\dimen128 146 | \l__coffin_scaled_total_height_dim=\dimen129 147 | \l__coffin_scaled_width_dim=\dimen130 148 | \c__coffin_empty_coffin=\box41 149 | \l__coffin_display_coffin=\box42 150 | \l__coffin_display_coord_coffin=\box43 151 | \l__coffin_display_pole_coffin=\box44 152 | \l__coffin_display_offset_dim=\dimen131 153 | \l__coffin_display_x_dim=\dimen132 154 | \l__coffin_display_y_dim=\dimen133 155 | \g__file_internal_ior=\read1 156 | \l__seq_internal_a_int=\count160 157 | \l__seq_internal_b_int=\count161 158 | \c__deprecation_minus_one=\count162 159 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def 160 | File: l3xdvipdfmx.def 2019-04-06 v L3 Experimental driver: xdvipdfmx 161 | \g__driver_image_int=\count163 162 | \l__driver_pdf_tmp_box=\box45 163 | \g__driver_pdf_object_int=\count164 164 | \g__driver_pdf_annotation_int=\count165 165 | )) 166 | Document Class: ctexart 2019/04/07 v2.4.15 Chinese adapter for class article (CTEX) 167 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 168 | Package: xparse 2019-05-03 L3 Experimental document command parser 169 | \l__xparse_current_arg_int=\count166 170 | \g__xparse_grabber_int=\count167 171 | \l__xparse_m_args_int=\count168 172 | \l__xparse_v_nesting_int=\count169 173 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 174 | Package: l3keys2e 2019-05-03 LaTeX2e option processing using LaTeX3 keys 175 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexhook.sty 176 | Package: ctexhook 2019/04/07 v2.4.15 Document and package hooks (CTEX) 177 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexpatch.sty 178 | Package: ctexpatch 2019/04/07 v2.4.15 Patching commands (CTEX) 179 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fix-cm.sty 180 | Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX 181 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/ts1enc.def 182 | File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file 183 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ms/everysel.sty 184 | Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS) 185 | ) 186 | \l__ctex_tmp_int=\count170 187 | \l__ctex_tmp_box=\box46 188 | \l__ctex_tmp_dim=\dimen134 189 | \g__ctex_section_depth_int=\count171 190 | \g__ctex_font_size_int=\count172 191 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 192 | File: ctexopts.cfg 2019/04/07 v2.4.15 Option configuration file (CTEX) 193 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/article.cls 194 | Document Class: article 2018/09/03 v1.4i Standard LaTeX document class 195 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/size10.clo 196 | File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) 197 | ) 198 | \c@part=\count173 199 | \c@section=\count174 200 | \c@subsection=\count175 201 | \c@subsubsection=\count176 202 | \c@paragraph=\count177 203 | \c@subparagraph=\count178 204 | \c@figure=\count179 205 | \c@table=\count180 206 | \abovecaptionskip=\skip47 207 | \belowcaptionskip=\skip48 208 | \bibindent=\dimen135 209 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def 210 | File: ctex-engine-xetex.def 2019/04/07 v2.4.15 XeLaTeX adapter (CTEX) 211 | (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.sty 212 | Package: xeCJK 2019/04/07 v3.7.2 Typesetting CJK scripts with XeLaTeX 213 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty 214 | Package: xtemplate 2019-05-03 L3 Experimental prototype document functions 215 | \l__xtemplate_tmp_dim=\dimen136 216 | \l__xtemplate_tmp_int=\count181 217 | \l__xtemplate_tmp_muskip=\muskip16 218 | \l__xtemplate_tmp_skip=\skip49 219 | ) 220 | \l__xeCJK_tmp_int=\count182 221 | \l__xeCJK_tmp_box=\box47 222 | \l__xeCJK_tmp_dim=\dimen137 223 | \l__xeCJK_tmp_skip=\skip50 224 | \g__xeCJK_space_factor_int=\count183 225 | \l__xeCJK_begin_int=\count184 226 | \l__xeCJK_end_int=\count185 227 | \c__xeCJK_CJK_class_int=\XeTeXcharclass1 228 | \c__xeCJK_FullLeft_class_int=\XeTeXcharclass2 229 | \c__xeCJK_FullRight_class_int=\XeTeXcharclass3 230 | \c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4 231 | \c__xeCJK_HalfRight_class_int=\XeTeXcharclass5 232 | \c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6 233 | \c__xeCJK_CM_class_int=\XeTeXcharclass7 234 | \c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8 235 | \l__xeCJK_last_skip=\skip51 236 | \g__xeCJK_node_int=\count186 237 | \c__xeCJK_CJK_node_dim=\dimen138 238 | \c__xeCJK_CJK-space_node_dim=\dimen139 239 | \c__xeCJK_default_node_dim=\dimen140 240 | \c__xeCJK_default-space_node_dim=\dimen141 241 | \c__xeCJK_CJK-widow_node_dim=\dimen142 242 | \c__xeCJK_normalspace_node_dim=\dimen143 243 | \l__xeCJK_ccglue_skip=\skip52 244 | \l__xeCJK_ecglue_skip=\skip53 245 | \l__xeCJK_punct_kern_skip=\skip54 246 | \l__xeCJK_last_penalty_int=\count187 247 | \l__xeCJK_last_bound_dim=\dimen144 248 | \l__xeCJK_last_kern_dim=\dimen145 249 | \l__xeCJK_widow_penalty_int=\count188 250 | 251 | Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0 252 | (xtemplate) argument(s) on line 2352. 253 | 254 | \l__xeCJK_fixed_punct_width_dim=\dimen146 255 | \l__xeCJK_mixed_punct_width_dim=\dimen147 256 | \l__xeCJK_middle_punct_width_dim=\dimen148 257 | \l__xeCJK_fixed_margin_width_dim=\dimen149 258 | \l__xeCJK_mixed_margin_width_dim=\dimen150 259 | \l__xeCJK_middle_margin_width_dim=\dimen151 260 | \l__xeCJK_bound_punct_width_dim=\dimen152 261 | \l__xeCJK_bound_margin_width_dim=\dimen153 262 | \l__xeCJK_margin_minimum_dim=\dimen154 263 | \l__xeCJK_kerning_total_width_dim=\dimen155 264 | \l__xeCJK_same_align_margin_dim=\dimen156 265 | \l__xeCJK_different_align_margin_dim=\dimen157 266 | \l__xeCJK_kerning_margin_width_dim=\dimen158 267 | \l__xeCJK_kerning_margin_minimum_dim=\dimen159 268 | \l__xeCJK_bound_dim=\dimen160 269 | \l__xeCJK_reverse_bound_dim=\dimen161 270 | \l__xeCJK_minimum_bound_dim=\dimen162 271 | \l__xeCJK_kerning_margin_dim=\dimen163 272 | \l__xeCJK_original_margin_dim=\dimen164 273 | \g__xeCJK_family_int=\count189 274 | \l__xeCJK_fam_int=\count190 275 | \g__xeCJK_fam_allocation_int=\count191 276 | \l__xeCJK_verb_case_int=\count192 277 | \l__xeCJK_verb_exspace_skip=\skip55 278 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.sty 279 | Package: fontspec 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 280 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty 281 | Package: fontspec-xetex 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 282 | \l__fontspec_script_int=\count193 283 | \l__fontspec_language_int=\count194 284 | \l__fontspec_strnum_int=\count195 285 | \l__fontspec_tmp_int=\count196 286 | \l__fontspec_tmpa_int=\count197 287 | \l__fontspec_tmpb_int=\count198 288 | \l__fontspec_tmpc_int=\count199 289 | \l__fontspec_em_int=\count266 290 | \l__fontspec_emdef_int=\count267 291 | \l__fontspec_strong_int=\count268 292 | \l__fontspec_strongdef_int=\count269 293 | \l__fontspec_tmpa_dim=\dimen165 294 | \l__fontspec_tmpb_dim=\dimen166 295 | \l__fontspec_tmpc_dim=\dimen167 296 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fontenc.sty 297 | Package: fontenc 2018/08/11 v2.0j Standard LaTeX package 298 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/tuenc.def 299 | File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file 300 | LaTeX Font Info: Redeclaring font encoding TU on input line 82. 301 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.cfg) 302 | LaTeX Info: Redefining \itshape on input line 4051. 303 | LaTeX Info: Redefining \slshape on input line 4056. 304 | LaTeX Info: Redefining \scshape on input line 4061. 305 | LaTeX Info: Redefining \upshape on input line 4066. 306 | LaTeX Info: Redefining \em on input line 4096. 307 | LaTeX Info: Redefining \emph on input line 4121. 308 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg 309 | File: xeCJK.cfg 2019/04/07 v3.7.2 Configuration file for xeCJK package 310 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty 311 | Package: xeCJKfntef 2019/04/07 v3.7.2 xeCJK font effect 312 | (/usr/local/texlive/2019/texmf-dist/tex/generic/ulem/ulem.sty 313 | \UL@box=\box48 314 | \UL@hyphenbox=\box49 315 | \UL@skip=\skip56 316 | \UL@hook=\toks14 317 | \UL@height=\dimen168 318 | \UL@pe=\count270 319 | \UL@pixel=\dimen169 320 | \ULC@box=\box50 321 | Package: ulem 2012/05/18 322 | \ULdepth=\dimen170 323 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty 324 | Package: CJKfntef 2015/04/18 4.8.4 325 | \CJK@fntefSkip=\skip57 326 | \CJK@nest=\count271 327 | \CJK@fntefDimen=\dimen171 328 | \CJK@underdotBox=\box51 329 | \CJK@ULbox=\box52 330 | \CJK@underanyskip=\dimen172 331 | ) 332 | \l__xeCJK_space_skip=\skip58 333 | \c__xeCJK_ulem-begin_node_dim=\dimen173 334 | \c__xeCJK_null_box=\box53 335 | \l__xeCJK_fntef_box=\box54 336 | \l__xeCJK_under_symbol_box=\box55 337 | \c__xeCJK_filll_skip=\skip59 338 | ) 339 | \ccwd=\dimen174 340 | \l__ctex_ccglue_skip=\skip60 341 | ) 342 | \l__ctex_ziju_dim=\dimen175 343 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber.sty 344 | Package: zhnumber 2019/04/07 v2.7 Typesetting numbers with Chinese glyphs 345 | \l__zhnum_scale_int=\count272 346 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 347 | File: zhnumber-utf8.cfg 2019/04/07 v2.7 Chinese numerals with UTF8 encoding 348 | )) 349 | \l__ctex_heading_skip=\skip61 350 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-article.def 351 | File: ctex-scheme-chinese-article.def 2019/04/07 v2.4.15 Chinese scheme for article (CTEX) 352 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 353 | File: ctex-name-utf8.cfg 2019/04/07 v2.4.15 Caption with encoding UTF8 (CTEX) 354 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctex-c5size.clo 355 | File: ctex-c5size.clo 2019/04/07 v2.4.15 c5size option (CTEX) 356 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-mac.def 357 | File: ctex-fontset-mac.def 2019/04/07 v2.4.15 Mac OS X fonts definition (CTEX) 358 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-macnew.def 359 | File: ctex-fontset-macnew.def 2019/04/07 v2.4.15 Mac OS X fonts definition for El Capitan or later version (CTEX) 360 | 361 | 362 | Package fontspec Warning: Font "Songti SC Light" does not contain requested 363 | (fontspec) Script "CJK". 364 | 365 | 366 | Package fontspec Info: Font family 'SongtiSC(0)' created for font 'Songti SC' 367 | (fontspec) with options [Script={CJK},UprightFont={* 368 | (fontspec) Light},BoldItalicFont={Kaiti SC Bold},BoldFont={* 369 | (fontspec) Bold},ItalicFont={Kaiti SC}]. 370 | (fontspec) 371 | (fontspec) This font family consists of the following NFSS 372 | (fontspec) series/shapes: 373 | (fontspec) 374 | (fontspec) - 'normal' (m/n) with NFSS spec.: <->"Songti SC 375 | (fontspec) Light/OT" 376 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 377 | (fontspec) - 'bold' (bx/n) with NFSS spec.: <->"Songti SC Bold/OT" 378 | (fontspec) - 'bold small caps' (bx/sc) with NFSS spec.: 379 | (fontspec) - 'italic' (m/it) with NFSS spec.: <->"Kaiti SC/OT" 380 | (fontspec) - 'italic small caps' (m/itsc) with NFSS spec.: 381 | (fontspec) - 'bold italic' (bx/it) with NFSS spec.: <->"Kaiti SC 382 | (fontspec) Bold/OT" 383 | (fontspec) - 'bold italic small caps' (bx/itsc) with NFSS spec.: 384 | 385 | ))) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex.cfg 386 | File: ctex.cfg 2019/04/07 v2.4.15 Configuration file (CTEX) 387 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amsmath.sty 388 | Package: amsmath 2018/12/01 v2.17b AMS math features 389 | \@mathmargin=\skip62 390 | 391 | For additional information on amsmath, use the `?' option. 392 | (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amstext.sty 393 | Package: amstext 2000/06/29 v2.01 AMS text 394 | (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amsgen.sty 395 | File: amsgen.sty 1999/11/30 v2.0 generic functions 396 | \@emptytoks=\toks15 397 | \ex@=\dimen176 398 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amsbsy.sty 399 | Package: amsbsy 1999/11/29 v1.2d Bold Symbols 400 | \pmbraise@=\dimen177 401 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amsopn.sty 402 | Package: amsopn 2016/03/08 v2.02 operator names 403 | ) 404 | \inf@bad=\count273 405 | LaTeX Info: Redefining \frac on input line 223. 406 | \uproot@=\count274 407 | \leftroot@=\count275 408 | LaTeX Info: Redefining \overline on input line 385. 409 | \classnum@=\count276 410 | \DOTSCASE@=\count277 411 | LaTeX Info: Redefining \ldots on input line 482. 412 | LaTeX Info: Redefining \dots on input line 485. 413 | LaTeX Info: Redefining \cdots on input line 606. 414 | \Mathstrutbox@=\box56 415 | \strutbox@=\box57 416 | \big@size=\dimen178 417 | LaTeX Font Info: Redeclaring font encoding OML on input line 729. 418 | LaTeX Font Info: Redeclaring font encoding OMS on input line 730. 419 | \macc@depth=\count278 420 | \c@MaxMatrixCols=\count279 421 | \dotsspace@=\muskip17 422 | \c@parentequation=\count280 423 | \dspbrk@lvl=\count281 424 | \tag@help=\toks16 425 | \row@=\count282 426 | \column@=\count283 427 | \maxfields@=\count284 428 | \andhelp@=\toks17 429 | \eqnshift@=\dimen179 430 | \alignsep@=\dimen180 431 | \tagshift@=\dimen181 432 | \tagwidth@=\dimen182 433 | \totwidth@=\dimen183 434 | \lineht@=\dimen184 435 | \@envbody=\toks18 436 | \multlinegap=\skip63 437 | \multlinetaggap=\skip64 438 | \mathdisplay@stack=\toks19 439 | LaTeX Info: Redefining \[ on input line 2844. 440 | LaTeX Info: Redefining \] on input line 2845. 441 | ) (./7.aux) 442 | \openout1 = `7.aux'. 443 | 444 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 5. 445 | LaTeX Font Info: ... okay on input line 5. 446 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 5. 447 | LaTeX Font Info: ... okay on input line 5. 448 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 5. 449 | LaTeX Font Info: ... okay on input line 5. 450 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 5. 451 | LaTeX Font Info: ... okay on input line 5. 452 | LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 5. 453 | LaTeX Font Info: ... okay on input line 5. 454 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 5. 455 | LaTeX Font Info: ... okay on input line 5. 456 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 5. 457 | LaTeX Font Info: ... okay on input line 5. 458 | LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 5. 459 | LaTeX Font Info: ... okay on input line 5. 460 | ABD: EverySelectfont initializing macros 461 | LaTeX Info: Redefining \selectfont on input line 5. 462 | 463 | Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid 464 | (fontspec) this). 465 | 466 | \symlegacymaths=\mathgroup4 467 | LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' 468 | (Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 5. 469 | LaTeX Font Info: Redeclaring math accent \acute on input line 5. 470 | LaTeX Font Info: Redeclaring math accent \grave on input line 5. 471 | LaTeX Font Info: Redeclaring math accent \ddot on input line 5. 472 | LaTeX Font Info: Redeclaring math accent \tilde on input line 5. 473 | LaTeX Font Info: Redeclaring math accent \bar on input line 5. 474 | LaTeX Font Info: Redeclaring math accent \breve on input line 5. 475 | LaTeX Font Info: Redeclaring math accent \check on input line 5. 476 | LaTeX Font Info: Redeclaring math accent \hat on input line 5. 477 | LaTeX Font Info: Redeclaring math accent \dot on input line 5. 478 | LaTeX Font Info: Redeclaring math accent \mathring on input line 5. 479 | LaTeX Font Info: Redeclaring math symbol \Gamma on input line 5. 480 | LaTeX Font Info: Redeclaring math symbol \Delta on input line 5. 481 | LaTeX Font Info: Redeclaring math symbol \Theta on input line 5. 482 | LaTeX Font Info: Redeclaring math symbol \Lambda on input line 5. 483 | LaTeX Font Info: Redeclaring math symbol \Xi on input line 5. 484 | LaTeX Font Info: Redeclaring math symbol \Pi on input line 5. 485 | LaTeX Font Info: Redeclaring math symbol \Sigma on input line 5. 486 | LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 5. 487 | LaTeX Font Info: Redeclaring math symbol \Phi on input line 5. 488 | LaTeX Font Info: Redeclaring math symbol \Psi on input line 5. 489 | LaTeX Font Info: Redeclaring math symbol \Omega on input line 5. 490 | LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 5. 491 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 5. 492 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 493 | (Font) `operators' in the math version `normal' on input line 5. 494 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 495 | (Font) OT1/cmr/m/n --> TU/lmr/m/n on input line 5. 496 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 497 | (Font) `operators' in the math version `bold' on input line 5. 498 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 499 | (Font) OT1/cmr/bx/n --> TU/lmr/m/n on input line 5. 500 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 501 | (Font) TU/lmr/m/n --> TU/lmr/m/n on input line 5. 502 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 503 | (Font) OT1/cmr/m/it --> TU/lmr/m/it on input line 5. 504 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 505 | (Font) OT1/cmr/bx/n --> TU/lmr/bx/n on input line 5. 506 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 507 | (Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 5. 508 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 509 | (Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 5. 510 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 511 | (Font) TU/lmr/m/n --> TU/lmr/bx/n on input line 5. 512 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 513 | (Font) OT1/cmr/bx/it --> TU/lmr/bx/it on input line 5. 514 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 515 | (Font) OT1/cmss/bx/n --> TU/lmss/bx/n on input line 5. 516 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 517 | (Font) OT1/cmtt/m/n --> TU/lmtt/bx/n on input line 5. 518 | 519 | 520 | LaTeX Font Warning: Font shape `OMX/cmex/m/n' in size <10.53937> not available 521 | (Font) size <10.95> substituted on input line 7. 522 | 523 | [1 524 | 525 | ] [2] (./7.aux) 526 | 527 | LaTeX Font Warning: Size substitutions with differences 528 | (Font) up to 0.41063pt have occurred. 529 | 530 | ) 531 | Here is how much of TeX's memory you used: 532 | 16455 strings out of 492916 533 | 383692 string characters out of 6133345 534 | 462327 words of memory out of 5000000 535 | 20425 multiletter control sequences out of 15000+600000 536 | 534166 words of font info for 47 fonts, out of 8000000 for 9000 537 | 1348 hyphenation exceptions out of 8191 538 | 60i,18n,73p,399b,446s stack positions out of 5000i,500n,10000p,200000b,80000s 539 | 540 | Output written on 7.pdf (2 pages). 541 | -------------------------------------------------------------------------------- /lesson7/7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson7/7.pdf -------------------------------------------------------------------------------- /lesson7/7.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson7/7.synctex.gz -------------------------------------------------------------------------------- /lesson7/7.tex: -------------------------------------------------------------------------------- 1 | \documentclass{ctexart} 2 | \usepackage{amsmath} 3 | \newcommand{\adots}{\mathinner{\mkern2mu\raisebox{0.1em}{.}\mkern2mu\raisebox{0.4em}{.}\mkern2mu\raisebox{0.7em}{.}\mkern1mu}} 4 | 5 | \begin{document} 6 | \textbf{matrix 无括号} 7 | \[ 8 | \begin{matrix} 9 | 0 & 1\\ 10 | 1 & 0 11 | \end{matrix} 12 | \] 13 | 14 | \textbf{pmatrix 小括号} 15 | \[ 16 | \begin{pmatrix} 17 | 0 & i\\ 18 | -i & 0 19 | \end{pmatrix} 20 | \] 21 | 22 | \textbf{bmatrix 中括号} 23 | \[ 24 | \begin{bmatrix} 25 | 0 & 1\\ 26 | 1 & 0 27 | \end{bmatrix} 28 | \] 29 | 30 | \textbf{Bmatrix 大括号} 31 | \[ 32 | \begin{Bmatrix} 33 | -1 & 1\\ 34 | 1 & 1 35 | \end{Bmatrix} 36 | \] 37 | 38 | \textbf{vmatrix 单竖线} 39 | \[ 40 | \begin{vmatrix} 41 | a & b\\ 42 | c & d 43 | \end{vmatrix} = ad-bc 44 | \] 45 | 46 | \textbf{Vmatrix 双竖线} 47 | \[ 48 | \begin{Vmatrix} 49 | a & b\\ 50 | c & d 51 | \end{Vmatrix} 52 | \] 53 | 54 | 55 | \textbf{使用上下标} 56 | \[ 57 | A=\begin{pmatrix} 58 | a_{11}^2 & a_{12}^2 & a_{13}^2\\ 59 | 0 & a_{22} & a_{23}\\ 60 | 0 & 0 & a_{33} 61 | \end{pmatrix} 62 | \] 63 | 64 | \textbf{常用省略号:\textbackslash dots, \textbackslash vdots, \textbackslash ddots} 65 | \[ 66 | A=\begin{bmatrix} 67 | a_{11} & \dots & a_{1n}\\ 68 | \vdots & \ddots & \vdots \\ 69 | 0 & \dots & a_{nn} 70 | \end{bmatrix}_{n \times n} 71 | \] 72 | 73 | \textbf{自定义符号:\textbackslash adots} 74 | \[ 75 | A=\begin{bmatrix} 76 | a_{11} & \dots & a_{1n}\\ 77 | \vdots & \adots & \vdots \\ 78 | 0 & \dots & a_{nn} 79 | \end{bmatrix}_{n \times n} 80 | \] 81 | 82 | \textbf{分块矩阵} 83 | \[ 84 | \begin{pmatrix} 85 | \begin{matrix}1&0\\0&1\end{matrix} & \text{\LARGE 0}\\ 86 | \text{\LARGE 0} & \begin{matrix}1&0\\0&1\end{matrix} 87 | \end{pmatrix} 88 | \] 89 | 90 | \textbf{三角矩阵} 91 | \[ 92 | \begin{pmatrix} 93 | a_{11} & a_{12} & \dots & a_{1n}\\ 94 | & a_{22} &\cdots & a_{2n}\\ 95 | & & \ddots & \vdots \\ 96 | \multicolumn{2}{c}{\raisebox{1.3ex}[0pt]{\Huge 0}} 97 | & & a_{nn} 98 | \end{pmatrix}_{n\times n} 99 | \] 100 | 101 | \textbf{跨列省略号:\textbackslash hdotsfor\{<列数>\}} 102 | \[ 103 | \begin{pmatrix} 104 | 1 & \frac12 & \dots & \frac1n \\ 105 | \hdotsfor{4} \\ 106 | m & \frac m2 & \dots & \frac mn 107 | \end{pmatrix} 108 | \] 109 | 110 | \textbf{使用smallmatrix环境产生行内小矩阵} 111 | 112 | \ \ \ \ 复数 $z=(x,y)$也可用矩阵\begin{math} 113 | \left( 114 | \begin{smallmatrix} 115 | x & -y\\ 116 | y & x 117 | \end{smallmatrix} 118 | \right) 119 | \end{math}来表示。 120 | 121 | \textbf{array环境,类似于表格环tabular} 122 | \[ 123 | \begin{array}{r|r} 124 | \frac12 & 0 \\ 125 | \hline 126 | 0 & -\frac{a}{bc} 127 | \end{array} 128 | \] 129 | 130 | \textbf{用array环境构造复杂矩阵} 131 | % @{<内容>}-添加任意内容,不占表项计数 132 | % 此处添加一个负值空白,表示向左移5pt的距离 133 | \[ 134 | \begin{array} 135 | {c@{\hspace{-5pt}}l} 136 | % 第一行第一列 137 | \left( 138 | \begin{array}{ccc|ccc} 139 | a & \cdots & a & b & \cdots & b \\ 140 | & \ddots & \vdots & \vdots & \adots \\ 141 | & & a & b \\ \hline 142 | & & & c & \cdots & c \\ 143 | & & & \vdots & & \vdots \\ 144 | \multicolumn{3}{c|}{\raisebox{2ex}[0pt]{\Huge 0}} & c & \cdots & c 145 | \end{array} 146 | \right) 147 | & 148 | % 第一行第二列 149 | \begin{array}{l} 150 | %\left.仅表示与\right\}配对,什么都不输出 151 | \left. \rule{0mm}{8mm}\right\}p\\ 152 | \\ 153 | \left. \rule{0mm}{8mm}\right\}q 154 | \end{array} 155 | \\[-5pt] 156 | % 第二行第一列 157 | \begin{array}{cc} 158 | \underbrace{\rule{15mm}{0mm}}_m & 159 | \underbrace{\rule{15mm}{0mm}}_n 160 | \end{array} 161 | % 第二行第二列 162 | \end{array} 163 | \] 164 | 165 | 166 | \end{document} -------------------------------------------------------------------------------- /lesson8/8.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /lesson8/8.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019) (preloaded format=xelatex 2020.2.17) 23 FEB 2020 21:03 2 | entering extended mode 3 | restricted \write18 enabled. 4 | file:line:error style messages enabled. 5 | %&-line parsing enabled. 6 | **/Users/obsidian/source/latex_test/lesson8/8 7 | (/Users/obsidian/source/latex_test/lesson8/8.tex 8 | LaTeX2e <2018-12-01> 9 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexart.cls (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3.sty 10 | Package: expl3 2019-05-07 L3 programming layer (loader) 11 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3-code.tex 12 | Package: expl3 2019-05-07 L3 programming layer (code) 13 | \c_max_int=\count80 14 | \l_tmpa_int=\count81 15 | \l_tmpb_int=\count82 16 | \g_tmpa_int=\count83 17 | \g_tmpb_int=\count84 18 | \g__kernel_prg_map_int=\count85 19 | \c__ior_term_ior=\count86 20 | \c_log_iow=\count87 21 | \l_iow_line_count_int=\count88 22 | \l__iow_line_target_int=\count89 23 | \l__iow_one_indent_int=\count90 24 | \l__iow_indent_int=\count91 25 | \c_zero_dim=\dimen102 26 | \c_max_dim=\dimen103 27 | \l_tmpa_dim=\dimen104 28 | \l_tmpb_dim=\dimen105 29 | \g_tmpa_dim=\dimen106 30 | \g_tmpb_dim=\dimen107 31 | \c_zero_skip=\skip41 32 | \c_max_skip=\skip42 33 | \l_tmpa_skip=\skip43 34 | \l_tmpb_skip=\skip44 35 | \g_tmpa_skip=\skip45 36 | \g_tmpb_skip=\skip46 37 | \c_zero_muskip=\muskip10 38 | \c_max_muskip=\muskip11 39 | \l_tmpa_muskip=\muskip12 40 | \l_tmpb_muskip=\muskip13 41 | \g_tmpa_muskip=\muskip14 42 | \g_tmpb_muskip=\muskip15 43 | \l_keys_choice_int=\count92 44 | \l__intarray_loop_int=\count93 45 | \c__intarray_sp_dim=\dimen108 46 | \g__intarray_font_int=\count94 47 | \c__fp_leading_shift_int=\count95 48 | \c__fp_middle_shift_int=\count96 49 | \c__fp_trailing_shift_int=\count97 50 | \c__fp_big_leading_shift_int=\count98 51 | \c__fp_big_middle_shift_int=\count99 52 | \c__fp_big_trailing_shift_int=\count100 53 | \c__fp_Bigg_leading_shift_int=\count101 54 | \c__fp_Bigg_middle_shift_int=\count102 55 | \c__fp_Bigg_trailing_shift_int=\count103 56 | \g__fp_array_int=\count104 57 | \l__fp_array_loop_int=\count105 58 | \l__sort_length_int=\count106 59 | \l__sort_min_int=\count107 60 | \l__sort_top_int=\count108 61 | \l__sort_max_int=\count109 62 | \l__sort_true_max_int=\count110 63 | \l__sort_block_int=\count111 64 | \l__sort_begin_int=\count112 65 | \l__sort_end_int=\count113 66 | \l__sort_A_int=\count114 67 | \l__sort_B_int=\count115 68 | \l__sort_C_int=\count116 69 | \l__tl_analysis_normal_int=\count117 70 | \l__tl_analysis_index_int=\count118 71 | \l__tl_analysis_nesting_int=\count119 72 | \l__tl_analysis_type_int=\count120 73 | \l__regex_internal_a_int=\count121 74 | \l__regex_internal_b_int=\count122 75 | \l__regex_internal_c_int=\count123 76 | \l__regex_balance_int=\count124 77 | \l__regex_group_level_int=\count125 78 | \l__regex_mode_int=\count126 79 | \c__regex_cs_in_class_mode_int=\count127 80 | \c__regex_cs_mode_int=\count128 81 | \l__regex_catcodes_int=\count129 82 | \l__regex_default_catcodes_int=\count130 83 | \c__regex_catcode_L_int=\count131 84 | \c__regex_catcode_O_int=\count132 85 | \c__regex_catcode_A_int=\count133 86 | \c__regex_all_catcodes_int=\count134 87 | \l__regex_show_lines_int=\count135 88 | \l__regex_min_state_int=\count136 89 | \l__regex_max_state_int=\count137 90 | \l__regex_left_state_int=\count138 91 | \l__regex_right_state_int=\count139 92 | \l__regex_capturing_group_int=\count140 93 | \l__regex_min_pos_int=\count141 94 | \l__regex_max_pos_int=\count142 95 | \l__regex_curr_pos_int=\count143 96 | \l__regex_start_pos_int=\count144 97 | \l__regex_success_pos_int=\count145 98 | \l__regex_curr_char_int=\count146 99 | \l__regex_curr_catcode_int=\count147 100 | \l__regex_last_char_int=\count148 101 | \l__regex_case_changed_char_int=\count149 102 | \l__regex_curr_state_int=\count150 103 | \l__regex_step_int=\count151 104 | \l__regex_min_active_int=\count152 105 | \l__regex_max_active_int=\count153 106 | \l__regex_replacement_csnames_int=\count154 107 | \l__regex_match_count_int=\count155 108 | \l__regex_min_submatch_int=\count156 109 | \l__regex_submatch_int=\count157 110 | \l__regex_zeroth_submatch_int=\count158 111 | \g__regex_trace_regex_int=\count159 112 | \c_empty_box=\box27 113 | \l_tmpa_box=\box28 114 | \l_tmpb_box=\box29 115 | \g_tmpa_box=\box30 116 | \g_tmpb_box=\box31 117 | \l__box_top_dim=\dimen109 118 | \l__box_bottom_dim=\dimen110 119 | \l__box_left_dim=\dimen111 120 | \l__box_right_dim=\dimen112 121 | \l__box_top_new_dim=\dimen113 122 | \l__box_bottom_new_dim=\dimen114 123 | \l__box_left_new_dim=\dimen115 124 | \l__box_right_new_dim=\dimen116 125 | \l__box_internal_box=\box32 126 | \l__coffin_internal_box=\box33 127 | \l__coffin_internal_dim=\dimen117 128 | \l__coffin_offset_x_dim=\dimen118 129 | \l__coffin_offset_y_dim=\dimen119 130 | \l__coffin_x_dim=\dimen120 131 | \l__coffin_y_dim=\dimen121 132 | \l__coffin_x_prime_dim=\dimen122 133 | \l__coffin_y_prime_dim=\dimen123 134 | \c_empty_coffin=\box34 135 | \l__coffin_aligned_coffin=\box35 136 | \l__coffin_aligned_internal_coffin=\box36 137 | \l_tmpa_coffin=\box37 138 | \l_tmpb_coffin=\box38 139 | \g_tmpa_coffin=\box39 140 | \g_tmpb_coffin=\box40 141 | \l__coffin_bounding_shift_dim=\dimen124 142 | \l__coffin_left_corner_dim=\dimen125 143 | \l__coffin_right_corner_dim=\dimen126 144 | \l__coffin_bottom_corner_dim=\dimen127 145 | \l__coffin_top_corner_dim=\dimen128 146 | \l__coffin_scaled_total_height_dim=\dimen129 147 | \l__coffin_scaled_width_dim=\dimen130 148 | \c__coffin_empty_coffin=\box41 149 | \l__coffin_display_coffin=\box42 150 | \l__coffin_display_coord_coffin=\box43 151 | \l__coffin_display_pole_coffin=\box44 152 | \l__coffin_display_offset_dim=\dimen131 153 | \l__coffin_display_x_dim=\dimen132 154 | \l__coffin_display_y_dim=\dimen133 155 | \g__file_internal_ior=\read1 156 | \l__seq_internal_a_int=\count160 157 | \l__seq_internal_b_int=\count161 158 | \c__deprecation_minus_one=\count162 159 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def 160 | File: l3xdvipdfmx.def 2019-04-06 v L3 Experimental driver: xdvipdfmx 161 | \g__driver_image_int=\count163 162 | \l__driver_pdf_tmp_box=\box45 163 | \g__driver_pdf_object_int=\count164 164 | \g__driver_pdf_annotation_int=\count165 165 | )) 166 | Document Class: ctexart 2019/04/07 v2.4.15 Chinese adapter for class article (CTEX) 167 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 168 | Package: xparse 2019-05-03 L3 Experimental document command parser 169 | \l__xparse_current_arg_int=\count166 170 | \g__xparse_grabber_int=\count167 171 | \l__xparse_m_args_int=\count168 172 | \l__xparse_v_nesting_int=\count169 173 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 174 | Package: l3keys2e 2019-05-03 LaTeX2e option processing using LaTeX3 keys 175 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexhook.sty 176 | Package: ctexhook 2019/04/07 v2.4.15 Document and package hooks (CTEX) 177 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexpatch.sty 178 | Package: ctexpatch 2019/04/07 v2.4.15 Patching commands (CTEX) 179 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fix-cm.sty 180 | Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX 181 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/ts1enc.def 182 | File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file 183 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ms/everysel.sty 184 | Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS) 185 | ) 186 | \l__ctex_tmp_int=\count170 187 | \l__ctex_tmp_box=\box46 188 | \l__ctex_tmp_dim=\dimen134 189 | \g__ctex_section_depth_int=\count171 190 | \g__ctex_font_size_int=\count172 191 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 192 | File: ctexopts.cfg 2019/04/07 v2.4.15 Option configuration file (CTEX) 193 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/article.cls 194 | Document Class: article 2018/09/03 v1.4i Standard LaTeX document class 195 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/size10.clo 196 | File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) 197 | ) 198 | \c@part=\count173 199 | \c@section=\count174 200 | \c@subsection=\count175 201 | \c@subsubsection=\count176 202 | \c@paragraph=\count177 203 | \c@subparagraph=\count178 204 | \c@figure=\count179 205 | \c@table=\count180 206 | \abovecaptionskip=\skip47 207 | \belowcaptionskip=\skip48 208 | \bibindent=\dimen135 209 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def 210 | File: ctex-engine-xetex.def 2019/04/07 v2.4.15 XeLaTeX adapter (CTEX) 211 | (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.sty 212 | Package: xeCJK 2019/04/07 v3.7.2 Typesetting CJK scripts with XeLaTeX 213 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty 214 | Package: xtemplate 2019-05-03 L3 Experimental prototype document functions 215 | \l__xtemplate_tmp_dim=\dimen136 216 | \l__xtemplate_tmp_int=\count181 217 | \l__xtemplate_tmp_muskip=\muskip16 218 | \l__xtemplate_tmp_skip=\skip49 219 | ) 220 | \l__xeCJK_tmp_int=\count182 221 | \l__xeCJK_tmp_box=\box47 222 | \l__xeCJK_tmp_dim=\dimen137 223 | \l__xeCJK_tmp_skip=\skip50 224 | \g__xeCJK_space_factor_int=\count183 225 | \l__xeCJK_begin_int=\count184 226 | \l__xeCJK_end_int=\count185 227 | \c__xeCJK_CJK_class_int=\XeTeXcharclass1 228 | \c__xeCJK_FullLeft_class_int=\XeTeXcharclass2 229 | \c__xeCJK_FullRight_class_int=\XeTeXcharclass3 230 | \c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4 231 | \c__xeCJK_HalfRight_class_int=\XeTeXcharclass5 232 | \c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6 233 | \c__xeCJK_CM_class_int=\XeTeXcharclass7 234 | \c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8 235 | \l__xeCJK_last_skip=\skip51 236 | \g__xeCJK_node_int=\count186 237 | \c__xeCJK_CJK_node_dim=\dimen138 238 | \c__xeCJK_CJK-space_node_dim=\dimen139 239 | \c__xeCJK_default_node_dim=\dimen140 240 | \c__xeCJK_default-space_node_dim=\dimen141 241 | \c__xeCJK_CJK-widow_node_dim=\dimen142 242 | \c__xeCJK_normalspace_node_dim=\dimen143 243 | \l__xeCJK_ccglue_skip=\skip52 244 | \l__xeCJK_ecglue_skip=\skip53 245 | \l__xeCJK_punct_kern_skip=\skip54 246 | \l__xeCJK_last_penalty_int=\count187 247 | \l__xeCJK_last_bound_dim=\dimen144 248 | \l__xeCJK_last_kern_dim=\dimen145 249 | \l__xeCJK_widow_penalty_int=\count188 250 | 251 | Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0 252 | (xtemplate) argument(s) on line 2352. 253 | 254 | \l__xeCJK_fixed_punct_width_dim=\dimen146 255 | \l__xeCJK_mixed_punct_width_dim=\dimen147 256 | \l__xeCJK_middle_punct_width_dim=\dimen148 257 | \l__xeCJK_fixed_margin_width_dim=\dimen149 258 | \l__xeCJK_mixed_margin_width_dim=\dimen150 259 | \l__xeCJK_middle_margin_width_dim=\dimen151 260 | \l__xeCJK_bound_punct_width_dim=\dimen152 261 | \l__xeCJK_bound_margin_width_dim=\dimen153 262 | \l__xeCJK_margin_minimum_dim=\dimen154 263 | \l__xeCJK_kerning_total_width_dim=\dimen155 264 | \l__xeCJK_same_align_margin_dim=\dimen156 265 | \l__xeCJK_different_align_margin_dim=\dimen157 266 | \l__xeCJK_kerning_margin_width_dim=\dimen158 267 | \l__xeCJK_kerning_margin_minimum_dim=\dimen159 268 | \l__xeCJK_bound_dim=\dimen160 269 | \l__xeCJK_reverse_bound_dim=\dimen161 270 | \l__xeCJK_minimum_bound_dim=\dimen162 271 | \l__xeCJK_kerning_margin_dim=\dimen163 272 | \l__xeCJK_original_margin_dim=\dimen164 273 | \g__xeCJK_family_int=\count189 274 | \l__xeCJK_fam_int=\count190 275 | \g__xeCJK_fam_allocation_int=\count191 276 | \l__xeCJK_verb_case_int=\count192 277 | \l__xeCJK_verb_exspace_skip=\skip55 278 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.sty 279 | Package: fontspec 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 280 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty 281 | Package: fontspec-xetex 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 282 | \l__fontspec_script_int=\count193 283 | \l__fontspec_language_int=\count194 284 | \l__fontspec_strnum_int=\count195 285 | \l__fontspec_tmp_int=\count196 286 | \l__fontspec_tmpa_int=\count197 287 | \l__fontspec_tmpb_int=\count198 288 | \l__fontspec_tmpc_int=\count199 289 | \l__fontspec_em_int=\count266 290 | \l__fontspec_emdef_int=\count267 291 | \l__fontspec_strong_int=\count268 292 | \l__fontspec_strongdef_int=\count269 293 | \l__fontspec_tmpa_dim=\dimen165 294 | \l__fontspec_tmpb_dim=\dimen166 295 | \l__fontspec_tmpc_dim=\dimen167 296 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fontenc.sty 297 | Package: fontenc 2018/08/11 v2.0j Standard LaTeX package 298 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/tuenc.def 299 | File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file 300 | LaTeX Font Info: Redeclaring font encoding TU on input line 82. 301 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.cfg) 302 | LaTeX Info: Redefining \itshape on input line 4051. 303 | LaTeX Info: Redefining \slshape on input line 4056. 304 | LaTeX Info: Redefining \scshape on input line 4061. 305 | LaTeX Info: Redefining \upshape on input line 4066. 306 | LaTeX Info: Redefining \em on input line 4096. 307 | LaTeX Info: Redefining \emph on input line 4121. 308 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg 309 | File: xeCJK.cfg 2019/04/07 v3.7.2 Configuration file for xeCJK package 310 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty 311 | Package: xeCJKfntef 2019/04/07 v3.7.2 xeCJK font effect 312 | (/usr/local/texlive/2019/texmf-dist/tex/generic/ulem/ulem.sty 313 | \UL@box=\box48 314 | \UL@hyphenbox=\box49 315 | \UL@skip=\skip56 316 | \UL@hook=\toks14 317 | \UL@height=\dimen168 318 | \UL@pe=\count270 319 | \UL@pixel=\dimen169 320 | \ULC@box=\box50 321 | Package: ulem 2012/05/18 322 | \ULdepth=\dimen170 323 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty 324 | Package: CJKfntef 2015/04/18 4.8.4 325 | \CJK@fntefSkip=\skip57 326 | \CJK@nest=\count271 327 | \CJK@fntefDimen=\dimen171 328 | \CJK@underdotBox=\box51 329 | \CJK@ULbox=\box52 330 | \CJK@underanyskip=\dimen172 331 | ) 332 | \l__xeCJK_space_skip=\skip58 333 | \c__xeCJK_ulem-begin_node_dim=\dimen173 334 | \c__xeCJK_null_box=\box53 335 | \l__xeCJK_fntef_box=\box54 336 | \l__xeCJK_under_symbol_box=\box55 337 | \c__xeCJK_filll_skip=\skip59 338 | ) 339 | \ccwd=\dimen174 340 | \l__ctex_ccglue_skip=\skip60 341 | ) 342 | \l__ctex_ziju_dim=\dimen175 343 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber.sty 344 | Package: zhnumber 2019/04/07 v2.7 Typesetting numbers with Chinese glyphs 345 | \l__zhnum_scale_int=\count272 346 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 347 | File: zhnumber-utf8.cfg 2019/04/07 v2.7 Chinese numerals with UTF8 encoding 348 | )) 349 | \l__ctex_heading_skip=\skip61 350 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-article.def 351 | File: ctex-scheme-chinese-article.def 2019/04/07 v2.4.15 Chinese scheme for article (CTEX) 352 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 353 | File: ctex-name-utf8.cfg 2019/04/07 v2.4.15 Caption with encoding UTF8 (CTEX) 354 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctex-c5size.clo 355 | File: ctex-c5size.clo 2019/04/07 v2.4.15 c5size option (CTEX) 356 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-mac.def 357 | File: ctex-fontset-mac.def 2019/04/07 v2.4.15 Mac OS X fonts definition (CTEX) 358 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-macnew.def 359 | File: ctex-fontset-macnew.def 2019/04/07 v2.4.15 Mac OS X fonts definition for El Capitan or later version (CTEX) 360 | 361 | 362 | Package fontspec Warning: Font "Songti SC Light" does not contain requested 363 | (fontspec) Script "CJK". 364 | 365 | 366 | Package fontspec Info: Font family 'SongtiSC(0)' created for font 'Songti SC' 367 | (fontspec) with options [Script={CJK},UprightFont={* 368 | (fontspec) Light},BoldItalicFont={Kaiti SC Bold},BoldFont={* 369 | (fontspec) Bold},ItalicFont={Kaiti SC}]. 370 | (fontspec) 371 | (fontspec) This font family consists of the following NFSS 372 | (fontspec) series/shapes: 373 | (fontspec) 374 | (fontspec) - 'normal' (m/n) with NFSS spec.: <->"Songti SC 375 | (fontspec) Light/OT" 376 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 377 | (fontspec) - 'bold' (bx/n) with NFSS spec.: <->"Songti SC Bold/OT" 378 | (fontspec) - 'bold small caps' (bx/sc) with NFSS spec.: 379 | (fontspec) - 'italic' (m/it) with NFSS spec.: <->"Kaiti SC/OT" 380 | (fontspec) - 'italic small caps' (m/itsc) with NFSS spec.: 381 | (fontspec) - 'bold italic' (bx/it) with NFSS spec.: <->"Kaiti SC 382 | (fontspec) Bold/OT" 383 | (fontspec) - 'bold italic small caps' (bx/itsc) with NFSS spec.: 384 | 385 | ))) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex.cfg 386 | File: ctex.cfg 2019/04/07 v2.4.15 Configuration file (CTEX) 387 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amsmath.sty 388 | Package: amsmath 2018/12/01 v2.17b AMS math features 389 | \@mathmargin=\skip62 390 | 391 | For additional information on amsmath, use the `?' option. 392 | (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amstext.sty 393 | Package: amstext 2000/06/29 v2.01 AMS text 394 | (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amsgen.sty 395 | File: amsgen.sty 1999/11/30 v2.0 generic functions 396 | \@emptytoks=\toks15 397 | \ex@=\dimen176 398 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amsbsy.sty 399 | Package: amsbsy 1999/11/29 v1.2d Bold Symbols 400 | \pmbraise@=\dimen177 401 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/amsmath/amsopn.sty 402 | Package: amsopn 2016/03/08 v2.02 operator names 403 | ) 404 | \inf@bad=\count273 405 | LaTeX Info: Redefining \frac on input line 223. 406 | \uproot@=\count274 407 | \leftroot@=\count275 408 | LaTeX Info: Redefining \overline on input line 385. 409 | \classnum@=\count276 410 | \DOTSCASE@=\count277 411 | LaTeX Info: Redefining \ldots on input line 482. 412 | LaTeX Info: Redefining \dots on input line 485. 413 | LaTeX Info: Redefining \cdots on input line 606. 414 | \Mathstrutbox@=\box56 415 | \strutbox@=\box57 416 | \big@size=\dimen178 417 | LaTeX Font Info: Redeclaring font encoding OML on input line 729. 418 | LaTeX Font Info: Redeclaring font encoding OMS on input line 730. 419 | \macc@depth=\count278 420 | \c@MaxMatrixCols=\count279 421 | \dotsspace@=\muskip17 422 | \c@parentequation=\count280 423 | \dspbrk@lvl=\count281 424 | \tag@help=\toks16 425 | \row@=\count282 426 | \column@=\count283 427 | \maxfields@=\count284 428 | \andhelp@=\toks17 429 | \eqnshift@=\dimen179 430 | \alignsep@=\dimen180 431 | \tagshift@=\dimen181 432 | \tagwidth@=\dimen182 433 | \totwidth@=\dimen183 434 | \lineht@=\dimen184 435 | \@envbody=\toks18 436 | \multlinegap=\skip63 437 | \multlinetaggap=\skip64 438 | \mathdisplay@stack=\toks19 439 | LaTeX Info: Redefining \[ on input line 2844. 440 | LaTeX Info: Redefining \] on input line 2845. 441 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/amsfonts/amssymb.sty 442 | Package: amssymb 2013/01/14 v3.01 AMS font symbols 443 | (/usr/local/texlive/2019/texmf-dist/tex/latex/amsfonts/amsfonts.sty 444 | Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support 445 | \symAMSa=\mathgroup4 446 | \symAMSb=\mathgroup5 447 | LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' 448 | (Font) U/euf/m/n --> U/euf/b/n on input line 106. 449 | )) (./8.aux) 450 | \openout1 = `8.aux'. 451 | 452 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 5. 453 | LaTeX Font Info: ... okay on input line 5. 454 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 5. 455 | LaTeX Font Info: ... okay on input line 5. 456 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 5. 457 | LaTeX Font Info: ... okay on input line 5. 458 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 5. 459 | LaTeX Font Info: ... okay on input line 5. 460 | LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 5. 461 | LaTeX Font Info: ... okay on input line 5. 462 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 5. 463 | LaTeX Font Info: ... okay on input line 5. 464 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 5. 465 | LaTeX Font Info: ... okay on input line 5. 466 | LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 5. 467 | LaTeX Font Info: ... okay on input line 5. 468 | ABD: EverySelectfont initializing macros 469 | LaTeX Info: Redefining \selectfont on input line 5. 470 | 471 | Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid 472 | (fontspec) this). 473 | 474 | \symlegacymaths=\mathgroup6 475 | LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' 476 | (Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 5. 477 | LaTeX Font Info: Redeclaring math accent \acute on input line 5. 478 | LaTeX Font Info: Redeclaring math accent \grave on input line 5. 479 | LaTeX Font Info: Redeclaring math accent \ddot on input line 5. 480 | LaTeX Font Info: Redeclaring math accent \tilde on input line 5. 481 | LaTeX Font Info: Redeclaring math accent \bar on input line 5. 482 | LaTeX Font Info: Redeclaring math accent \breve on input line 5. 483 | LaTeX Font Info: Redeclaring math accent \check on input line 5. 484 | LaTeX Font Info: Redeclaring math accent \hat on input line 5. 485 | LaTeX Font Info: Redeclaring math accent \dot on input line 5. 486 | LaTeX Font Info: Redeclaring math accent \mathring on input line 5. 487 | LaTeX Font Info: Redeclaring math symbol \Gamma on input line 5. 488 | LaTeX Font Info: Redeclaring math symbol \Delta on input line 5. 489 | LaTeX Font Info: Redeclaring math symbol \Theta on input line 5. 490 | LaTeX Font Info: Redeclaring math symbol \Lambda on input line 5. 491 | LaTeX Font Info: Redeclaring math symbol \Xi on input line 5. 492 | LaTeX Font Info: Redeclaring math symbol \Pi on input line 5. 493 | LaTeX Font Info: Redeclaring math symbol \Sigma on input line 5. 494 | LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 5. 495 | LaTeX Font Info: Redeclaring math symbol \Phi on input line 5. 496 | LaTeX Font Info: Redeclaring math symbol \Psi on input line 5. 497 | LaTeX Font Info: Redeclaring math symbol \Omega on input line 5. 498 | LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 5. 499 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 5. 500 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 501 | (Font) `operators' in the math version `normal' on input line 5. 502 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 503 | (Font) OT1/cmr/m/n --> TU/lmr/m/n on input line 5. 504 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 505 | (Font) `operators' in the math version `bold' on input line 5. 506 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 507 | (Font) OT1/cmr/bx/n --> TU/lmr/m/n on input line 5. 508 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 509 | (Font) TU/lmr/m/n --> TU/lmr/m/n on input line 5. 510 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 511 | (Font) OT1/cmr/m/it --> TU/lmr/m/it on input line 5. 512 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 513 | (Font) OT1/cmr/bx/n --> TU/lmr/bx/n on input line 5. 514 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 515 | (Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 5. 516 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 517 | (Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 5. 518 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 519 | (Font) TU/lmr/m/n --> TU/lmr/bx/n on input line 5. 520 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 521 | (Font) OT1/cmr/bx/it --> TU/lmr/bx/it on input line 5. 522 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 523 | (Font) OT1/cmss/bx/n --> TU/lmss/bx/n on input line 5. 524 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 525 | (Font) OT1/cmtt/m/n --> TU/lmtt/bx/n on input line 5. 526 | LaTeX Font Info: Try loading font information for U+msa on input line 7. 527 | (/usr/local/texlive/2019/texmf-dist/tex/latex/amsfonts/umsa.fd 528 | File: umsa.fd 2013/01/14 v3.01 AMS symbols A 529 | ) 530 | LaTeX Font Info: Try loading font information for U+msb on input line 7. 531 | (/usr/local/texlive/2019/texmf-dist/tex/latex/amsfonts/umsb.fd 532 | File: umsb.fd 2013/01/14 v3.01 AMS symbols B 533 | ) [1 534 | 535 | ] (./8.aux) ) 536 | Here is how much of TeX's memory you used: 537 | 16705 strings out of 492916 538 | 384651 string characters out of 6133345 539 | 459327 words of memory out of 5000000 540 | 20658 multiletter control sequences out of 15000+600000 541 | 535403 words of font info for 52 fonts, out of 8000000 for 9000 542 | 1348 hyphenation exceptions out of 8191 543 | 60i,15n,73p,399b,446s stack positions out of 5000i,500n,10000p,200000b,80000s 544 | 545 | Output written on 8.pdf (1 page). 546 | -------------------------------------------------------------------------------- /lesson8/8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson8/8.pdf -------------------------------------------------------------------------------- /lesson8/8.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson8/8.synctex.gz -------------------------------------------------------------------------------- /lesson8/8.tex: -------------------------------------------------------------------------------- 1 | \documentclass{ctexart} 2 | \usepackage{amsmath} 3 | \usepackage{amssymb} 4 | 5 | \begin{document} 6 | % 带编号 7 | \begin{gather} 8 | a+b=b+a\\ 9 | ab ba 10 | \end{gather} 11 | 12 | % 不带编号 13 | \begin{gather*} 14 | a+b=b+a\\ 15 | 3+5=5+3=8\\ 16 | 3\times 5=5\times 3=15 17 | \end{gather*} 18 | 19 | % 在\\前使用\notag阻止编号 20 | \begin{gather} 21 | a+b=b+a\\ 22 | 3+5=5+3=8 \notag \\ 23 | 3\times 5=5\times 3=15 24 | \end{gather} 25 | 26 | % align和align*环境(用&进行对齐) 27 | % 带编号 28 | \begin{align} 29 | x &= t + \cos t + 1 \\ 30 | x &= 2 \sin t 31 | \end{align} 32 | % 不带编号 33 | \begin{align*} 34 | x &= t + \cos t + 1 & x &= \cos t & x &= t\\ 35 | x &= 2 \sin t & y &= 2t & y &= \sin(t+1) 36 | \end{align*} 37 | 38 | % split环境(对齐采用align环境的方式,编号在中间) 39 | % 带编号 40 | \begin{equation} 41 | \begin{split} 42 | \cos 2x &= \cos ^2 x-\sin^2 x\\ 43 | &= 2\cos^2x -1 44 | \end{split} 45 | \end{equation} 46 | % 不带编号 47 | \begin{equation*} 48 | \begin{split} 49 | \cos 2x &= \cos ^2 x-\sin^2 x\\ 50 | &= 2\cos^2x -1 51 | \end{split} 52 | \end{equation*} 53 | 54 | % case环境 55 | % 每行公式使用&分割为两部分, 56 | % 通常表示值和后面的条件 57 | \begin{equation} 58 | D(X)=\begin{cases} 59 | 1,& \text{如果 }x \in \mathbb{Q};\\ 60 | 0,& \text{如果}x \in \mathbb{R} \setminus\mathbb{Q} 61 | \end{cases} 62 | \end{equation} 63 | \end{document} -------------------------------------------------------------------------------- /lesson9/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson9/.DS_Store -------------------------------------------------------------------------------- /lesson9/9.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \citation{王华朋2008声纹识别特征} 3 | \citation{*} 4 | \bibstyle{ieeetr} 5 | \bibdata{9} 6 | \bibcite{杨阳2007声纹识别技术及其应用}{1} 7 | \bibcite{王华朋2008声纹识别特征}{2} 8 | \bibcite{王英利2012声纹鉴定技术综述}{3} 9 | -------------------------------------------------------------------------------- /lesson9/9.bbl: -------------------------------------------------------------------------------- 1 | \begin{thebibliography}{1} 2 | 3 | \bibitem{杨阳2007声纹识别技术及其应用} 4 | 杨阳 and 陈永明, ``声纹识别技术及其应用,'' {\em 電聲技術}, 5 | vol.~31, no.~2, pp.~45--46, 2007. 6 | 7 | \bibitem{王华朋2008声纹识别特征} 8 | 王华朋 and 杨洪臣, ``声纹识别特征 mfcc 的提取方法研究,'' 9 | {\em 中国人民公安大学学报: 自然科学版}, vol.~14, no.~1, 10 | p.~28r30, 2008. 11 | 12 | \bibitem{王英利2012声纹鉴定技术综述} 13 | 王英利, 李敬阳, and 曹洪林, ``声纹鉴定技术综述,'' {\em 14 | 警察技术}, vol.~4, no.~5, pp.~4--56, 2012. 15 | 16 | \end{thebibliography} 17 | -------------------------------------------------------------------------------- /lesson9/9.bib: -------------------------------------------------------------------------------- 1 | @article{杨阳2007声纹识别技术及其应用, 2 | title={声纹识别技术及其应用}, 3 | author={杨阳 and 陈永明}, 4 | journal={電聲技術}, 5 | volume={31}, 6 | number={2}, 7 | pages={45--46}, 8 | year={2007}, 9 | publisher={北京電視電聲雜誌社} 10 | } 11 | @article{王华朋2008声纹识别特征, 12 | title={声纹识别特征 MFCC 的提取方法研究}, 13 | author={王华朋 and 杨洪臣}, 14 | journal={中国人民公安大学学报: 自然科学版}, 15 | volume={14}, 16 | number={1}, 17 | pages={28r30}, 18 | year={2008} 19 | } 20 | @article{王英利2012声纹鉴定技术综述, 21 | title={声纹鉴定技术综述}, 22 | author={王英利 and 李敬阳 and 曹洪林}, 23 | journal={警察技术}, 24 | volume={4}, 25 | number={5}, 26 | pages={4--56}, 27 | year={2012} 28 | } -------------------------------------------------------------------------------- /lesson9/9.blg: -------------------------------------------------------------------------------- 1 | This is BibTeX, Version 0.99d (TeX Live 2019) 2 | Capacity: max_strings=100000, hash_size=100000, hash_prime=85009 3 | The top-level auxiliary file: 9.aux 4 | The style file: ieeetr.bst 5 | Database file #1: 9.bib 6 | You've used 3 entries, 7 | 1876 wiz_defined-function locations, 8 | 497 strings with 3869 characters, 9 | and the built_in function-call counts, 867 in all, are: 10 | = -- 92 11 | > -- 27 12 | < -- 0 13 | + -- 10 14 | - -- 7 15 | * -- 61 16 | := -- 127 17 | add.period$ -- 3 18 | call.type$ -- 3 19 | change.case$ -- 3 20 | chr.to.int$ -- 0 21 | cite$ -- 3 22 | duplicate$ -- 47 23 | empty$ -- 76 24 | format.name$ -- 7 25 | if$ -- 213 26 | int.to.chr$ -- 0 27 | int.to.str$ -- 3 28 | missing$ -- 3 29 | newline$ -- 12 30 | num.names$ -- 3 31 | pop$ -- 4 32 | preamble$ -- 1 33 | purify$ -- 0 34 | quote$ -- 0 35 | skip$ -- 37 36 | stack$ -- 0 37 | substring$ -- 53 38 | swap$ -- 23 39 | text.length$ -- 0 40 | text.prefix$ -- 0 41 | top$ -- 0 42 | type$ -- 0 43 | warning$ -- 0 44 | while$ -- 10 45 | width$ -- 4 46 | write$ -- 35 47 | -------------------------------------------------------------------------------- /lesson9/9.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019) (preloaded format=xelatex 2020.2.17) 24 FEB 2020 14:42 2 | entering extended mode 3 | restricted \write18 enabled. 4 | file:line:error style messages enabled. 5 | %&-line parsing enabled. 6 | **/Users/obsidian/source/latex_test/lesson9/9 7 | (/Users/obsidian/source/latex_test/lesson9/9.tex 8 | LaTeX2e <2018-12-01> 9 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexart.cls (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3.sty 10 | Package: expl3 2019-05-07 L3 programming layer (loader) 11 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3-code.tex 12 | Package: expl3 2019-05-07 L3 programming layer (code) 13 | \c_max_int=\count80 14 | \l_tmpa_int=\count81 15 | \l_tmpb_int=\count82 16 | \g_tmpa_int=\count83 17 | \g_tmpb_int=\count84 18 | \g__kernel_prg_map_int=\count85 19 | \c__ior_term_ior=\count86 20 | \c_log_iow=\count87 21 | \l_iow_line_count_int=\count88 22 | \l__iow_line_target_int=\count89 23 | \l__iow_one_indent_int=\count90 24 | \l__iow_indent_int=\count91 25 | \c_zero_dim=\dimen102 26 | \c_max_dim=\dimen103 27 | \l_tmpa_dim=\dimen104 28 | \l_tmpb_dim=\dimen105 29 | \g_tmpa_dim=\dimen106 30 | \g_tmpb_dim=\dimen107 31 | \c_zero_skip=\skip41 32 | \c_max_skip=\skip42 33 | \l_tmpa_skip=\skip43 34 | \l_tmpb_skip=\skip44 35 | \g_tmpa_skip=\skip45 36 | \g_tmpb_skip=\skip46 37 | \c_zero_muskip=\muskip10 38 | \c_max_muskip=\muskip11 39 | \l_tmpa_muskip=\muskip12 40 | \l_tmpb_muskip=\muskip13 41 | \g_tmpa_muskip=\muskip14 42 | \g_tmpb_muskip=\muskip15 43 | \l_keys_choice_int=\count92 44 | \l__intarray_loop_int=\count93 45 | \c__intarray_sp_dim=\dimen108 46 | \g__intarray_font_int=\count94 47 | \c__fp_leading_shift_int=\count95 48 | \c__fp_middle_shift_int=\count96 49 | \c__fp_trailing_shift_int=\count97 50 | \c__fp_big_leading_shift_int=\count98 51 | \c__fp_big_middle_shift_int=\count99 52 | \c__fp_big_trailing_shift_int=\count100 53 | \c__fp_Bigg_leading_shift_int=\count101 54 | \c__fp_Bigg_middle_shift_int=\count102 55 | \c__fp_Bigg_trailing_shift_int=\count103 56 | \g__fp_array_int=\count104 57 | \l__fp_array_loop_int=\count105 58 | \l__sort_length_int=\count106 59 | \l__sort_min_int=\count107 60 | \l__sort_top_int=\count108 61 | \l__sort_max_int=\count109 62 | \l__sort_true_max_int=\count110 63 | \l__sort_block_int=\count111 64 | \l__sort_begin_int=\count112 65 | \l__sort_end_int=\count113 66 | \l__sort_A_int=\count114 67 | \l__sort_B_int=\count115 68 | \l__sort_C_int=\count116 69 | \l__tl_analysis_normal_int=\count117 70 | \l__tl_analysis_index_int=\count118 71 | \l__tl_analysis_nesting_int=\count119 72 | \l__tl_analysis_type_int=\count120 73 | \l__regex_internal_a_int=\count121 74 | \l__regex_internal_b_int=\count122 75 | \l__regex_internal_c_int=\count123 76 | \l__regex_balance_int=\count124 77 | \l__regex_group_level_int=\count125 78 | \l__regex_mode_int=\count126 79 | \c__regex_cs_in_class_mode_int=\count127 80 | \c__regex_cs_mode_int=\count128 81 | \l__regex_catcodes_int=\count129 82 | \l__regex_default_catcodes_int=\count130 83 | \c__regex_catcode_L_int=\count131 84 | \c__regex_catcode_O_int=\count132 85 | \c__regex_catcode_A_int=\count133 86 | \c__regex_all_catcodes_int=\count134 87 | \l__regex_show_lines_int=\count135 88 | \l__regex_min_state_int=\count136 89 | \l__regex_max_state_int=\count137 90 | \l__regex_left_state_int=\count138 91 | \l__regex_right_state_int=\count139 92 | \l__regex_capturing_group_int=\count140 93 | \l__regex_min_pos_int=\count141 94 | \l__regex_max_pos_int=\count142 95 | \l__regex_curr_pos_int=\count143 96 | \l__regex_start_pos_int=\count144 97 | \l__regex_success_pos_int=\count145 98 | \l__regex_curr_char_int=\count146 99 | \l__regex_curr_catcode_int=\count147 100 | \l__regex_last_char_int=\count148 101 | \l__regex_case_changed_char_int=\count149 102 | \l__regex_curr_state_int=\count150 103 | \l__regex_step_int=\count151 104 | \l__regex_min_active_int=\count152 105 | \l__regex_max_active_int=\count153 106 | \l__regex_replacement_csnames_int=\count154 107 | \l__regex_match_count_int=\count155 108 | \l__regex_min_submatch_int=\count156 109 | \l__regex_submatch_int=\count157 110 | \l__regex_zeroth_submatch_int=\count158 111 | \g__regex_trace_regex_int=\count159 112 | \c_empty_box=\box27 113 | \l_tmpa_box=\box28 114 | \l_tmpb_box=\box29 115 | \g_tmpa_box=\box30 116 | \g_tmpb_box=\box31 117 | \l__box_top_dim=\dimen109 118 | \l__box_bottom_dim=\dimen110 119 | \l__box_left_dim=\dimen111 120 | \l__box_right_dim=\dimen112 121 | \l__box_top_new_dim=\dimen113 122 | \l__box_bottom_new_dim=\dimen114 123 | \l__box_left_new_dim=\dimen115 124 | \l__box_right_new_dim=\dimen116 125 | \l__box_internal_box=\box32 126 | \l__coffin_internal_box=\box33 127 | \l__coffin_internal_dim=\dimen117 128 | \l__coffin_offset_x_dim=\dimen118 129 | \l__coffin_offset_y_dim=\dimen119 130 | \l__coffin_x_dim=\dimen120 131 | \l__coffin_y_dim=\dimen121 132 | \l__coffin_x_prime_dim=\dimen122 133 | \l__coffin_y_prime_dim=\dimen123 134 | \c_empty_coffin=\box34 135 | \l__coffin_aligned_coffin=\box35 136 | \l__coffin_aligned_internal_coffin=\box36 137 | \l_tmpa_coffin=\box37 138 | \l_tmpb_coffin=\box38 139 | \g_tmpa_coffin=\box39 140 | \g_tmpb_coffin=\box40 141 | \l__coffin_bounding_shift_dim=\dimen124 142 | \l__coffin_left_corner_dim=\dimen125 143 | \l__coffin_right_corner_dim=\dimen126 144 | \l__coffin_bottom_corner_dim=\dimen127 145 | \l__coffin_top_corner_dim=\dimen128 146 | \l__coffin_scaled_total_height_dim=\dimen129 147 | \l__coffin_scaled_width_dim=\dimen130 148 | \c__coffin_empty_coffin=\box41 149 | \l__coffin_display_coffin=\box42 150 | \l__coffin_display_coord_coffin=\box43 151 | \l__coffin_display_pole_coffin=\box44 152 | \l__coffin_display_offset_dim=\dimen131 153 | \l__coffin_display_x_dim=\dimen132 154 | \l__coffin_display_y_dim=\dimen133 155 | \g__file_internal_ior=\read1 156 | \l__seq_internal_a_int=\count160 157 | \l__seq_internal_b_int=\count161 158 | \c__deprecation_minus_one=\count162 159 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def 160 | File: l3xdvipdfmx.def 2019-04-06 v L3 Experimental driver: xdvipdfmx 161 | \g__driver_image_int=\count163 162 | \l__driver_pdf_tmp_box=\box45 163 | \g__driver_pdf_object_int=\count164 164 | \g__driver_pdf_annotation_int=\count165 165 | )) 166 | Document Class: ctexart 2019/04/07 v2.4.15 Chinese adapter for class article (CTEX) 167 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 168 | Package: xparse 2019-05-03 L3 Experimental document command parser 169 | \l__xparse_current_arg_int=\count166 170 | \g__xparse_grabber_int=\count167 171 | \l__xparse_m_args_int=\count168 172 | \l__xparse_v_nesting_int=\count169 173 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 174 | Package: l3keys2e 2019-05-03 LaTeX2e option processing using LaTeX3 keys 175 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexhook.sty 176 | Package: ctexhook 2019/04/07 v2.4.15 Document and package hooks (CTEX) 177 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctexpatch.sty 178 | Package: ctexpatch 2019/04/07 v2.4.15 Patching commands (CTEX) 179 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fix-cm.sty 180 | Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX 181 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/ts1enc.def 182 | File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file 183 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ms/everysel.sty 184 | Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS) 185 | ) 186 | \l__ctex_tmp_int=\count170 187 | \l__ctex_tmp_box=\box46 188 | \l__ctex_tmp_dim=\dimen134 189 | \g__ctex_section_depth_int=\count171 190 | \g__ctex_font_size_int=\count172 191 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 192 | File: ctexopts.cfg 2019/04/07 v2.4.15 Option configuration file (CTEX) 193 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/base/article.cls 194 | Document Class: article 2018/09/03 v1.4i Standard LaTeX document class 195 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/size10.clo 196 | File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) 197 | ) 198 | \c@part=\count173 199 | \c@section=\count174 200 | \c@subsection=\count175 201 | \c@subsubsection=\count176 202 | \c@paragraph=\count177 203 | \c@subparagraph=\count178 204 | \c@figure=\count179 205 | \c@table=\count180 206 | \abovecaptionskip=\skip47 207 | \belowcaptionskip=\skip48 208 | \bibindent=\dimen135 209 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def 210 | File: ctex-engine-xetex.def 2019/04/07 v2.4.15 XeLaTeX adapter (CTEX) 211 | (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.sty 212 | Package: xeCJK 2019/04/07 v3.7.2 Typesetting CJK scripts with XeLaTeX 213 | (/usr/local/texlive/2019/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty 214 | Package: xtemplate 2019-05-03 L3 Experimental prototype document functions 215 | \l__xtemplate_tmp_dim=\dimen136 216 | \l__xtemplate_tmp_int=\count181 217 | \l__xtemplate_tmp_muskip=\muskip16 218 | \l__xtemplate_tmp_skip=\skip49 219 | ) 220 | \l__xeCJK_tmp_int=\count182 221 | \l__xeCJK_tmp_box=\box47 222 | \l__xeCJK_tmp_dim=\dimen137 223 | \l__xeCJK_tmp_skip=\skip50 224 | \g__xeCJK_space_factor_int=\count183 225 | \l__xeCJK_begin_int=\count184 226 | \l__xeCJK_end_int=\count185 227 | \c__xeCJK_CJK_class_int=\XeTeXcharclass1 228 | \c__xeCJK_FullLeft_class_int=\XeTeXcharclass2 229 | \c__xeCJK_FullRight_class_int=\XeTeXcharclass3 230 | \c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4 231 | \c__xeCJK_HalfRight_class_int=\XeTeXcharclass5 232 | \c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6 233 | \c__xeCJK_CM_class_int=\XeTeXcharclass7 234 | \c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8 235 | \l__xeCJK_last_skip=\skip51 236 | \g__xeCJK_node_int=\count186 237 | \c__xeCJK_CJK_node_dim=\dimen138 238 | \c__xeCJK_CJK-space_node_dim=\dimen139 239 | \c__xeCJK_default_node_dim=\dimen140 240 | \c__xeCJK_default-space_node_dim=\dimen141 241 | \c__xeCJK_CJK-widow_node_dim=\dimen142 242 | \c__xeCJK_normalspace_node_dim=\dimen143 243 | \l__xeCJK_ccglue_skip=\skip52 244 | \l__xeCJK_ecglue_skip=\skip53 245 | \l__xeCJK_punct_kern_skip=\skip54 246 | \l__xeCJK_last_penalty_int=\count187 247 | \l__xeCJK_last_bound_dim=\dimen144 248 | \l__xeCJK_last_kern_dim=\dimen145 249 | \l__xeCJK_widow_penalty_int=\count188 250 | 251 | Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0 252 | (xtemplate) argument(s) on line 2352. 253 | 254 | \l__xeCJK_fixed_punct_width_dim=\dimen146 255 | \l__xeCJK_mixed_punct_width_dim=\dimen147 256 | \l__xeCJK_middle_punct_width_dim=\dimen148 257 | \l__xeCJK_fixed_margin_width_dim=\dimen149 258 | \l__xeCJK_mixed_margin_width_dim=\dimen150 259 | \l__xeCJK_middle_margin_width_dim=\dimen151 260 | \l__xeCJK_bound_punct_width_dim=\dimen152 261 | \l__xeCJK_bound_margin_width_dim=\dimen153 262 | \l__xeCJK_margin_minimum_dim=\dimen154 263 | \l__xeCJK_kerning_total_width_dim=\dimen155 264 | \l__xeCJK_same_align_margin_dim=\dimen156 265 | \l__xeCJK_different_align_margin_dim=\dimen157 266 | \l__xeCJK_kerning_margin_width_dim=\dimen158 267 | \l__xeCJK_kerning_margin_minimum_dim=\dimen159 268 | \l__xeCJK_bound_dim=\dimen160 269 | \l__xeCJK_reverse_bound_dim=\dimen161 270 | \l__xeCJK_minimum_bound_dim=\dimen162 271 | \l__xeCJK_kerning_margin_dim=\dimen163 272 | \l__xeCJK_original_margin_dim=\dimen164 273 | \g__xeCJK_family_int=\count189 274 | \l__xeCJK_fam_int=\count190 275 | \g__xeCJK_fam_allocation_int=\count191 276 | \l__xeCJK_verb_case_int=\count192 277 | \l__xeCJK_verb_exspace_skip=\skip55 278 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.sty 279 | Package: fontspec 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 280 | (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty 281 | Package: fontspec-xetex 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 282 | \l__fontspec_script_int=\count193 283 | \l__fontspec_language_int=\count194 284 | \l__fontspec_strnum_int=\count195 285 | \l__fontspec_tmp_int=\count196 286 | \l__fontspec_tmpa_int=\count197 287 | \l__fontspec_tmpb_int=\count198 288 | \l__fontspec_tmpc_int=\count199 289 | \l__fontspec_em_int=\count266 290 | \l__fontspec_emdef_int=\count267 291 | \l__fontspec_strong_int=\count268 292 | \l__fontspec_strongdef_int=\count269 293 | \l__fontspec_tmpa_dim=\dimen165 294 | \l__fontspec_tmpb_dim=\dimen166 295 | \l__fontspec_tmpc_dim=\dimen167 296 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/fontenc.sty 297 | Package: fontenc 2018/08/11 v2.0j Standard LaTeX package 298 | (/usr/local/texlive/2019/texmf-dist/tex/latex/base/tuenc.def 299 | File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file 300 | LaTeX Font Info: Redeclaring font encoding TU on input line 82. 301 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.cfg) 302 | LaTeX Info: Redefining \itshape on input line 4051. 303 | LaTeX Info: Redefining \slshape on input line 4056. 304 | LaTeX Info: Redefining \scshape on input line 4061. 305 | LaTeX Info: Redefining \upshape on input line 4066. 306 | LaTeX Info: Redefining \em on input line 4096. 307 | LaTeX Info: Redefining \emph on input line 4121. 308 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg 309 | File: xeCJK.cfg 2019/04/07 v3.7.2 Configuration file for xeCJK package 310 | )) (/usr/local/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty 311 | Package: xeCJKfntef 2019/04/07 v3.7.2 xeCJK font effect 312 | (/usr/local/texlive/2019/texmf-dist/tex/generic/ulem/ulem.sty 313 | \UL@box=\box48 314 | \UL@hyphenbox=\box49 315 | \UL@skip=\skip56 316 | \UL@hook=\toks14 317 | \UL@height=\dimen168 318 | \UL@pe=\count270 319 | \UL@pixel=\dimen169 320 | \ULC@box=\box50 321 | Package: ulem 2012/05/18 322 | \ULdepth=\dimen170 323 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty 324 | Package: CJKfntef 2015/04/18 4.8.4 325 | \CJK@fntefSkip=\skip57 326 | \CJK@nest=\count271 327 | \CJK@fntefDimen=\dimen171 328 | \CJK@underdotBox=\box51 329 | \CJK@ULbox=\box52 330 | \CJK@underanyskip=\dimen172 331 | ) 332 | \l__xeCJK_space_skip=\skip58 333 | \c__xeCJK_ulem-begin_node_dim=\dimen173 334 | \c__xeCJK_null_box=\box53 335 | \l__xeCJK_fntef_box=\box54 336 | \l__xeCJK_under_symbol_box=\box55 337 | \c__xeCJK_filll_skip=\skip59 338 | ) 339 | \ccwd=\dimen174 340 | \l__ctex_ccglue_skip=\skip60 341 | ) 342 | \l__ctex_ziju_dim=\dimen175 343 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber.sty 344 | Package: zhnumber 2019/04/07 v2.7 Typesetting numbers with Chinese glyphs 345 | \l__zhnum_scale_int=\count272 346 | (/usr/local/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 347 | File: zhnumber-utf8.cfg 2019/04/07 v2.7 Chinese numerals with UTF8 encoding 348 | )) 349 | \l__ctex_heading_skip=\skip61 350 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese-article.def 351 | File: ctex-scheme-chinese-article.def 2019/04/07 v2.4.15 Chinese scheme for article (CTEX) 352 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 353 | File: ctex-name-utf8.cfg 2019/04/07 v2.4.15 Caption with encoding UTF8 (CTEX) 354 | )) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/ctex-c5size.clo 355 | File: ctex-c5size.clo 2019/04/07 v2.4.15 c5size option (CTEX) 356 | ) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-mac.def 357 | File: ctex-fontset-mac.def 2019/04/07 v2.4.15 Mac OS X fonts definition (CTEX) 358 | (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-macnew.def 359 | File: ctex-fontset-macnew.def 2019/04/07 v2.4.15 Mac OS X fonts definition for El Capitan or later version (CTEX) 360 | 361 | 362 | Package fontspec Warning: Font "Songti SC Light" does not contain requested 363 | (fontspec) Script "CJK". 364 | 365 | 366 | Package fontspec Info: Font family 'SongtiSC(0)' created for font 'Songti SC' 367 | (fontspec) with options [Script={CJK},UprightFont={* 368 | (fontspec) Light},BoldItalicFont={Kaiti SC Bold},BoldFont={* 369 | (fontspec) Bold},ItalicFont={Kaiti SC}]. 370 | (fontspec) 371 | (fontspec) This font family consists of the following NFSS 372 | (fontspec) series/shapes: 373 | (fontspec) 374 | (fontspec) - 'normal' (m/n) with NFSS spec.: <->"Songti SC 375 | (fontspec) Light/OT" 376 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 377 | (fontspec) - 'bold' (bx/n) with NFSS spec.: <->"Songti SC Bold/OT" 378 | (fontspec) - 'bold small caps' (bx/sc) with NFSS spec.: 379 | (fontspec) - 'italic' (m/it) with NFSS spec.: <->"Kaiti SC/OT" 380 | (fontspec) - 'italic small caps' (m/itsc) with NFSS spec.: 381 | (fontspec) - 'bold italic' (bx/it) with NFSS spec.: <->"Kaiti SC 382 | (fontspec) Bold/OT" 383 | (fontspec) - 'bold italic small caps' (bx/itsc) with NFSS spec.: 384 | 385 | ))) (/usr/local/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex.cfg 386 | File: ctex.cfg 2019/04/07 v2.4.15 Configuration file (CTEX) 387 | ) (./9.aux) 388 | \openout1 = `9.aux'. 389 | 390 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 3. 391 | LaTeX Font Info: ... okay on input line 3. 392 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 3. 393 | LaTeX Font Info: ... okay on input line 3. 394 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 3. 395 | LaTeX Font Info: ... okay on input line 3. 396 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 3. 397 | LaTeX Font Info: ... okay on input line 3. 398 | LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 3. 399 | LaTeX Font Info: ... okay on input line 3. 400 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 3. 401 | LaTeX Font Info: ... okay on input line 3. 402 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 3. 403 | LaTeX Font Info: ... okay on input line 3. 404 | LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 3. 405 | LaTeX Font Info: ... okay on input line 3. 406 | ABD: EverySelectfont initializing macros 407 | LaTeX Info: Redefining \selectfont on input line 3. 408 | 409 | Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid 410 | (fontspec) this). 411 | 412 | \symlegacymaths=\mathgroup4 413 | LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' 414 | (Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 3. 415 | LaTeX Font Info: Redeclaring math accent \acute on input line 3. 416 | LaTeX Font Info: Redeclaring math accent \grave on input line 3. 417 | LaTeX Font Info: Redeclaring math accent \ddot on input line 3. 418 | LaTeX Font Info: Redeclaring math accent \tilde on input line 3. 419 | LaTeX Font Info: Redeclaring math accent \bar on input line 3. 420 | LaTeX Font Info: Redeclaring math accent \breve on input line 3. 421 | LaTeX Font Info: Redeclaring math accent \check on input line 3. 422 | LaTeX Font Info: Redeclaring math accent \hat on input line 3. 423 | LaTeX Font Info: Redeclaring math accent \dot on input line 3. 424 | LaTeX Font Info: Redeclaring math accent \mathring on input line 3. 425 | LaTeX Font Info: Redeclaring math symbol \colon on input line 3. 426 | LaTeX Font Info: Redeclaring math symbol \Gamma on input line 3. 427 | LaTeX Font Info: Redeclaring math symbol \Delta on input line 3. 428 | LaTeX Font Info: Redeclaring math symbol \Theta on input line 3. 429 | LaTeX Font Info: Redeclaring math symbol \Lambda on input line 3. 430 | LaTeX Font Info: Redeclaring math symbol \Xi on input line 3. 431 | LaTeX Font Info: Redeclaring math symbol \Pi on input line 3. 432 | LaTeX Font Info: Redeclaring math symbol \Sigma on input line 3. 433 | LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 3. 434 | LaTeX Font Info: Redeclaring math symbol \Phi on input line 3. 435 | LaTeX Font Info: Redeclaring math symbol \Psi on input line 3. 436 | LaTeX Font Info: Redeclaring math symbol \Omega on input line 3. 437 | LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 3. 438 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 3. 439 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 440 | (Font) `operators' in the math version `normal' on input line 3. 441 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 442 | (Font) OT1/cmr/m/n --> TU/lmr/m/n on input line 3. 443 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 444 | (Font) `operators' in the math version `bold' on input line 3. 445 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 446 | (Font) OT1/cmr/bx/n --> TU/lmr/m/n on input line 3. 447 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 448 | (Font) TU/lmr/m/n --> TU/lmr/m/n on input line 3. 449 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 450 | (Font) OT1/cmr/m/it --> TU/lmr/m/it on input line 3. 451 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 452 | (Font) OT1/cmr/bx/n --> TU/lmr/bx/n on input line 3. 453 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 454 | (Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 3. 455 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 456 | (Font) OT1/cmtt/m/n --> TU/lmtt/m/n on input line 3. 457 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 458 | (Font) TU/lmr/m/n --> TU/lmr/bx/n on input line 3. 459 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 460 | (Font) OT1/cmr/bx/it --> TU/lmr/bx/it on input line 3. 461 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 462 | (Font) OT1/cmss/bx/n --> TU/lmss/bx/n on input line 3. 463 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 464 | (Font) OT1/cmtt/m/n --> TU/lmtt/bx/n on input line 3. 465 | (./9.bbl) 466 | LaTeX Font Info: Font shape `TU/SongtiSC(0)/m/sl' in size <10.53937> not available 467 | (Font) Font shape `TU/SongtiSC(0)/m/it' tried instead on input line 9. 468 | [1 469 | 470 | ] (./9.aux) ) 471 | Here is how much of TeX's memory you used: 472 | 15822 strings out of 492916 473 | 375248 string characters out of 6133345 474 | 455327 words of memory out of 5000000 475 | 19807 multiletter control sequences out of 15000+600000 476 | 532564 words of font info for 40 fonts, out of 8000000 for 9000 477 | 1348 hyphenation exceptions out of 8191 478 | 60i,4n,73p,396b,446s stack positions out of 5000i,500n,10000p,200000b,80000s 479 | 480 | Output written on 9.pdf (1 page). 481 | -------------------------------------------------------------------------------- /lesson9/9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson9/9.pdf -------------------------------------------------------------------------------- /lesson9/9.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lesson9/9.synctex.gz -------------------------------------------------------------------------------- /lesson9/9.tex: -------------------------------------------------------------------------------- 1 | \documentclass{ctexart} 2 | \usepackage{ctex} 3 | \begin{document} 4 | % \bibliographystyle{plain} 5 | 一次管理,一次使用\cite{王华朋2008声纹识别特征} 6 | \nocite{*} 7 | \bibliographystyle{ieeetr} 8 | \bibliography{9} 9 | \end{document} -------------------------------------------------------------------------------- /lshort.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ooobsidian/learn_latex/46cbf09b0d8b057e23eac17811e6e01037880fb3/lshort.pdf --------------------------------------------------------------------------------