├── .DS_Store ├── RUCbeamer.rar ├── figure └── VD.png ├── ruc_logo.png ├── ruc_title.png ├── rucbeamer.pdf ├── .gitattributes ├── ruc_background.png ├── _output.yaml ├── output_bat.txt ├── beamer.Rproj ├── readme.txt ├── rucbeamer.Rmd ├── beamer_default.tex ├── ruc.sty └── rucbeamer.log /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rucliyang/RUCbeamer/HEAD/.DS_Store -------------------------------------------------------------------------------- /RUCbeamer.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rucliyang/RUCbeamer/HEAD/RUCbeamer.rar -------------------------------------------------------------------------------- /figure/VD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rucliyang/RUCbeamer/HEAD/figure/VD.png -------------------------------------------------------------------------------- /ruc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rucliyang/RUCbeamer/HEAD/ruc_logo.png -------------------------------------------------------------------------------- /ruc_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rucliyang/RUCbeamer/HEAD/ruc_title.png -------------------------------------------------------------------------------- /rucbeamer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rucliyang/RUCbeamer/HEAD/rucbeamer.pdf -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /ruc_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rucliyang/RUCbeamer/HEAD/ruc_background.png -------------------------------------------------------------------------------- /_output.yaml: -------------------------------------------------------------------------------- 1 | beamer_presentation: 2 | latex_engine: xelatex 3 | template: beamer_default.tex 4 | fonttheme: professionalfonts 5 | highlight: pygments 6 | -------------------------------------------------------------------------------- /output_bat.txt: -------------------------------------------------------------------------------- 1 | beamer_presentation: 2 | latex_engine: xelatex 3 | template: beamer_default.tex 4 | theme: Warsaw 5 | fonttheme: professionalfonts 6 | highlight: pygments 7 | -------------------------------------------------------------------------------- /beamer.Rproj: -------------------------------------------------------------------------------- 1 | Version: 1.0 2 | 3 | RestoreWorkspace: Default 4 | SaveWorkspace: Default 5 | AlwaysSaveHistory: Default 6 | 7 | EnableCodeIndexing: Yes 8 | UseSpacesForTab: Yes 9 | NumSpacesForTab: 2 10 | Encoding: UTF-8 11 | 12 | RnwWeave: knitr 13 | LaTeX: XeLaTeX 14 | 15 | StripTrailingWhitespace: Yes 16 | -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | 1. 打开文件夹,用 Rstudio 打开 ch1.RMD 文件,然后点击 Knit 编译生成 beamer。 2 | 2. 一个 # 号开始一个新的章节,两个 # 号开始一张新的幻灯片。 3 | 3. 在每一页幻灯片中,可以分别用 * + - 生成不同级别的 item,注意缩进,注意符号后要有一个空格,例如: 4 | * 中国 5 | + 广东 6 | - 广州 7 | - 深圳 8 | + 湖南 9 | - 长沙 10 | 4. 如果需要枚举,用“数字.”代替上面的 * + - 即可,注意“.”之后要有空格,例如: 11 | * 中国 12 | + 广东 13 | 1. 广州 14 | 2. 深圳 15 | + 湖南 16 | 1. 长沙 17 | 5. 为了规范使用,建议将图片统一放在一个子文件夹中,例如 figure 文件夹,然后通过以下方式引用: 18 | ![图片名称](图片路径) 19 | 例如: 20 | ![婴儿名数据集](figure/baby.jpg){ width="60%" } 21 | 最后一个指令是将图片缩成原来的60%,注意大括号和 width=60% 之间一定要有空格,才能生效。 22 | 6. 如果插入图片成功,在编译前就可以看到预览。没看到则表示文件路径出错。 23 | 7. 以 ruc 开头的图片是用来生成模板的,不要放在 figure 文件夹里。 24 | 8. 其他文件也与生成模板有关,一般不需要动。 25 | 9. 数学符号的输入跟 LaTeX 一致,如果输入正确的话在编译前可以看到预览。 26 | -------------------------------------------------------------------------------- /rucbeamer.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "人大Beamer模板" 3 | short-title: "模板" #显示在右下角的小标题 4 | author: "作者" 5 | institute: "机构" 6 | date: "2020年02月24日" 7 | fontsize: 10pt #字号 8 | output: beamer_presentation 9 | --- 10 | 11 | ## 目录 12 | 13 | \tableofcontents 14 | 15 | # 准备工作 16 | 17 | ## 模板说明 18 | 19 | * 简单来说,这个模板可以实现下面这件事:在Rstudio中使用简洁的markdown语法生成人大主题的beamer。具体过程为: 20 | 21 | 1. 作者在Rstudio中编写Rmarkdown文件,点击knit按钮。 22 | 23 | 2. Pandoc将Rmd文件编译成tex文件。 24 | 25 | 3. LaTeX编译引擎根据tex文件生成beamer。 26 | 27 | 4. 自动删除编译所需的tex文件以及相关文件,只保留Rmd文件以及最后的beamer。 28 | 29 | * 其中需要作者自己做的只有第一步,相比于使用LaTeX写beamer,方便很多。 30 | 31 | ## 模板说明 32 | 33 | * 几乎所有的操作(新建幻灯片、插图、插表等)都可以使用简洁的markdown语法实现。 34 | 35 | * 当作者需要进行数学符号的输入时,也可以无缝对接LaTeX语法。 36 | 37 | * 可以展示R代码及其运行结果。 38 | 39 | * 此外:这个模板使用的是ctex宏包,可以实现较为和谐的中英文混编;背景是人大主题。 40 | 41 | ## 需要安装软件 42 | 43 | * 要使用这一模板,需要安装以下软件: 44 | 45 | + Texlive (为了能编译出beamer) 46 | 47 | + R 48 | 49 | + Rstudio (为了使用 Rmarkdown) 50 | 51 | * 此外,在R中还需要安装以下包: 52 | 53 | + knitr (为了编译 Rmarkdown) 54 | 55 | + rticles (支持中文) 56 | 57 | + tinytex (轻量级的LaTeX) 58 | 59 | # 常用语法 60 | 61 | ## 基础语法 62 | 63 | * 基本可以使用Markdown语法来编写幻灯片: 64 | 65 | + 最常用的两个指令就是#和##。其中#用于开始一个新的章节,##用于开始一个新的幻灯片。 66 | 67 | + 两段文字之间空一行即可分段。 68 | 69 | + 文字之间的空格不显示,但中文和英文之间会自动留出一个空格,所以不管书写的时候有没有写空格,最终输出结果中中英文之间还是会留白。按照个人书写习惯即可。 70 | 71 | ## 图 72 | 73 | 插图很简单,同样沿用markdown语法,比在LaTeX中简洁很多。 74 | 插图指令为`![]()`,其中[]中填写图片名称,()中填写图片路径。 75 | 例如`![韦恩图](figure/VD.png)`表示在此处插入figure文件夹中 76 | 的VD.png图片,并起名为韦恩图。 77 | 78 | 注意,因为figure跟这个Rmd文件是在同一个文件夹中,所以路径可以简化。如果是想要使用其它文件夹中的图片,需要写完整路径,如`![韦恩图](D:/picture/VD.png)`。 79 | 80 | ![韦恩图](figure/VD.png) 81 | 82 | ## 图 83 | 84 | 上一张幻灯片的图片太大了。我们可以使用 85 | `![韦恩图](figure/VD.png){ width="40%" }`将图片缩小为原来的40%,如下所示。需要注意的是 86 | `width=40%`跟左右大括号之间必须有空格。 87 | 88 | ![韦恩图](figure/VD.png){ width="40%" } 89 | 90 | ## 表 91 | 92 | 在markdown中插入表格比在LaTeX中简单很多。 93 | 比如在下面的表格中:第一行表示每一列的名字,用竖线隔开; 94 | 第二行表示对齐方式,`:---`是左对齐,`---:`是右对齐,`:---:`是居中对齐。从第三行开始,是具体的数据,每一行表示一个人,每一列表示对应变量的具体取值。 95 | 96 | | 姓名 | 性别 | 年龄 | 97 | |:---:|:---:|:----:| 98 | | 张三 | 男 | 21 | 99 | | 小白 | 女 | 20 | 100 | | 王五 | 男 | 45 | 101 | 102 | 如果表格太长,可以在 [LaTeX Tables Online](https://tablesgenerator.com/) 网站上将 103 | Excel表格转成上述markdown格式,再复制粘贴即可。 104 | 105 | ## 超链接 106 | 107 | 要插入超链接,使用`[]()`,其中()中是网址,[]中是超链接的名字。比如 [必应](www.bing.com)。在生成的pdf中点“必应”就可以跳转到对应网址。需要注意[]与左边的文字之间必须要有空格。 108 | 109 | ## 数学符号 110 | 111 | 跟LaTeX完全一致,如果需要在句子中插入数学符号或者式子,比如 112 | $x_1$,就左右各用一个美元符号。如果是要空出一行单独显示式子,比如: 113 | 114 | $$ x_1+x_2=y $$ 115 | 就空出一行,并且左右各用两个美元符号。 116 | 117 | ## 分级标题 118 | 119 | 在每一页幻灯片中,可以分别用 * + - 生成不同级别的 item,注意缩进,注意符号后要有一个空格,例如: 120 | 121 | * 中国 122 | + 广东 123 | - 广州 124 | - 深圳 125 | + 湖南 126 | - 长沙 127 | 128 | ## 分级标题 129 | 130 | 如果需要枚举,用“数字.”代替上面的 * + - 即可,注意“.”之后要有空格,例如: 131 | 132 | * 中国 133 | + 广东 134 | 1. 广州 135 | 2. 深圳 136 | + 湖南 137 | 1. 长沙 138 | 139 | ## R代码及结果 140 | 141 | 可以在beamer中插入R代码及其运行结果,例如: 142 | 143 | ```{r echo=TRUE, message=FALSE, warning=FALSE, paged.print=FALSE} 144 | a = 2 145 | a 146 | ``` 147 | 148 | ## R代码及结果 149 | 150 | 值得注意的是,整份Rmd文件中的R代码是有前后顺序的。比如我们在上一页定义a取值为2,在后面的代码中,只要这一变量没有被覆盖定义,这一结果依然有效。例如: 151 | 152 | ```{r echo=TRUE, message=FALSE, warning=FALSE, paged.print=FALSE} 153 | a+3 # a=2 154 | a^2 # a=2 155 | a = 5 # 重新定义 156 | a 157 | ``` 158 | 159 | ## \quad 160 | 161 | \center{\LARGE{谢 \quad 谢!}} 162 | -------------------------------------------------------------------------------- /beamer_default.tex: -------------------------------------------------------------------------------- 1 | \documentclass[$if(fontsize)$$fontsize$,$endif$$if(handout)$handout,$endif$$if(beamer)$ignorenonframetext,$endif$$for(classoption)$$classoption$$sep$,$endfor$]{$documentclass$} 2 | \usepackage{ruc} 3 | $if(theme)$ 4 | \usetheme{$theme$} 5 | $endif$ 6 | $if(colortheme)$ 7 | \usecolortheme{$colortheme$} 8 | $endif$ 9 | $if(fonttheme)$ 10 | \usefonttheme{$fonttheme$} 11 | $endif$ 12 | $if(innertheme)$ 13 | \useinnertheme{$innertheme$} 14 | $endif$ 15 | $if(outertheme)$ 16 | \useoutertheme{$outertheme$} 17 | $endif$ 18 | \setbeamertemplate{caption}[numbered] 19 | \setbeamertemplate{caption label separator}{: } 20 | \setbeamercolor{caption name}{fg=normal text.fg} 21 | \usepackage{amssymb,amsmath} 22 | \usepackage{ifxetex,ifluatex} 23 | \usepackage{fixltx2e} % provides \textsubscript 24 | \usepackage{lmodern} 25 | \usepackage{ctex} 26 | \ifxetex 27 | \usepackage{fontspec,xltxtra,xunicode} 28 | \defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase} 29 | \newcommand{\euro}{€} 30 | \else 31 | \ifluatex 32 | \usepackage{fontspec} 33 | \defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase} 34 | \newcommand{\euro}{€} 35 | \else 36 | \usepackage[T1]{fontenc} 37 | \usepackage[utf8]{inputenc} 38 | $if(euro)$ 39 | \usepackage{eurosym} 40 | $endif$ 41 | \fi 42 | \fi 43 | % use upquote if available, for straight quotes in verbatim environments 44 | \IfFileExists{upquote.sty}{\usepackage{upquote}}{} 45 | % use microtype if available 46 | \IfFileExists{microtype.sty}{\usepackage{microtype}}{} 47 | $if(natbib)$ 48 | \usepackage{natbib} 49 | \bibliographystyle{plainnat} 50 | $endif$ 51 | $if(biblatex)$ 52 | \usepackage{biblatex} 53 | $for(bibliography)$ 54 | \addbibresource{$bibliography$} 55 | $endfor$ 56 | $endif$ 57 | $if(listings)$ 58 | \usepackage{listings} 59 | $endif$ 60 | $if(lhs)$ 61 | \lstnewenvironment{code}{\lstset{language=Haskell,basicstyle=\small\ttfamily}}{} 62 | $endif$ 63 | $if(highlighting-macros)$ 64 | $highlighting-macros$ 65 | $endif$ 66 | $if(verbatim-in-note)$ 67 | \usepackage{fancyvrb} 68 | $endif$ 69 | $if(tables)$ 70 | \usepackage{longtable,booktabs} 71 | \usepackage{caption} 72 | % These lines are needed to make table captions work with longtable: 73 | \makeatletter 74 | \def\fnum@table{\tablename~\thetable} 75 | \makeatother 76 | $endif$ 77 | $if(url)$ 78 | \usepackage{url} 79 | $endif$ 80 | $if(graphics)$ 81 | \usepackage{graphicx} 82 | \makeatletter 83 | \def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi} 84 | \def\maxheight{\ifdim\Gin@nat@height>\textheight0.8\textheight\else\Gin@nat@height\fi} 85 | \makeatother 86 | % Scale images if necessary, so that they will not overflow the page 87 | % margins by default, and it is still possible to overwrite the defaults 88 | % using explicit options in \includegraphics[width, height, ...]{} 89 | \setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio} 90 | $endif$ 91 | 92 | % Comment these out if you don't want a slide with just the 93 | % part/section/subsection/subsubsection title: 94 | \AtBeginPart{ 95 | \let\insertpartnumber\relax 96 | \let\partname\relax 97 | \frame{\partpage} 98 | } 99 | \AtBeginSection{ 100 | \let\insertsectionnumber\relax 101 | \let\sectionname\relax 102 | \frame{\sectionpage} 103 | } 104 | \AtBeginSubsection{ 105 | \let\insertsubsectionnumber\relax 106 | \let\subsectionname\relax 107 | \frame{\subsectionpage} 108 | } 109 | 110 | $if(strikeout)$ 111 | \usepackage[normalem]{ulem} 112 | % avoid problems with \sout in headers with hyperref: 113 | \pdfstringdefDisableCommands{\renewcommand{\sout}{}} 114 | $endif$ 115 | \setlength{\parindent}{0pt} 116 | \setlength{\parskip}{6pt plus 2pt minus 1pt} 117 | \setlength{\emergencystretch}{3em} % prevent overfull lines 118 | \providecommand{\tightlist}{% 119 | \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} 120 | $if(numbersections)$ 121 | $else$ 122 | \setcounter{secnumdepth}{0} 123 | $endif$ 124 | $if(verbatim-in-note)$ 125 | \VerbatimFootnotes % allows verbatim text in footnotes 126 | $endif$ 127 | $if(lang)$ 128 | \ifxetex 129 | \usepackage{polyglossia} 130 | \setmainlanguage{$mainlang$} 131 | \setotherlanguages{$for(otherlang)$$otherlang$$sep$,$endfor$} 132 | \else 133 | \usepackage[shorthands=off,$lang$]{babel} 134 | \fi 135 | $endif$ 136 | $for(header-includes)$ 137 | $header-includes$ 138 | $endfor$ 139 | 140 | $if(title)$ 141 | \title[$short-title$]{$title$} 142 | $endif$ 143 | $if(subtitle)$ 144 | \subtitle{$subtitle$} 145 | $endif$ 146 | $if(author)$ 147 | \author{$for(author)$$author$$sep$ \and $endfor$} 148 | $endif$ 149 | $if(institute)$ 150 | \institute{$institute$} 151 | $endif$ 152 | \date{$date$} 153 | 154 | \begin{document} 155 | $if(title)$ 156 | \frame{\titlepage} 157 | $endif$ 158 | 159 | $for(include-before)$ 160 | $include-before$ 161 | 162 | $endfor$ 163 | $if(toc)$ 164 | \begin{frame} 165 | \tableofcontents[hideallsubsections] 166 | \end{frame} 167 | 168 | $endif$ 169 | $body$ 170 | 171 | $if(natbib)$ 172 | $if(bibliography)$ 173 | $if(biblio-title)$ 174 | $if(book-class)$ 175 | \renewcommand\bibname{$biblio-title$} 176 | $else$ 177 | \renewcommand\refname{$biblio-title$} 178 | $endif$ 179 | $endif$ 180 | \begin{frame}[allowframebreaks]{$biblio-title$} 181 | \bibliography{$for(bibliography)$$bibliography$$sep$,$endfor$} 182 | \end{frame} 183 | 184 | $endif$ 185 | $endif$ 186 | $if(biblatex)$ 187 | \begin{frame}[allowframebreaks]{$biblio-title$} 188 | \printbibliography[heading=none] 189 | \end{frame} 190 | 191 | $endif$ 192 | $for(include-after)$ 193 | $include-after$ 194 | 195 | $endfor$ 196 | \end{document} -------------------------------------------------------------------------------- /ruc.sty: -------------------------------------------------------------------------------- 1 | %% FileName : ruc.sty 2 | %% Author : ShuYu Wang 3 | %% Created : Thu Mar 12 20:44:30 2015 by ShuYu Wang 4 | %% Copyright : Feather Workshop (c) 2015 5 | %% Description : Made from original ru.sty 6 | %% Time-stamp: <2015-03-12 20:44:53 andelf> 7 | % Copyright 2009 by Pim Vullers 8 | % 9 | % This file may be distributed and/or modified 10 | % 11 | % 1. under the LaTeX Project Public License and/or 12 | % 2. under the GNU Public License. 13 | % 14 | 15 | %%% 16 | %%% Inherit definitions from existing themes (DO NOT MODIFY THESE) 17 | %%% 18 | 19 | % Layout scheme for outer elements: split header and footer 20 | \useoutertheme{split} 21 | 22 | % Color scheme for outer elements: use background colors 23 | \usecolortheme{whale} 24 | 25 | % Layout scheme for inner elements: rounded elements 26 | \useinnertheme{rounded} 27 | 28 | % Color scheme for inner elements: use foreground colors 29 | \usecolortheme{orchid} 30 | 31 | 32 | %%% 33 | %%% Tweak definitions of inner theme to match personal preferences (MODIFY THESE) 34 | %%% 35 | 36 | % Itemize items: default (triangle), circle, square, ball 37 | \setbeamertemplate{itemize items}[circle] 38 | 39 | % Enumerate items: default, circle, square, ball 40 | \setbeamertemplate{enumerate items}[circle] 41 | 42 | % Outline: default, sections numbered, subsections numbered, circle, square, ball, ball unnumbered 43 | \setbeamertemplate{sections/subsections in toc}[default] 44 | 45 | % General blocks: 46 | \setbeamertemplate{blocks}[rounded] 47 | 48 | % Title page: 49 | \setbeamertemplate{title page}[default][colsep=-4bp,rounded=true] 50 | 51 | % Part page: 52 | \setbeamertemplate{part page}[default][colsep=-4bp,rounded=true] 53 | 54 | % Navigation symbols: 55 | % \setbeamertemplate{navigation symbols}{} 56 | 57 | 58 | %%% 59 | %%% Tweak definitions of outer theme to match Radboud (website) style 60 | %%% 61 | 62 | % Background 63 | \pgfdeclareimage[width=\paperwidth,height=\paperheight]{bg}{ruc_background} 64 | \setbeamertemplate{background}{\pgfuseimage{bg}} 65 | 66 | % Colors 67 | \usecolortheme[RGB={182,11,45}]{structure} 68 | 69 | \setbeamercolor{frametitle}{parent=subsection in head/foot} 70 | \setbeamercolor{frametitle right}{parent=section in head/foot} 71 | 72 | 73 | \pgfdeclarehorizontalshading[frametitle.bg,frametitle right.bg]{beamer@frametitleshade}{\paperheight}{% 74 | color(0pt)=(frametitle.bg); 75 | color(\paperwidth)=(frametitle right.bg)} 76 | 77 | \AtBeginDocument{ 78 | \pgfdeclareverticalshading{beamer@topshade}{\paperwidth}{% 79 | color(0pt)=(bg); 80 | color(4pt)=(black!50!bg)} 81 | } 82 | 83 | % Footline: AUTHOR | TITLE | DATE FRAMENUMBER 84 | 85 | \defbeamertemplate*{footline}{ruc theme}{% 86 | \leavevmode% 87 | \hbox{% 88 | \begin{beamercolorbox}[wd=.25\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% 89 | \usebeamerfont{author in head/foot}\insertshortauthor 90 | \end{beamercolorbox}% 91 | \begin{beamercolorbox}[wd=.25\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% 92 | \usebeamerfont{author in head/foot}\insertshortdate 93 | \end{beamercolorbox}% 94 | \begin{beamercolorbox}[wd=.416667\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}% 95 | \usebeamerfont{title in head/foot}\insertshorttitle 96 | \end{beamercolorbox}% 97 | \begin{beamercolorbox}[wd=0.083333\paperwidth,ht=2.25ex,dp=1ex,right]{title in head/foot}% 98 | \insertframenumber{} / \inserttotalframenumber\hspace*{2ex} 99 | \end{beamercolorbox}}% 100 | \vskip0pt% 101 | } 102 | 103 | \defbeamertemplate*{headline}{ruc theme}{% 104 | \leavevmode% 105 | \@tempdimb=2.4375ex% 106 | \multiply\@tempdimb by\beamer@sectionmax% 107 | \pgfdeclareimage[height=.85\@tempdimb]{logo}{ruc_logo.png}% 108 | \pgfdeclareimage[height=.7\@tempdimb]{title_logo}{ruc_title.png}% 109 | \logo{\pgfuseimage{logo}}% 110 | \ifdim\@tempdimb>0pt% 111 | \advance\@tempdimb by 1.125ex% 112 | \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{section in head/foot}% 113 | \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}% 114 | \end{beamercolorbox}% 115 | %% \begin{beamercolorbox}[wd=.4\paperwidth,ht=\@tempdimb,center]{subsection in head/foot}% 116 | %% \vbox to\@tempdimb{\vfil\textbf{\footnotesize\insertshortinstitute~~}\vfil}% 117 | %% \end{beamercolorbox}% 118 | \begin{beamercolorbox}[wd=.4\paperwidth,ht=\@tempdimb,center]{subsection in head/foot}% 119 | \vbox to\@tempdimb{\vfil\pgfuseimage{title_logo}\vfil}% 120 | \end{beamercolorbox}% 121 | \begin{beamercolorbox}[wd=.1\paperwidth,ht=\@tempdimb,center]{subsection in head/foot}% 122 | \vbox to\@tempdimb{\vfil\insertlogo\vfil\vfil}% 123 | \end{beamercolorbox}% 124 | \fi% 125 | } 126 | 127 | \defbeamertemplate*{frametitle}{ruc theme}{% 128 | \nointerlineskip% 129 | %\vskip-2pt% 130 | \hbox{\leavevmode 131 | \advance\beamer@leftmargin by -12bp% 132 | \advance\beamer@rightmargin by -12bp% 133 | \beamer@tempdim=\textwidth% 134 | \advance\beamer@tempdim by \beamer@leftmargin% 135 | \advance\beamer@tempdim by \beamer@rightmargin% 136 | \hskip-\Gm@lmargin\hbox{% 137 | \setbox\beamer@tempbox=\hbox{\begin{minipage}[b]{\paperwidth}% 138 | \vbox{}\vskip-.75ex% 139 | \leftskip0.3cm% 140 | \rightskip0.3cm plus1fil\leavevmode 141 | \insertframetitle% 142 | \ifx\insertframesubtitle\@empty% 143 | \strut\par% 144 | \else 145 | \par{\usebeamerfont*{framesubtitle}{\usebeamercolor[fg]{framesubtitle}\insertframesubtitle}\strut\par}% 146 | \fi% 147 | \nointerlineskip 148 | \vbox{}% 149 | \end{minipage}}% 150 | \beamer@tempdim=\ht\beamer@tempbox% 151 | \advance\beamer@tempdim by 2pt% 152 | \begin{pgfpicture}{0.1mm}{0pt}{1.01\paperwidth}{\beamer@tempdim} 153 | \usebeamercolor{frametitle right} 154 | \pgfpathrectangle{\pgfpointorigin}{\pgfpoint{\paperwidth}{\beamer@tempdim}} 155 | \pgfusepath{clip} 156 | \pgftext[left,base]{\pgfuseshading{beamer@frametitleshade}} 157 | \end{pgfpicture} 158 | \hskip-\paperwidth% 159 | \box\beamer@tempbox% 160 | }% 161 | \hskip-\Gm@rmargin% 162 | }% 163 | % \nointerlineskip 164 | % \vskip-0.2pt 165 | % \hbox to\textwidth{\hskip-\Gm@lmargin\pgfuseshading{beamer@topshade}\hskip-\Gm@rmargin} 166 | % \vskip-2pt 167 | } 168 | -------------------------------------------------------------------------------- /rucbeamer.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019/W32TeX) (preloaded format=xelatex 2019.7.4) 16 MAR 2020 14:11 2 | entering extended mode 3 | restricted \write18 enabled. 4 | %&-line parsing enabled. 5 | **rucbeamer.tex 6 | (./rucbeamer.tex 7 | LaTeX2e <2018-12-01> 8 | (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamer.cls 9 | Document Class: beamer 2018/12/02 v3.55 A class for typesetting presentations 10 | (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasemodes.sty (e:/texlive/20 11 | 19/texmf-dist/tex/latex/etoolbox/etoolbox.sty 12 | Package: etoolbox 2018/08/19 v2.5f e-TeX tools for LaTeX (JAW) 13 | \etb@tempcnta=\count80 14 | ) 15 | \beamer@tempbox=\box27 16 | \beamer@tempcount=\count81 17 | \c@beamerpauses=\count82 18 | (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasedecode.sty 19 | \beamer@slideinframe=\count83 20 | \beamer@minimum=\count84 21 | ) 22 | \beamer@commentbox=\box28 23 | \beamer@modecount=\count85 24 | ) (e:/texlive/2019/texmf-dist/tex/generic/oberdiek/ifpdf.sty 25 | Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch 26 | ) 27 | \headdp=\dimen102 28 | \footheight=\dimen103 29 | \sidebarheight=\dimen104 30 | \beamer@tempdim=\dimen105 31 | \beamer@finalheight=\dimen106 32 | \beamer@animht=\dimen107 33 | \beamer@animdp=\dimen108 34 | \beamer@animwd=\dimen109 35 | \beamer@leftmargin=\dimen110 36 | \beamer@rightmargin=\dimen111 37 | \beamer@leftsidebar=\dimen112 38 | \beamer@rightsidebar=\dimen113 39 | \beamer@boxsize=\dimen114 40 | \beamer@vboxoffset=\dimen115 41 | \beamer@descdefault=\dimen116 42 | \beamer@descriptionwidth=\dimen117 43 | \beamer@lastskip=\skip41 44 | \beamer@areabox=\box29 45 | \beamer@animcurrent=\box30 46 | \beamer@animshowbox=\box31 47 | \beamer@sectionbox=\box32 48 | \beamer@logobox=\box33 49 | \beamer@linebox=\box34 50 | \beamer@sectioncount=\count86 51 | \beamer@subsubsectionmax=\count87 52 | \beamer@subsectionmax=\count88 53 | \beamer@sectionmax=\count89 54 | \beamer@totalheads=\count90 55 | \beamer@headcounter=\count91 56 | \beamer@partstartpage=\count92 57 | \beamer@sectionstartpage=\count93 58 | \beamer@subsectionstartpage=\count94 59 | \beamer@animationtempa=\count95 60 | \beamer@animationtempb=\count96 61 | \beamer@xpos=\count97 62 | \beamer@ypos=\count98 63 | \beamer@ypos@offset=\count99 64 | \beamer@showpartnumber=\count100 65 | \beamer@currentsubsection=\count101 66 | \beamer@coveringdepth=\count102 67 | \beamer@sectionadjust=\count103 68 | \beamer@tocsectionnumber=\count104 69 | (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseoptions.sty (e:/texlive/ 70 | 2019/texmf-dist/tex/latex/graphics/keyval.sty 71 | Package: keyval 2014/10/28 v1.15 key=value parser (DPC) 72 | \KV@toks@=\toks14 73 | )) 74 | \beamer@paperwidth=\skip42 75 | \beamer@paperheight=\skip43 76 | (e:/texlive/2019/texmf-dist/tex/latex/geometry/geometry.sty 77 | Package: geometry 2018/04/16 v5.8 Page Geometry 78 | (e:/texlive/2019/texmf-dist/tex/generic/oberdiek/ifvtex.sty 79 | Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO) 80 | Package ifvtex Info: VTeX not detected. 81 | ) (e:/texlive/2019/texmf-dist/tex/generic/ifxetex/ifxetex.sty 82 | Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional 83 | ) 84 | \Gm@cnth=\count105 85 | \Gm@cntv=\count106 86 | \c@Gm@tempcnt=\count107 87 | \Gm@bindingoffset=\dimen118 88 | \Gm@wd@mp=\dimen119 89 | \Gm@odd@mp=\dimen120 90 | \Gm@even@mp=\dimen121 91 | \Gm@layoutwidth=\dimen122 92 | \Gm@layoutheight=\dimen123 93 | \Gm@layouthoffset=\dimen124 94 | \Gm@layoutvoffset=\dimen125 95 | \Gm@dimlist=\toks15 96 | ) (e:/texlive/2019/texmf-dist/tex/latex/base/size10.clo 97 | File: size10.clo 2018/09/03 v1.4i Standard LaTeX file (size option) 98 | ) (e:/texlive/2019/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (e:/texlive/ 99 | 2019/texmf-dist/tex/latex/graphics/graphicx.sty 100 | Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) 101 | (e:/texlive/2019/texmf-dist/tex/latex/graphics/graphics.sty 102 | Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) 103 | (e:/texlive/2019/texmf-dist/tex/latex/graphics/trig.sty 104 | Package: trig 2016/01/03 v1.10 sin cos tan (DPC) 105 | ) (e:/texlive/2019/texmf-dist/tex/latex/graphics-cfg/graphics.cfg 106 | File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration 107 | ) 108 | Package graphics Info: Driver file: xetex.def on input line 99. 109 | (e:/texlive/2019/texmf-dist/tex/latex/graphics-def/xetex.def 110 | File: xetex.def 2017/06/24 v5.0h Graphics/color driver for xetex 111 | )) 112 | \Gin@req@height=\dimen126 113 | \Gin@req@width=\dimen127 114 | ) (e:/texlive/2019/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (e:/texlive/ 115 | 2019/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (e:/texlive/2019/texmf-dist/ 116 | tex/generic/pgf/utilities/pgfutil-common.tex 117 | \pgfutil@everybye=\toks16 118 | \pgfutil@tempdima=\dimen128 119 | \pgfutil@tempdimb=\dimen129 120 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex) 121 | ) (e:/texlive/2019/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def 122 | \pgfutil@abb=\box35 123 | (e:/texlive/2019/texmf-dist/tex/latex/ms/everyshi.sty 124 | Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS) 125 | )) (e:/texlive/2019/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex (e:/te 126 | xlive/2019/texmf-dist/tex/generic/pgf/pgf.revision.tex) 127 | Package: pgfrcs 2019/02/02 v3.1.1 (3.1.1) 128 | )) (e:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex 129 | Package: pgfsys 2019/02/02 v3.1.1 (3.1.1) 130 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex 131 | \pgfkeys@pathtoks=\toks17 132 | \pgfkeys@temptoks=\toks18 133 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex 134 | \pgfkeys@tmptoks=\toks19 135 | )) 136 | \pgf@x=\dimen130 137 | \pgf@y=\dimen131 138 | \pgf@xa=\dimen132 139 | \pgf@ya=\dimen133 140 | \pgf@xb=\dimen134 141 | \pgf@yb=\dimen135 142 | \pgf@xc=\dimen136 143 | \pgf@yc=\dimen137 144 | \w@pgf@writea=\write3 145 | \r@pgf@reada=\read1 146 | \c@pgf@counta=\count108 147 | \c@pgf@countb=\count109 148 | \c@pgf@countc=\count110 149 | \c@pgf@countd=\count111 150 | \t@pgf@toka=\toks20 151 | \t@pgf@tokb=\toks21 152 | \t@pgf@tokc=\toks22 153 | \pgf@sys@id@count=\count112 154 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg 155 | File: pgf.cfg 2019/02/02 v3.1.1 (3.1.1) 156 | ) 157 | Driver file for pgf: pgfsys-xetex.def 158 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-xetex.def 159 | File: pgfsys-xetex.def 2019/02/02 v3.1.1 (3.1.1) 160 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvipdfmx.def 161 | File: pgfsys-dvipdfmx.def 2019/02/02 v3.1.1 (3.1.1) 162 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def 163 | File: pgfsys-common-pdf.def 2019/02/02 v3.1.1 (3.1.1) 164 | ) 165 | \pgfsys@objnum=\count113 166 | ))) 167 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex 168 | File: pgfsyssoftpath.code.tex 2019/02/02 v3.1.1 (3.1.1) 169 | \pgfsyssoftpath@smallbuffer@items=\count114 170 | \pgfsyssoftpath@bigbuffer@items=\count115 171 | ) 172 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex 173 | File: pgfsysprotocol.code.tex 2019/02/02 v3.1.1 (3.1.1) 174 | )) (e:/texlive/2019/texmf-dist/tex/latex/xcolor/xcolor.sty 175 | Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) 176 | (e:/texlive/2019/texmf-dist/tex/latex/graphics-cfg/color.cfg 177 | File: color.cfg 2016/01/02 v1.6 sample color configuration 178 | ) 179 | Package xcolor Info: Driver file: xetex.def on input line 225. 180 | Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. 181 | Package xcolor Info: Model `RGB' extended on input line 1364. 182 | Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. 183 | Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. 184 | Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. 185 | Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. 186 | Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. 187 | Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. 188 | ) (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex 189 | Package: pgfcore 2019/02/02 v3.1.1 (3.1.1) 190 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (e:/texlive/2 191 | 019/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex (e:/texlive/2019/texmf 192 | -dist/tex/generic/pgf/math/pgfmathutil.code.tex) (e:/texlive/2019/texmf-dist/te 193 | x/generic/pgf/math/pgfmathparser.code.tex 194 | \pgfmath@dimen=\dimen138 195 | \pgfmath@count=\count116 196 | \pgfmath@box=\box36 197 | \pgfmath@toks=\toks23 198 | \pgfmath@stack@operand=\toks24 199 | \pgfmath@stack@operation=\toks25 200 | ) (e:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex 201 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.te 202 | x) 203 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric 204 | .code.tex) 205 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.t 206 | ex) 207 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.co 208 | de.tex) 209 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex 210 | ) 211 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.te 212 | x) 213 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex 214 | ) 215 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithm 216 | etics.code.tex))) (e:/texlive/2019/texmf-dist/tex/generic/pgf/math/pgfmathfloat 217 | .code.tex 218 | \c@pgfmathroundto@lastzeros=\count117 219 | )) (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.te 220 | x 221 | File: pgfcorepoints.code.tex 2019/02/02 v3.1.1 (3.1.1) 222 | \pgf@picminx=\dimen139 223 | \pgf@picmaxx=\dimen140 224 | \pgf@picminy=\dimen141 225 | \pgf@picmaxy=\dimen142 226 | \pgf@pathminx=\dimen143 227 | \pgf@pathmaxx=\dimen144 228 | \pgf@pathminy=\dimen145 229 | \pgf@pathmaxy=\dimen146 230 | \pgf@xx=\dimen147 231 | \pgf@xy=\dimen148 232 | \pgf@yx=\dimen149 233 | \pgf@yy=\dimen150 234 | \pgf@zx=\dimen151 235 | \pgf@zy=\dimen152 236 | ) 237 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.cod 238 | e.tex 239 | File: pgfcorepathconstruct.code.tex 2019/02/02 v3.1.1 (3.1.1) 240 | \pgf@path@lastx=\dimen153 241 | \pgf@path@lasty=\dimen154 242 | ) 243 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.te 244 | x 245 | File: pgfcorepathusage.code.tex 2019/02/02 v3.1.1 (3.1.1) 246 | \pgf@shorten@end@additional=\dimen155 247 | \pgf@shorten@start@additional=\dimen156 248 | ) (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex 249 | File: pgfcorescopes.code.tex 2019/02/02 v3.1.1 (3.1.1) 250 | \pgfpic=\box37 251 | \pgf@hbox=\box38 252 | \pgf@layerbox@main=\box39 253 | \pgf@picture@serial@count=\count118 254 | ) 255 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code 256 | .tex 257 | File: pgfcoregraphicstate.code.tex 2019/02/02 v3.1.1 (3.1.1) 258 | \pgflinewidth=\dimen157 259 | ) 260 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.c 261 | ode.tex 262 | File: pgfcoretransformations.code.tex 2019/02/02 v3.1.1 (3.1.1) 263 | \pgf@pt@x=\dimen158 264 | \pgf@pt@y=\dimen159 265 | \pgf@pt@temp=\dimen160 266 | ) (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex 267 | File: pgfcorequick.code.tex 2019/02/02 v3.1.1 (3.1.1) 268 | ) (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.te 269 | x 270 | File: pgfcoreobjects.code.tex 2019/02/02 v3.1.1 (3.1.1) 271 | ) 272 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.co 273 | de.tex 274 | File: pgfcorepathprocessing.code.tex 2019/02/02 v3.1.1 (3.1.1) 275 | ) (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex 276 | File: pgfcorearrows.code.tex 2019/02/02 v3.1.1 (3.1.1) 277 | \pgfarrowsep=\dimen161 278 | ) (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex 279 | File: pgfcoreshade.code.tex 2019/02/02 v3.1.1 (3.1.1) 280 | \pgf@max=\dimen162 281 | \pgf@sys@shading@range@num=\count119 282 | ) (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex 283 | File: pgfcoreimage.code.tex 2019/02/02 v3.1.1 (3.1.1) 284 | 285 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex 286 | File: pgfcoreexternal.code.tex 2019/02/02 v3.1.1 (3.1.1) 287 | \pgfexternal@startupbox=\box40 288 | )) (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.te 289 | x 290 | File: pgfcorelayers.code.tex 2019/02/02 v3.1.1 (3.1.1) 291 | ) 292 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code 293 | .tex 294 | File: pgfcoretransparency.code.tex 2019/02/02 v3.1.1 (3.1.1) 295 | ) 296 | (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex 297 | File: pgfcorepatterns.code.tex 2019/02/02 v3.1.1 (3.1.1) 298 | ) (e:/texlive/2019/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex 299 | File: pgfcorerdf.code.tex 2019/02/02 v3.1.1 (3.1.1) 300 | ))) (e:/texlive/2019/texmf-dist/tex/latex/pgf/utilities/xxcolor.sty 301 | Package: xxcolor 2003/10/24 ver 0.1 302 | \XC@nummixins=\count120 303 | \XC@countmixins=\count121 304 | ) (e:/texlive/2019/texmf-dist/tex/generic/oberdiek/atbegshi.sty 305 | Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO) 306 | (e:/texlive/2019/texmf-dist/tex/generic/oberdiek/infwarerr.sty 307 | Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO) 308 | ) (e:/texlive/2019/texmf-dist/tex/generic/oberdiek/ltxcmds.sty 309 | Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) 310 | )) (e:/texlive/2019/texmf-dist/tex/latex/hyperref/hyperref.sty 311 | Package: hyperref 2018/11/30 v6.88e Hypertext links for LaTeX 312 | (e:/texlive/2019/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty 313 | Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO) 314 | 315 | (e:/texlive/2019/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty 316 | Package: hobsub-generic 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO) 317 | Package: hobsub 2016/05/16 v1.14 Construct package bundles (HO) 318 | Package hobsub Info: Skipping package `infwarerr' (already loaded). 319 | Package hobsub Info: Skipping package `ltxcmds' (already loaded). 320 | Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO) 321 | Package ifluatex Info: LuaTeX not detected. 322 | Package hobsub Info: Skipping package `ifvtex' (already loaded). 323 | Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO) 324 | Package hobsub Info: Skipping package `ifpdf' (already loaded). 325 | Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) 326 | Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO) 327 | Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO) 328 | Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO 329 | ) 330 | Package pdftexcmds Info: LuaTeX not detected. 331 | Package pdftexcmds Info: pdfTeX >= 1.30 not detected. 332 | Package pdftexcmds Info: \pdf@primitive is available. 333 | Package pdftexcmds Info: \pdf@ifprimitive is available. 334 | Package pdftexcmds Info: \pdfdraftmode not found. 335 | Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO) 336 | Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO 337 | ) 338 | Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO) 339 | Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO) 340 | ) 341 | Package hobsub Info: Skipping package `hobsub' (already loaded). 342 | Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO) 343 | Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO) 344 | Package: xcolor-patch 2016/05/16 xcolor patch 345 | Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO) 346 | Package hobsub Info: Skipping package `atbegshi' (already loaded). 347 | Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO) 348 | Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO) 349 | ) (e:/texlive/2019/texmf-dist/tex/latex/oberdiek/auxhook.sty 350 | Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO) 351 | ) (e:/texlive/2019/texmf-dist/tex/latex/oberdiek/kvoptions.sty 352 | Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO) 353 | ) 354 | \@linkdim=\dimen163 355 | \Hy@linkcounter=\count122 356 | \Hy@pagecounter=\count123 357 | (e:/texlive/2019/texmf-dist/tex/latex/hyperref/pd1enc.def 358 | File: pd1enc.def 2018/11/30 v6.88e Hyperref: PDFDocEncoding definition (HO) 359 | ) 360 | \Hy@SavedSpaceFactor=\count124 361 | (e:/texlive/2019/texmf-dist/tex/latex/latexconfig/hyperref.cfg 362 | File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive 363 | ) 364 | Package hyperref Info: Option `bookmarks' set `true' on input line 4393. 365 | Package hyperref Info: Option `bookmarksopen' set `true' on input line 4393. 366 | Package hyperref Info: Option `implicit' set `false' on input line 4393. 367 | Package hyperref Info: Hyper figures OFF on input line 4519. 368 | Package hyperref Info: Link nesting OFF on input line 4524. 369 | Package hyperref Info: Hyper index ON on input line 4527. 370 | Package hyperref Info: Plain pages OFF on input line 4534. 371 | Package hyperref Info: Backreferencing OFF on input line 4539. 372 | Package hyperref Info: Implicit mode OFF; no redefinition of LaTeX internals. 373 | Package hyperref Info: Bookmarks ON on input line 4772. 374 | \c@Hy@tempcnt=\count125 375 | (e:/texlive/2019/texmf-dist/tex/latex/url/url.sty 376 | \Urlmuskip=\muskip10 377 | Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. 378 | ) 379 | LaTeX Info: Redefining \url on input line 5125. 380 | \XeTeXLinkMargin=\dimen164 381 | \Fld@menulength=\count126 382 | \Field@Width=\dimen165 383 | \Fld@charsize=\dimen166 384 | Package hyperref Info: Hyper figures OFF on input line 6380. 385 | Package hyperref Info: Link nesting OFF on input line 6385. 386 | Package hyperref Info: Hyper index ON on input line 6388. 387 | Package hyperref Info: backreferencing OFF on input line 6395. 388 | Package hyperref Info: Link coloring OFF on input line 6400. 389 | Package hyperref Info: Link coloring with OCG OFF on input line 6405. 390 | Package hyperref Info: PDF/A mode OFF on input line 6410. 391 | LaTeX Info: Redefining \ref on input line 6450. 392 | LaTeX Info: Redefining \pageref on input line 6454. 393 | \Hy@abspage=\count127 394 | 395 | Package hyperref Message: Stopped early. 396 | 397 | ) 398 | Package hyperref Info: Driver (autodetected): hxetex. 399 | (e:/texlive/2019/texmf-dist/tex/latex/hyperref/hxetex.def 400 | File: hxetex.def 2018/11/30 v6.88e Hyperref driver for XeTeX 401 | (e:/texlive/2019/texmf-dist/tex/latex/hyperref/puenc.def 402 | File: puenc.def 2018/11/30 v6.88e Hyperref: PDF Unicode definition (HO) 403 | ) (e:/texlive/2019/texmf-dist/tex/generic/oberdiek/stringenc.sty 404 | Package: stringenc 2016/05/16 v1.11 Convert strings between diff. encodings (HO 405 | ) 406 | ) 407 | \pdfm@box=\box41 408 | \c@Hy@AnnotLevel=\count128 409 | \HyField@AnnotCount=\count129 410 | \Fld@listcount=\count130 411 | \c@bookmark@seq@number=\count131 412 | (e:/texlive/2019/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty 413 | Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO) 414 | Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 415 | 82. 416 | )) (e:/texlive/2019/texmf-dist/tex/generic/oberdiek/se-ascii-print.def 417 | File: se-ascii-print.def 2016/05/16 v1.11 stringenc: Printable ASCII characters 418 | 419 | ) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaserequires.sty (e:/texli 420 | ve/2019/texmf-dist/tex/latex/beamer/beamerbasecompatibility.sty) (e:/texlive/20 421 | 19/texmf-dist/tex/latex/beamer/beamerbasefont.sty (e:/texlive/2019/texmf-dist/t 422 | ex/latex/amsfonts/amssymb.sty 423 | Package: amssymb 2013/01/14 v3.01 AMS font symbols 424 | (e:/texlive/2019/texmf-dist/tex/latex/amsfonts/amsfonts.sty 425 | Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support 426 | \@emptytoks=\toks26 427 | \symAMSa=\mathgroup4 428 | \symAMSb=\mathgroup5 429 | LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' 430 | (Font) U/euf/m/n --> U/euf/b/n on input line 106. 431 | )) (e:/texlive/2019/texmf-dist/tex/latex/sansmathaccent/sansmathaccent.sty 432 | Package: sansmathaccent 2013/03/28 433 | (e:/texlive/2019/texmf-dist/tex/latex/filehook/filehook.sty 434 | Package: filehook 2011/10/12 v0.5d Hooks for input files 435 | ))) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasetranslator.sty (e:/t 436 | exlive/2019/texmf-dist/tex/latex/translator/translator.sty 437 | Package: translator 2018/01/04 v1.12 Easy translation of strings in LaTeX 438 | )) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasemisc.sty) (e:/texlive 439 | /2019/texmf-dist/tex/latex/beamer/beamerbasetwoscreens.sty) (e:/texlive/2019/te 440 | xmf-dist/tex/latex/beamer/beamerbaseoverlay.sty 441 | \beamer@argscount=\count132 442 | \beamer@lastskipcover=\skip44 443 | \beamer@trivlistdepth=\count133 444 | ) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasetitle.sty) (e:/texlive 445 | /2019/texmf-dist/tex/latex/beamer/beamerbasesection.sty 446 | \c@lecture=\count134 447 | \c@part=\count135 448 | \c@section=\count136 449 | \c@subsection=\count137 450 | \c@subsubsection=\count138 451 | ) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseframe.sty 452 | \beamer@framebox=\box42 453 | \beamer@frametitlebox=\box43 454 | \beamer@zoombox=\box44 455 | \beamer@zoomcount=\count139 456 | \beamer@zoomframecount=\count140 457 | \beamer@frametextheight=\dimen167 458 | \c@subsectionslide=\count141 459 | \beamer@frametopskip=\skip45 460 | \beamer@framebottomskip=\skip46 461 | \beamer@frametopskipautobreak=\skip47 462 | \beamer@framebottomskipautobreak=\skip48 463 | \beamer@envbody=\toks27 464 | \framewidth=\dimen168 465 | \c@framenumber=\count142 466 | ) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseverbatim.sty 467 | \beamer@verbatimfileout=\write4 468 | ) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseframesize.sty 469 | \beamer@splitbox=\box45 470 | \beamer@autobreakcount=\count143 471 | \beamer@autobreaklastheight=\dimen169 472 | \beamer@frametitletoks=\toks28 473 | \beamer@framesubtitletoks=\toks29 474 | ) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseframecomponents.sty 475 | \beamer@footins=\box46 476 | ) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasecolor.sty) (e:/texlive 477 | /2019/texmf-dist/tex/latex/beamer/beamerbasenotes.sty 478 | \beamer@frameboxcopy=\box47 479 | ) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasetoc.sty) (e:/texlive/2 480 | 019/texmf-dist/tex/latex/beamer/beamerbasetemplates.sty 481 | \beamer@sbttoks=\toks30 482 | (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaseauxtemplates.sty (e:/tex 483 | live/2019/texmf-dist/tex/latex/beamer/beamerbaseboxes.sty 484 | \bmb@box=\box48 485 | \bmb@colorbox=\box49 486 | \bmb@boxshadow=\box50 487 | \bmb@boxshadowball=\box51 488 | \bmb@boxshadowballlarge=\box52 489 | \bmb@temp=\dimen170 490 | \bmb@dima=\dimen171 491 | \bmb@dimb=\dimen172 492 | \bmb@prevheight=\dimen173 493 | ) 494 | \beamer@blockheadheight=\dimen174 495 | )) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbaselocalstructure.sty (e 496 | :/texlive/2019/texmf-dist/tex/latex/tools/enumerate.sty 497 | Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC) 498 | \@enLab=\toks31 499 | ) 500 | \c@figure=\count144 501 | \c@table=\count145 502 | \abovecaptionskip=\skip49 503 | \belowcaptionskip=\skip50 504 | ) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasenavigation.sty 505 | \beamer@section@min@dim=\dimen175 506 | ) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasetheorems.sty (e:/texli 507 | ve/2019/texmf-dist/tex/latex/amsmath/amsmath.sty 508 | Package: amsmath 2018/12/01 v2.17b AMS math features 509 | \@mathmargin=\skip51 510 | For additional information on amsmath, use the `?' option. 511 | (e:/texlive/2019/texmf-dist/tex/latex/amsmath/amstext.sty 512 | Package: amstext 2000/06/29 v2.01 AMS text 513 | (e:/texlive/2019/texmf-dist/tex/latex/amsmath/amsgen.sty 514 | File: amsgen.sty 1999/11/30 v2.0 generic functions 515 | \@emptytoks=\toks32 516 | \ex@=\dimen176 517 | )) (e:/texlive/2019/texmf-dist/tex/latex/amsmath/amsbsy.sty 518 | Package: amsbsy 1999/11/29 v1.2d Bold Symbols 519 | \pmbraise@=\dimen177 520 | ) (e:/texlive/2019/texmf-dist/tex/latex/amsmath/amsopn.sty 521 | Package: amsopn 2016/03/08 v2.02 operator names 522 | ) 523 | \inf@bad=\count146 524 | LaTeX Info: Redefining \frac on input line 223. 525 | \uproot@=\count147 526 | \leftroot@=\count148 527 | LaTeX Info: Redefining \overline on input line 385. 528 | \classnum@=\count149 529 | \DOTSCASE@=\count150 530 | LaTeX Info: Redefining \ldots on input line 482. 531 | LaTeX Info: Redefining \dots on input line 485. 532 | LaTeX Info: Redefining \cdots on input line 606. 533 | \Mathstrutbox@=\box53 534 | \strutbox@=\box54 535 | \big@size=\dimen178 536 | LaTeX Font Info: Redeclaring font encoding OML on input line 729. 537 | LaTeX Font Info: Redeclaring font encoding OMS on input line 730. 538 | \macc@depth=\count151 539 | \c@MaxMatrixCols=\count152 540 | \dotsspace@=\muskip11 541 | \c@parentequation=\count153 542 | \dspbrk@lvl=\count154 543 | \tag@help=\toks33 544 | \row@=\count155 545 | \column@=\count156 546 | \maxfields@=\count157 547 | \andhelp@=\toks34 548 | \eqnshift@=\dimen179 549 | \alignsep@=\dimen180 550 | \tagshift@=\dimen181 551 | \tagwidth@=\dimen182 552 | \totwidth@=\dimen183 553 | \lineht@=\dimen184 554 | \@envbody=\toks35 555 | \multlinegap=\skip52 556 | \multlinetaggap=\skip53 557 | \mathdisplay@stack=\toks36 558 | LaTeX Info: Redefining \[ on input line 2844. 559 | LaTeX Info: Redefining \] on input line 2845. 560 | ) (e:/texlive/2019/texmf-dist/tex/latex/amscls/amsthm.sty 561 | Package: amsthm 2017/10/31 v2.20.4 562 | \thm@style=\toks37 563 | \thm@bodyfont=\toks38 564 | \thm@headfont=\toks39 565 | \thm@notefont=\toks40 566 | \thm@headpunct=\toks41 567 | \thm@preskip=\skip54 568 | \thm@postskip=\skip55 569 | \thm@headsep=\skip56 570 | \dth@everypar=\toks42 571 | ) 572 | \c@theorem=\count158 573 | ) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerbasethemes.sty)) (e:/texli 574 | ve/2019/texmf-dist/tex/latex/beamer/beamerthemedefault.sty (e:/texlive/2019/tex 575 | mf-dist/tex/latex/beamer/beamerfontthemedefault.sty) (e:/texlive/2019/texmf-dis 576 | t/tex/latex/beamer/beamercolorthemedefault.sty) (e:/texlive/2019/texmf-dist/tex 577 | /latex/beamer/beamerinnerthemedefault.sty 578 | \beamer@dima=\dimen185 579 | \beamer@dimb=\dimen186 580 | ) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerouterthemedefault.sty))) ( 581 | ./ruc.sty (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerouterthemesplit.st 582 | y) (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamercolorthemewhale.sty) (e:/ 583 | texlive/2019/texmf-dist/tex/latex/beamer/beamerinnerthemerounded.sty) (e:/texli 584 | ve/2019/texmf-dist/tex/latex/beamer/beamercolorthemeorchid.sty) (e:/texlive/201 585 | 9/texmf-dist/tex/latex/beamer/beamercolorthemestructure.sty)) 586 | (e:/texlive/2019/texmf-dist/tex/latex/beamer/beamerfontthemeprofessionalfonts.s 587 | ty) (e:/texlive/2019/texmf-dist/tex/latex/base/fixltx2e.sty 588 | Package: fixltx2e 2016/12/29 v2.1a fixes to LaTeX (obsolete) 589 | Applying: [2015/01/01] Old fixltx2e package on input line 46. 590 | 591 | Package fixltx2e Warning: fixltx2e is not required with releases after 2015 592 | (fixltx2e) All fixes are now in the LaTeX kernel. 593 | (fixltx2e) See the latexrelease package for details. 594 | 595 | Already applied: [0000/00/00] Old fixltx2e package on input line 53. 596 | ) (e:/texlive/2019/texmf-dist/tex/latex/lm/lmodern.sty 597 | Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts 598 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 599 | (Font) OT1/cmr/m/n --> OT1/lmr/m/n on input line 22. 600 | LaTeX Font Info: Overwriting symbol font `letters' in version `normal' 601 | (Font) OML/cmm/m/it --> OML/lmm/m/it on input line 23. 602 | LaTeX Font Info: Overwriting symbol font `symbols' in version `normal' 603 | (Font) OMS/cmsy/m/n --> OMS/lmsy/m/n on input line 24. 604 | LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal' 605 | (Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 25. 606 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 607 | (Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 26. 608 | LaTeX Font Info: Overwriting symbol font `letters' in version `bold' 609 | (Font) OML/cmm/b/it --> OML/lmm/b/it on input line 27. 610 | LaTeX Font Info: Overwriting symbol font `symbols' in version `bold' 611 | (Font) OMS/cmsy/b/n --> OMS/lmsy/b/n on input line 28. 612 | LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' 613 | (Font) OMX/cmex/m/n --> OMX/lmex/m/n on input line 29. 614 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 615 | (Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 31. 616 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 617 | (Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32. 618 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 619 | (Font) OT1/cmr/m/it --> OT1/lmr/m/it on input line 33. 620 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 621 | (Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34. 622 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold' 623 | (Font) OT1/cmr/bx/n --> OT1/lmr/bx/n on input line 35. 624 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 625 | (Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36. 626 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 627 | (Font) OT1/cmr/bx/it --> OT1/lmr/bx/it on input line 37. 628 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 629 | (Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38. 630 | ) (e:/texlive/2019/texmf-dist/tex/latex/ctex/ctex.sty (e:/texlive/2019/texmf-di 631 | st/tex/latex/l3kernel/expl3.sty 632 | Package: expl3 2019-04-06 L3 programming layer (loader) 633 | (e:/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3-code.tex 634 | Package: expl3 2019-04-06 L3 programming layer (code) 635 | \c_max_int=\count159 636 | \l_tmpa_int=\count160 637 | \l_tmpb_int=\count161 638 | \g_tmpa_int=\count162 639 | \g_tmpb_int=\count163 640 | \g__kernel_prg_map_int=\count164 641 | \c__ior_term_ior=\count165 642 | \c_log_iow=\count166 643 | \l_iow_line_count_int=\count167 644 | \l__iow_line_target_int=\count168 645 | \l__iow_one_indent_int=\count169 646 | \l__iow_indent_int=\count170 647 | \c_zero_dim=\dimen187 648 | \c_max_dim=\dimen188 649 | \l_tmpa_dim=\dimen189 650 | \l_tmpb_dim=\dimen190 651 | \g_tmpa_dim=\dimen191 652 | \g_tmpb_dim=\dimen192 653 | \c_zero_skip=\skip57 654 | \c_max_skip=\skip58 655 | \l_tmpa_skip=\skip59 656 | \l_tmpb_skip=\skip60 657 | \g_tmpa_skip=\skip61 658 | \g_tmpb_skip=\skip62 659 | \c_zero_muskip=\muskip12 660 | \c_max_muskip=\muskip13 661 | \l_tmpa_muskip=\muskip14 662 | \l_tmpb_muskip=\muskip15 663 | \g_tmpa_muskip=\muskip16 664 | \g_tmpb_muskip=\muskip17 665 | \l_keys_choice_int=\count171 666 | \l__intarray_loop_int=\count172 667 | \c__intarray_sp_dim=\dimen193 668 | \g__intarray_font_int=\count173 669 | \c__fp_leading_shift_int=\count174 670 | \c__fp_middle_shift_int=\count175 671 | \c__fp_trailing_shift_int=\count176 672 | \c__fp_big_leading_shift_int=\count177 673 | \c__fp_big_middle_shift_int=\count178 674 | \c__fp_big_trailing_shift_int=\count179 675 | \c__fp_Bigg_leading_shift_int=\count180 676 | \c__fp_Bigg_middle_shift_int=\count181 677 | \c__fp_Bigg_trailing_shift_int=\count182 678 | \g__fp_array_int=\count183 679 | \l__fp_array_loop_int=\count184 680 | \l__sort_length_int=\count185 681 | \l__sort_min_int=\count186 682 | \l__sort_top_int=\count187 683 | \l__sort_max_int=\count188 684 | \l__sort_true_max_int=\count189 685 | \l__sort_block_int=\count190 686 | \l__sort_begin_int=\count191 687 | \l__sort_end_int=\count192 688 | \l__sort_A_int=\count193 689 | \l__sort_B_int=\count194 690 | \l__sort_C_int=\count195 691 | \l__tl_analysis_normal_int=\count196 692 | \l__tl_analysis_index_int=\count197 693 | \l__tl_analysis_nesting_int=\count198 694 | \l__tl_analysis_type_int=\count199 695 | \l__regex_internal_a_int=\count266 696 | \l__regex_internal_b_int=\count267 697 | \l__regex_internal_c_int=\count268 698 | \l__regex_balance_int=\count269 699 | \l__regex_group_level_int=\count270 700 | \l__regex_mode_int=\count271 701 | \c__regex_cs_in_class_mode_int=\count272 702 | \c__regex_cs_mode_int=\count273 703 | \l__regex_catcodes_int=\count274 704 | \l__regex_default_catcodes_int=\count275 705 | \c__regex_catcode_L_int=\count276 706 | \c__regex_catcode_O_int=\count277 707 | \c__regex_catcode_A_int=\count278 708 | \c__regex_all_catcodes_int=\count279 709 | \l__regex_show_lines_int=\count280 710 | \l__regex_min_state_int=\count281 711 | \l__regex_max_state_int=\count282 712 | \l__regex_left_state_int=\count283 713 | \l__regex_right_state_int=\count284 714 | \l__regex_capturing_group_int=\count285 715 | \l__regex_min_pos_int=\count286 716 | \l__regex_max_pos_int=\count287 717 | \l__regex_curr_pos_int=\count288 718 | \l__regex_start_pos_int=\count289 719 | \l__regex_success_pos_int=\count290 720 | \l__regex_curr_char_int=\count291 721 | \l__regex_curr_catcode_int=\count292 722 | \l__regex_last_char_int=\count293 723 | \l__regex_case_changed_char_int=\count294 724 | \l__regex_curr_state_int=\count295 725 | \l__regex_step_int=\count296 726 | \l__regex_min_active_int=\count297 727 | \l__regex_max_active_int=\count298 728 | \l__regex_replacement_csnames_int=\count299 729 | \l__regex_match_count_int=\count300 730 | \l__regex_min_submatch_int=\count301 731 | \l__regex_submatch_int=\count302 732 | \l__regex_zeroth_submatch_int=\count303 733 | \g__regex_trace_regex_int=\count304 734 | \c_empty_box=\box55 735 | \l_tmpa_box=\box56 736 | \l_tmpb_box=\box57 737 | \g_tmpa_box=\box58 738 | \g_tmpb_box=\box59 739 | \l__box_top_dim=\dimen194 740 | \l__box_bottom_dim=\dimen195 741 | \l__box_left_dim=\dimen196 742 | \l__box_right_dim=\dimen197 743 | \l__box_top_new_dim=\dimen198 744 | \l__box_bottom_new_dim=\dimen199 745 | \l__box_left_new_dim=\dimen256 746 | \l__box_right_new_dim=\dimen257 747 | \l__box_internal_box=\box60 748 | \l__coffin_internal_box=\box61 749 | \l__coffin_internal_dim=\dimen258 750 | \l__coffin_offset_x_dim=\dimen259 751 | \l__coffin_offset_y_dim=\dimen260 752 | \l__coffin_x_dim=\dimen261 753 | \l__coffin_y_dim=\dimen262 754 | \l__coffin_x_prime_dim=\dimen263 755 | \l__coffin_y_prime_dim=\dimen264 756 | \c_empty_coffin=\box62 757 | \l__coffin_aligned_coffin=\box63 758 | \l__coffin_aligned_internal_coffin=\box64 759 | \l_tmpa_coffin=\box65 760 | \l_tmpb_coffin=\box66 761 | \g_tmpa_coffin=\box67 762 | \g_tmpb_coffin=\box68 763 | \l__coffin_bounding_shift_dim=\dimen265 764 | \l__coffin_left_corner_dim=\dimen266 765 | \l__coffin_right_corner_dim=\dimen267 766 | \l__coffin_bottom_corner_dim=\dimen268 767 | \l__coffin_top_corner_dim=\dimen269 768 | \l__coffin_scaled_total_height_dim=\dimen270 769 | \l__coffin_scaled_width_dim=\dimen271 770 | \c__coffin_empty_coffin=\box69 771 | \l__coffin_display_coffin=\box70 772 | \l__coffin_display_coord_coffin=\box71 773 | \l__coffin_display_pole_coffin=\box72 774 | \l__coffin_display_offset_dim=\dimen272 775 | \l__coffin_display_x_dim=\dimen273 776 | \l__coffin_display_y_dim=\dimen274 777 | \g__file_internal_ior=\read2 778 | \l__seq_internal_a_int=\count305 779 | \l__seq_internal_b_int=\count306 780 | \c__deprecation_minus_one=\count307 781 | ) (e:/texlive/2019/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def 782 | File: l3xdvipdfmx.def 2019-04-06 v L3 Experimental driver: xdvipdfmx 783 | \g__driver_image_int=\count308 784 | \g__driver_pdf_object_int=\count309 785 | )) 786 | Package: ctex 2019/04/07 v2.4.15 Chinese adapter in LaTeX (CTEX) 787 | (e:/texlive/2019/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 788 | Package: xparse 2019-03-05 L3 Experimental document command parser 789 | \l__xparse_current_arg_int=\count310 790 | \g__xparse_grabber_int=\count311 791 | \l__xparse_m_args_int=\count312 792 | \l__xparse_v_nesting_int=\count313 793 | ) (e:/texlive/2019/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 794 | Package: l3keys2e 2019-03-05 LaTeX2e option processing using LaTeX3 keys 795 | ) (e:/texlive/2019/texmf-dist/tex/latex/ctex/ctexhook.sty 796 | Package: ctexhook 2019/04/07 v2.4.15 Document and package hooks (CTEX) 797 | ) (e:/texlive/2019/texmf-dist/tex/latex/ctex/ctexpatch.sty 798 | Package: ctexpatch 2019/04/07 v2.4.15 Patching commands (CTEX) 799 | ) (e:/texlive/2019/texmf-dist/tex/latex/base/fix-cm.sty 800 | Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX 801 | (e:/texlive/2019/texmf-dist/tex/latex/base/ts1enc.def 802 | File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file 803 | )) (e:/texlive/2019/texmf-dist/tex/latex/ms/everysel.sty 804 | Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS) 805 | ) 806 | \l__ctex_tmp_int=\count314 807 | \l__ctex_tmp_box=\box73 808 | \l__ctex_tmp_dim=\dimen275 809 | \g__ctex_section_depth_int=\count315 810 | \g__ctex_font_size_int=\count316 811 | (e:/texlive/2019/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 812 | File: ctexopts.cfg 2019/04/07 v2.4.15 Option configuration file (CTEX) 813 | ) (e:/texlive/2019/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def 814 | File: ctex-engine-xetex.def 2019/04/07 v2.4.15 XeLaTeX adapter (CTEX) 815 | (e:/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.sty 816 | Package: xeCJK 2019/04/07 v3.7.2 Typesetting CJK scripts with XeLaTeX 817 | (e:/texlive/2019/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty 818 | Package: xtemplate 2019-03-05 L3 Experimental prototype document functions 819 | \l__xtemplate_tmp_dim=\dimen276 820 | \l__xtemplate_tmp_int=\count317 821 | \l__xtemplate_tmp_muskip=\muskip18 822 | \l__xtemplate_tmp_skip=\skip63 823 | ) 824 | \l__xeCJK_tmp_int=\count318 825 | \l__xeCJK_tmp_box=\box74 826 | \l__xeCJK_tmp_dim=\dimen277 827 | \l__xeCJK_tmp_skip=\skip64 828 | \g__xeCJK_space_factor_int=\count319 829 | \l__xeCJK_begin_int=\count320 830 | \l__xeCJK_end_int=\count321 831 | \c__xeCJK_CJK_class_int=\XeTeXcharclass1 832 | \c__xeCJK_FullLeft_class_int=\XeTeXcharclass2 833 | \c__xeCJK_FullRight_class_int=\XeTeXcharclass3 834 | \c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4 835 | \c__xeCJK_HalfRight_class_int=\XeTeXcharclass5 836 | \c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6 837 | \c__xeCJK_CM_class_int=\XeTeXcharclass7 838 | \c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8 839 | \l__xeCJK_last_skip=\skip65 840 | \g__xeCJK_node_int=\count322 841 | \c__xeCJK_CJK_node_dim=\dimen278 842 | \c__xeCJK_CJK-space_node_dim=\dimen279 843 | \c__xeCJK_default_node_dim=\dimen280 844 | \c__xeCJK_default-space_node_dim=\dimen281 845 | \c__xeCJK_CJK-widow_node_dim=\dimen282 846 | \c__xeCJK_normalspace_node_dim=\dimen283 847 | \l__xeCJK_ccglue_skip=\skip66 848 | \l__xeCJK_ecglue_skip=\skip67 849 | \l__xeCJK_punct_kern_skip=\skip68 850 | \l__xeCJK_last_penalty_int=\count323 851 | \l__xeCJK_last_bound_dim=\dimen284 852 | \l__xeCJK_last_kern_dim=\dimen285 853 | \l__xeCJK_widow_penalty_int=\count324 854 | 855 | Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0 856 | (xtemplate) argument(s) on line 2352. 857 | 858 | \l__xeCJK_fixed_punct_width_dim=\dimen286 859 | \l__xeCJK_mixed_punct_width_dim=\dimen287 860 | \l__xeCJK_middle_punct_width_dim=\dimen288 861 | \l__xeCJK_fixed_margin_width_dim=\dimen289 862 | \l__xeCJK_mixed_margin_width_dim=\dimen290 863 | \l__xeCJK_middle_margin_width_dim=\dimen291 864 | \l__xeCJK_bound_punct_width_dim=\dimen292 865 | \l__xeCJK_bound_margin_width_dim=\dimen293 866 | \l__xeCJK_margin_minimum_dim=\dimen294 867 | \l__xeCJK_kerning_total_width_dim=\dimen295 868 | \l__xeCJK_same_align_margin_dim=\dimen296 869 | \l__xeCJK_different_align_margin_dim=\dimen297 870 | \l__xeCJK_kerning_margin_width_dim=\dimen298 871 | \l__xeCJK_kerning_margin_minimum_dim=\dimen299 872 | \l__xeCJK_bound_dim=\dimen300 873 | \l__xeCJK_reverse_bound_dim=\dimen301 874 | \l__xeCJK_minimum_bound_dim=\dimen302 875 | \l__xeCJK_kerning_margin_dim=\dimen303 876 | \l__xeCJK_original_margin_dim=\dimen304 877 | \g__xeCJK_family_int=\count325 878 | \l__xeCJK_fam_int=\count326 879 | \g__xeCJK_fam_allocation_int=\count327 880 | \l__xeCJK_verb_case_int=\count328 881 | \l__xeCJK_verb_exspace_skip=\skip69 882 | (e:/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.sty 883 | Package: fontspec 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 884 | (e:/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty 885 | Package: fontspec-xetex 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTe 886 | X 887 | \l__fontspec_script_int=\count329 888 | \l__fontspec_language_int=\count330 889 | \l__fontspec_strnum_int=\count331 890 | \l__fontspec_tmp_int=\count332 891 | \l__fontspec_tmpa_int=\count333 892 | \l__fontspec_tmpb_int=\count334 893 | \l__fontspec_tmpc_int=\count335 894 | \l__fontspec_em_int=\count336 895 | \l__fontspec_emdef_int=\count337 896 | \l__fontspec_strong_int=\count338 897 | \l__fontspec_strongdef_int=\count339 898 | \l__fontspec_tmpa_dim=\dimen305 899 | \l__fontspec_tmpb_dim=\dimen306 900 | \l__fontspec_tmpc_dim=\dimen307 901 | (e:/texlive/2019/texmf-dist/tex/latex/base/fontenc.sty 902 | Package: fontenc 2018/08/11 v2.0j Standard LaTeX package 903 | (e:/texlive/2019/texmf-dist/tex/latex/base/tuenc.def 904 | File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file 905 | LaTeX Font Info: Redeclaring font encoding TU on input line 82. 906 | )) (e:/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.cfg) 907 | LaTeX Info: Redefining \itshape on input line 4051. 908 | LaTeX Info: Redefining \slshape on input line 4056. 909 | LaTeX Info: Redefining \scshape on input line 4061. 910 | LaTeX Info: Redefining \upshape on input line 4066. 911 | LaTeX Info: Redefining \em on input line 4096. 912 | LaTeX Info: Redefining \emph on input line 4121. 913 | LaTeX Font Info: Font shape `TU/lmss/m/it' in size <10> not available 914 | (Font) Font shape `TU/lmss/m/sl' tried instead on input line 4171. 915 | 916 | )) (e:/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg 917 | File: xeCJK.cfg 2019/04/07 v3.7.2 Configuration file for xeCJK package 918 | )) (e:/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty 919 | Package: xeCJKfntef 2019/04/07 v3.7.2 xeCJK font effect 920 | (e:/texlive/2019/texmf-dist/tex/generic/ulem/ulem.sty 921 | \UL@box=\box75 922 | \UL@hyphenbox=\box76 923 | \UL@skip=\skip70 924 | \UL@hook=\toks43 925 | \UL@height=\dimen308 926 | \UL@pe=\count340 927 | \UL@pixel=\dimen309 928 | \ULC@box=\box77 929 | Package: ulem 2012/05/18 930 | \ULdepth=\dimen310 931 | ) (e:/texlive/2019/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty 932 | Package: CJKfntef 2015/04/18 4.8.4 933 | \CJK@fntefSkip=\skip71 934 | \CJK@nest=\count341 935 | \CJK@fntefDimen=\dimen311 936 | \CJK@underdotBox=\box78 937 | \CJK@ULbox=\box79 938 | \CJK@underanyskip=\dimen312 939 | ) 940 | \l__xeCJK_space_skip=\skip72 941 | \c__xeCJK_ulem-begin_node_dim=\dimen313 942 | \c__xeCJK_null_box=\box80 943 | \l__xeCJK_fntef_box=\box81 944 | \l__xeCJK_under_symbol_box=\box82 945 | \c__xeCJK_filll_skip=\skip73 946 | ) 947 | \ccwd=\dimen314 948 | \l__ctex_ccglue_skip=\skip74 949 | ) 950 | \l__ctex_ziju_dim=\dimen315 951 | (e:/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber.sty 952 | Package: zhnumber 2019/04/07 v2.7 Typesetting numbers with Chinese glyphs 953 | \l__zhnum_scale_int=\count342 954 | (e:/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 955 | File: zhnumber-utf8.cfg 2019/04/07 v2.7 Chinese numerals with UTF8 encoding 956 | )) (e:/texlive/2019/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese.def 957 | File: ctex-scheme-chinese.def 2019/04/07 v2.4.15 Chinese scheme for generic (CT 958 | EX) 959 | (e:/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 960 | File: ctex-name-utf8.cfg 2019/04/07 v2.4.15 Caption with encoding UTF8 (CTEX) 961 | )) (e:/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-windows.def 962 | File: ctex-fontset-windows.def 2019/04/07 v2.4.15 Windows fonts definition (CTE 963 | X) 964 | (e:/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-windowsnew.def 965 | File: ctex-fontset-windowsnew.def 2019/04/07 v2.4.15 Windows fonts definition f 966 | or Vista or later version (CTEX) 967 | 968 | Package fontspec Info: Could not resolve font "KaiTi/B" (it probably doesn't 969 | (fontspec) exist). 970 | 971 | 972 | Package fontspec Info: Could not resolve font "SimHei/I" (it probably doesn't 973 | (fontspec) exist). 974 | 975 | 976 | Package fontspec Info: Could not resolve font "SimSun/BI" (it probably doesn't 977 | (fontspec) exist). 978 | 979 | 980 | Package fontspec Info: Font family 'SimSun(0)' created for font 'SimSun' with 981 | (fontspec) options 982 | (fontspec) [Script={CJK},BoldFont={SimHei},ItalicFont={KaiTi}]. 983 | (fontspec) 984 | (fontspec) This font family consists of the following NFSS 985 | (fontspec) series/shapes: 986 | (fontspec) 987 | (fontspec) - 'normal' (m/n) with NFSS spec.: 988 | (fontspec) <->"SimSun/OT:script=hani;language=DFLT;" 989 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 990 | (fontspec) - 'bold' (bx/n) with NFSS spec.: 991 | (fontspec) <->"SimHei/OT:script=hani;language=DFLT;" 992 | (fontspec) - 'bold small caps' (bx/sc) with NFSS spec.: 993 | (fontspec) - 'italic' (m/it) with NFSS spec.: 994 | (fontspec) <->"KaiTi/OT:script=hani;language=DFLT;" 995 | (fontspec) - 'italic small caps' (m/itsc) with NFSS spec.: 996 | 997 | ))) (e:/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex.cfg 998 | File: ctex.cfg 2019/04/07 v2.4.15 Configuration file (CTEX) 999 | ) (e:/texlive/2019/texmf-dist/tex/xelatex/xltxtra/xltxtra.sty 1000 | Package: xltxtra 2018/12/31 v0.7 Improvements for the "XeLaTeX" format 1001 | (e:/texlive/2019/texmf-dist/tex/latex/realscripts/realscripts.sty 1002 | Package: realscripts 2016/02/13 v0.3d Access OpenType subscripts and superscrip 1003 | ts 1004 | \subsupersep=\dimen316 1005 | ) (e:/texlive/2019/texmf-dist/tex/latex/metalogo/metalogo.sty 1006 | Package: metalogo 2010/05/29 v0.12 Extended TeX logo macros 1007 | \xl@everylogo=\toks44 1008 | \xl@@everylogo=\toks45 1009 | LaTeX Info: Redefining \TeX on input line 193. 1010 | LaTeX Info: Redefining \LaTeX on input line 202. 1011 | LaTeX Info: Redefining \LaTeXe on input line 219. 1012 | ) 1013 | \l__xetex_show_hyphens_wrapping_box=\box83 1014 | \l__xetex_show_hyphens_temp_box=\box84 1015 | \l__xetex_show_hyphens_final_box=\box85 1016 | \g__xetex_show_hyphens_word_box=\box86 1017 | ) (e:/texlive/2019/texmf-dist/tex/xelatex/xunicode/xunicode.sty 1018 | File: xunicode.sty 2011/09/09 v0.981 provides access to latin accents and many 1019 | other characters in Unicode lower plane 1020 | (e:/texlive/2019/texmf-dist/tex/latex/tipa/t3enc.def 1021 | File: t3enc.def 2001/12/31 T3 encoding 1022 | 1023 | Package fontspec Info: Could not resolve font "Microsoft YaHei Bold/I" (it 1024 | (fontspec) probably doesn't exist). 1025 | 1026 | 1027 | Package fontspec Info: Could not resolve font "Microsoft YaHei/I" (it probably 1028 | (fontspec) doesn't exist). 1029 | 1030 | 1031 | Package fontspec Info: Font family 'MicrosoftYaHei(0)' created for font 1032 | (fontspec) 'Microsoft YaHei' with options 1033 | (fontspec) [Script={CJK},BoldFont={* Bold}]. 1034 | (fontspec) 1035 | (fontspec) This font family consists of the following NFSS 1036 | (fontspec) series/shapes: 1037 | (fontspec) 1038 | (fontspec) - 'normal' (m/n) with NFSS spec.: <->"Microsoft 1039 | (fontspec) YaHei/OT:script=hani;language=DFLT;" 1040 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 1041 | (fontspec) - 'bold' (bx/n) with NFSS spec.: <->"Microsoft YaHei 1042 | (fontspec) Bold/OT:script=hani;language=DFLT;" 1043 | (fontspec) - 'bold small caps' (bx/sc) with NFSS spec.: 1044 | (fontspec) - 'bold italic' (bx/it) with NFSS spec.: <->"Microsoft 1045 | (fontspec) YaHei/BI/OT:script=hani;language=DFLT;" 1046 | (fontspec) - 'bold italic small caps' (bx/itsc) with NFSS spec.: 1047 | 1048 | ) 1049 | \tipaTiiicode=\count343 1050 | \tipasavetokens=\toks46 1051 | \tipachecktokens=\toks47 1052 | ) (e:/texlive/2019/texmf-dist/tex/latex/upquote/upquote.sty 1053 | Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba 1054 | tim 1055 | (e:/texlive/2019/texmf-dist/tex/latex/base/textcomp.sty 1056 | Package: textcomp 2018/08/11 v2.0j Standard LaTeX package 1057 | Package textcomp Info: Sub-encoding information: 1058 | (textcomp) 5 = only ISO-Adobe without \textcurrency 1059 | (textcomp) 4 = 5 + \texteuro 1060 | (textcomp) 3 = 4 + \textohm 1061 | (textcomp) 2 = 3 + \textestimated + \textcurrency 1062 | (textcomp) 1 = TS1 - \textcircled - \t 1063 | (textcomp) 0 = TS1 (full) 1064 | (textcomp) Font families with sub-encoding setting implement 1065 | (textcomp) only a restricted character set as indicated. 1066 | (textcomp) Family '?' is the default used for unknown fonts. 1067 | (textcomp) See the documentation for details. 1068 | Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 79. 1069 | (e:/texlive/2019/texmf-dist/tex/latex/base/ts1enc.def 1070 | File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file 1071 | LaTeX Font Info: Redeclaring font encoding TS1 on input line 47. 1072 | ) 1073 | LaTeX Info: Redefining \oldstylenums on input line 334. 1074 | Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 349. 1075 | Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 350. 1076 | Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 351. 1077 | Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 352. 1078 | Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 353. 1079 | Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 354. 1080 | Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 355. 1081 | Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 356. 1082 | Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 357. 1083 | Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 358. 1084 | Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 359. 1085 | Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 360. 1086 | Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 361. 1087 | Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 362. 1088 | Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 363. 1089 | Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 364. 1090 | Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 365. 1091 | Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 366. 1092 | Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 367. 1093 | Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 368. 1094 | Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 369. 1095 | Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 370. 1096 | Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 371. 1097 | Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 372. 1098 | 1099 | Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 373. 1100 | Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 374. 1101 | Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 375. 1102 | Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 376. 1103 | Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 377. 1104 | Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 378. 1105 | Package textcomp Info: Setting lmr sub-encoding to TS1/0 on input line 379. 1106 | Package textcomp Info: Setting lmdh sub-encoding to TS1/0 on input line 380. 1107 | Package textcomp Info: Setting lmss sub-encoding to TS1/0 on input line 381. 1108 | Package textcomp Info: Setting lmssq sub-encoding to TS1/0 on input line 382. 1109 | Package textcomp Info: Setting lmvtt sub-encoding to TS1/0 on input line 383. 1110 | Package textcomp Info: Setting lmtt sub-encoding to TS1/0 on input line 384. 1111 | Package textcomp Info: Setting qhv sub-encoding to TS1/0 on input line 385. 1112 | Package textcomp Info: Setting qag sub-encoding to TS1/0 on input line 386. 1113 | Package textcomp Info: Setting qbk sub-encoding to TS1/0 on input line 387. 1114 | Package textcomp Info: Setting qcr sub-encoding to TS1/0 on input line 388. 1115 | Package textcomp Info: Setting qcs sub-encoding to TS1/0 on input line 389. 1116 | Package textcomp Info: Setting qpl sub-encoding to TS1/0 on input line 390. 1117 | Package textcomp Info: Setting qtm sub-encoding to TS1/0 on input line 391. 1118 | Package textcomp Info: Setting qzc sub-encoding to TS1/0 on input line 392. 1119 | Package textcomp Info: Setting qhvc sub-encoding to TS1/0 on input line 393. 1120 | Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 394. 1121 | Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 395. 1122 | Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 396. 1123 | Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 397. 1124 | Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 398. 1125 | Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 399. 1126 | Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 400. 1127 | Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 401. 1128 | Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 402. 1129 | Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 403. 1130 | Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 404. 1131 | Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 405. 1132 | Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 406. 1133 | Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 407. 1134 | Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 408. 1135 | Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 409. 1136 | )) (e:/texlive/2019/texmf-dist/tex/latex/microtype/microtype.sty 1137 | Package: microtype 2019/02/28 v2.7b Micro-typographical refinements (RS) 1138 | \MT@toks=\toks48 1139 | \MT@count=\count344 1140 | LaTeX Info: Redefining \textls on input line 790. 1141 | \MT@outer@kern=\dimen317 1142 | LaTeX Info: Redefining \textmicrotypecontext on input line 1336. 1143 | \MT@listname@count=\count345 1144 | (e:/texlive/2019/texmf-dist/tex/latex/microtype/microtype-xetex.def 1145 | File: microtype-xetex.def 2019/02/28 v2.7b Definitions specific to xetex (RS) 1146 | LaTeX Info: Redefining \lsstyle on input line 258. 1147 | ) 1148 | Package microtype Info: Loading configuration file microtype.cfg. 1149 | (e:/texlive/2019/texmf-dist/tex/latex/microtype/microtype.cfg 1150 | File: microtype.cfg 2019/02/28 v2.7b microtype main configuration file (RS) 1151 | )) (e:/texlive/2019/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty 1152 | Package: fancyvrb 2019/01/15 1153 | Style option: `fancyvrb' v3.2a <2019/01/15> (tvz) 1154 | \FV@CodeLineNo=\count346 1155 | \FV@InFile=\read3 1156 | \FV@TabBox=\box87 1157 | \c@FancyVerbLine=\count347 1158 | \FV@StepNumber=\count348 1159 | \FV@OutFile=\write5 1160 | ) (e:/texlive/2019/texmf-dist/tex/latex/tools/longtable.sty 1161 | Package: longtable 2014/10/28 v4.11 Multi-page Table package (DPC)+ FMi change 1162 | \LTleft=\skip75 1163 | \LTright=\skip76 1164 | \LTpre=\skip77 1165 | \LTpost=\skip78 1166 | \LTchunksize=\count349 1167 | \LTcapwidth=\dimen318 1168 | \LT@head=\box88 1169 | \LT@firsthead=\box89 1170 | \LT@foot=\box90 1171 | \LT@lastfoot=\box91 1172 | \LT@cols=\count350 1173 | \LT@rows=\count351 1174 | \c@LT@tables=\count352 1175 | \c@LT@chunks=\count353 1176 | \LT@p@ftn=\toks49 1177 | ) (e:/texlive/2019/texmf-dist/tex/latex/booktabs/booktabs.sty 1178 | Package: booktabs 2016/04/27 v1.618033 publication quality tables 1179 | \heavyrulewidth=\dimen319 1180 | \lightrulewidth=\dimen320 1181 | \cmidrulewidth=\dimen321 1182 | \belowrulesep=\dimen322 1183 | \belowbottomsep=\dimen323 1184 | \aboverulesep=\dimen324 1185 | \abovetopsep=\dimen325 1186 | \cmidrulesep=\dimen326 1187 | \cmidrulekern=\dimen327 1188 | \defaultaddspace=\dimen328 1189 | \@cmidla=\count354 1190 | \@cmidlb=\count355 1191 | \@aboverulesep=\dimen329 1192 | \@belowrulesep=\dimen330 1193 | \@thisruleclass=\count356 1194 | \@lastruleclass=\count357 1195 | \@thisrulewidth=\dimen331 1196 | ) (e:/texlive/2019/texmf-dist/tex/latex/caption/caption.sty 1197 | Package: caption 2018/10/06 v3.3-154 Customizing captions (AR) 1198 | (e:/texlive/2019/texmf-dist/tex/latex/caption/caption3.sty 1199 | Package: caption3 2018/09/12 v1.8c caption3 kernel (AR) 1200 | Package caption3 Info: TeX engine: e-TeX on input line 64. 1201 | \captionmargin=\dimen332 1202 | \captionmargin@=\dimen333 1203 | \captionwidth=\dimen334 1204 | \caption@tempdima=\dimen335 1205 | \caption@indent=\dimen336 1206 | \caption@parindent=\dimen337 1207 | \caption@hangindent=\dimen338 1208 | ) 1209 | \c@caption@flags=\count358 1210 | \c@ContinuedFloat=\count359 1211 | Package caption Info: beamer document class. 1212 | Package caption Info: hyperref package is loaded. 1213 | Package caption Info: Hyperref support is turned off 1214 | (caption) because hyperref has stopped early. 1215 | Package caption Info: longtable package is loaded. 1216 | (e:/texlive/2019/texmf-dist/tex/latex/caption/ltcaption.sty 1217 | Package: ltcaption 2018/08/26 v1.4-95 longtable captions (AR) 1218 | )) (e:/texlive/2019/texmf-dist/tex/xelatex/xecjk/xunicode-addon.sty 1219 | Package: xunicode-addon 2019/04/07 v3.7.2 addon file for xunicode 1220 | \l__xunadd_tmp_coffin=\box92 1221 | \l__xunadd_circle_coffin=\box93 1222 | \l_xunadd_slot_int=\count360 1223 | ) (e:/texlive/2019/texmf-dist/tex/xelatex/xunicode/xunicode.sty 1224 | File: xunicode.sty 2011/09/09 v0.981 provides access to latin accents and many 1225 | other characters in Unicode lower plane 1226 | *** Reloading Xunicode for encoding 'TU' *** 1227 | ) (e:/texlive/2019/texmf-dist/tex/xelatex/xecjk/xunicode-extra.def 1228 | File: xunicode-extra.def 2019/04/07 v3.7.2 extra definition for xunicode 1229 | ) (./rucbeamer.aux) 1230 | \openout1 = `rucbeamer.aux'. 1231 | 1232 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 114. 1233 | LaTeX Font Info: ... okay on input line 114. 1234 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 114. 1235 | LaTeX Font Info: ... okay on input line 114. 1236 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 114. 1237 | LaTeX Font Info: ... okay on input line 114. 1238 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 114. 1239 | LaTeX Font Info: ... okay on input line 114. 1240 | LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 114. 1241 | LaTeX Font Info: ... okay on input line 114. 1242 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 114. 1243 | LaTeX Font Info: ... okay on input line 114. 1244 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 114. 1245 | LaTeX Font Info: ... okay on input line 114. 1246 | LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 114. 1247 | LaTeX Font Info: ... okay on input line 114. 1248 | LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 114. 1249 | LaTeX Font Info: ... okay on input line 114. 1250 | LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 114. 1251 | LaTeX Font Info: ... okay on input line 114. 1252 | LaTeX Font Info: Checking defaults for T3/cmr/m/n on input line 114. 1253 | LaTeX Font Info: Try loading font information for T3+cmr on input line 114. 1254 | (e:/texlive/2019/texmf-dist/tex/latex/tipa/t3cmr.fd 1255 | File: t3cmr.fd 2001/12/31 TIPA font definitions 1256 | ) 1257 | LaTeX Font Info: ... okay on input line 114. 1258 | *geometry* driver: auto-detecting 1259 | *geometry* detected driver: xetex 1260 | *geometry* verbose mode - [ preamble ] result: 1261 | * driver: xetex 1262 | * paper: custom 1263 | * layout: 1264 | * layoutoffset:(h,v)=(0.0pt,0.0pt) 1265 | * modes: includehead includefoot 1266 | * h-part:(L,W,R)=(28.45274pt, 307.28987pt, 28.45274pt) 1267 | * v-part:(T,H,B)=(0.0pt, 273.14662pt, 0.0pt) 1268 | * \paperwidth=364.19536pt 1269 | * \paperheight=273.14662pt 1270 | * \textwidth=307.28987pt 1271 | * \textheight=244.6939pt 1272 | * \oddsidemargin=-43.81725pt 1273 | * \evensidemargin=-43.81725pt 1274 | * \topmargin=-72.26999pt 1275 | * \headheight=14.22636pt 1276 | * \headsep=0.0pt 1277 | * \topskip=10.0pt 1278 | * \footskip=14.22636pt 1279 | * \marginparwidth=3.0pt 1280 | * \marginparsep=11.0pt 1281 | * \columnsep=10.0pt 1282 | * \skip\footins=9.0pt plus 4.0pt minus 2.0pt 1283 | * \hoffset=0.0pt 1284 | * \voffset=0.0pt 1285 | * \mag=1000 1286 | * \@twocolumnfalse 1287 | * \@twosidefalse 1288 | * \@mparswitchfalse 1289 | * \@reversemarginfalse 1290 | * (1in=72.27pt=25.4mm, 1cm=28.453pt) 1291 | 1292 | ABD: EveryShipout initializing macros 1293 | \AtBeginShipoutBox=\box94 1294 | Package hyperref Info: Link coloring OFF on input line 114. 1295 | (e:/texlive/2019/texmf-dist/tex/latex/hyperref/nameref.sty 1296 | Package: nameref 2016/05/21 v2.44 Cross-referencing by name of section 1297 | (e:/texlive/2019/texmf-dist/tex/generic/oberdiek/gettitlestring.sty 1298 | Package: gettitlestring 2016/05/16 v1.5 Cleanup title references (HO) 1299 | ) 1300 | \c@section@level=\count361 1301 | ) 1302 | LaTeX Info: Redefining \ref on input line 114. 1303 | LaTeX Info: Redefining \pageref on input line 114. 1304 | LaTeX Info: Redefining \nameref on input line 114. 1305 | (./rucbeamer.out) (./rucbeamer.out) 1306 | \@outlinefile=\write6 1307 | \openout6 = `rucbeamer.out'. 1308 | 1309 | 1310 | (e:/texlive/2019/texmf-dist/tex/latex/translator/translator-basic-dictionary-En 1311 | glish.dict 1312 | Dictionary: translator-basic-dictionary, Language: English 1313 | ) 1314 | (e:/texlive/2019/texmf-dist/tex/latex/translator/translator-bibliography-dictio 1315 | nary-English.dict 1316 | Dictionary: translator-bibliography-dictionary, Language: English 1317 | ) 1318 | (e:/texlive/2019/texmf-dist/tex/latex/translator/translator-environment-diction 1319 | ary-English.dict 1320 | Dictionary: translator-environment-dictionary, Language: English 1321 | ) 1322 | (e:/texlive/2019/texmf-dist/tex/latex/translator/translator-months-dictionary-E 1323 | nglish.dict 1324 | Dictionary: translator-months-dictionary, Language: English 1325 | ) 1326 | (e:/texlive/2019/texmf-dist/tex/latex/translator/translator-numbers-dictionary- 1327 | English.dict 1328 | Dictionary: translator-numbers-dictionary, Language: English 1329 | ) 1330 | (e:/texlive/2019/texmf-dist/tex/latex/translator/translator-theorem-dictionary- 1331 | English.dict 1332 | Dictionary: translator-theorem-dictionary, Language: English 1333 | ) 1334 | (e:/texlive/2019/texmf-dist/tex/latex/ctex/dictionary/translator-theorem-dictio 1335 | nary-ChineseUTF8.dict 1336 | Dictionary: translator-theorem-dictionary, Language: ChineseUTF8 2019/04/07 v2. 1337 | 4.15 Chinese translation for theorem name (CTEX) 1338 | ) ABD: EverySelectfont initializing macros 1339 | LaTeX Info: Redefining \selectfont on input line 114. 1340 | LaTeX Info: Redefining \microtypecontext on input line 114. 1341 | Package microtype Info: Character protrusion enabled (level 2). 1342 | Package microtype Info: Using default protrusion set `alltext'. 1343 | Package microtype Info: No adjustment of tracking. 1344 | Package microtype Info: No adjustment of spacing. 1345 | Package microtype Info: No adjustment of kerning. 1346 | Package microtype Info: Loading generic protrusion settings for font family 1347 | (microtype) `lmss' (encoding: TU). 1348 | (microtype) For optimal results, create family-specific settings. 1349 | (microtype) See the microtype manual for details. 1350 | 1351 | Package microtype Warning: Unknown slot number of character 1352 | (microtype) `\`A' 1353 | (microtype) in font encoding `TU' in inheritance list 1354 | (microtype) `microtype.cfg/376(protrusion)'. 1355 | 1356 | 1357 | Package microtype Warning: Unknown slot number of character 1358 | (microtype) `\'A' 1359 | (microtype) in font encoding `TU' in inheritance list 1360 | (microtype) `microtype.cfg/376(protrusion)'. 1361 | 1362 | 1363 | Package microtype Warning: Unknown slot number of character 1364 | (microtype) `\^A' 1365 | (microtype) in font encoding `TU' in inheritance list 1366 | (microtype) `microtype.cfg/376(protrusion)'. 1367 | 1368 | 1369 | Package microtype Warning: Unknown slot number of character 1370 | (microtype) `\~A' 1371 | (microtype) in font encoding `TU' in inheritance list 1372 | (microtype) `microtype.cfg/376(protrusion)'. 1373 | 1374 | 1375 | Package microtype Warning: Unknown slot number of character 1376 | (microtype) `\"A' 1377 | (microtype) in font encoding `TU' in inheritance list 1378 | (microtype) `microtype.cfg/376(protrusion)'. 1379 | 1380 | 1381 | Package microtype Warning: Unknown slot number of character 1382 | (microtype) `\r A' 1383 | (microtype) in font encoding `TU' in inheritance list 1384 | (microtype) `microtype.cfg/376(protrusion)'. 1385 | 1386 | 1387 | Package microtype Warning: Unknown slot number of character 1388 | (microtype) `\k A' 1389 | (microtype) in font encoding `TU' in inheritance list 1390 | (microtype) `microtype.cfg/376(protrusion)'. 1391 | 1392 | 1393 | Package microtype Warning: Unknown slot number of character 1394 | (microtype) `\u A' 1395 | (microtype) in font encoding `TU' in inheritance list 1396 | (microtype) `microtype.cfg/376(protrusion)'. 1397 | 1398 | 1399 | Package microtype Warning: Unknown slot number of character 1400 | (microtype) `\`a' 1401 | (microtype) in font encoding `TU' in inheritance list 1402 | (microtype) `microtype.cfg/376(protrusion)'. 1403 | 1404 | 1405 | Package microtype Warning: Unknown slot number of character 1406 | (microtype) `\'a' 1407 | (microtype) in font encoding `TU' in inheritance list 1408 | (microtype) `microtype.cfg/376(protrusion)'. 1409 | 1410 | 1411 | Package microtype Warning: Unknown slot number of character 1412 | (microtype) `\^a' 1413 | (microtype) in font encoding `TU' in inheritance list 1414 | (microtype) `microtype.cfg/376(protrusion)'. 1415 | 1416 | 1417 | Package microtype Warning: Unknown slot number of character 1418 | (microtype) `\~a' 1419 | (microtype) in font encoding `TU' in inheritance list 1420 | (microtype) `microtype.cfg/376(protrusion)'. 1421 | 1422 | 1423 | Package microtype Warning: Unknown slot number of character 1424 | (microtype) `\"a' 1425 | (microtype) in font encoding `TU' in inheritance list 1426 | (microtype) `microtype.cfg/376(protrusion)'. 1427 | 1428 | 1429 | Package microtype Warning: Unknown slot number of character 1430 | (microtype) `\r a' 1431 | (microtype) in font encoding `TU' in inheritance list 1432 | (microtype) `microtype.cfg/376(protrusion)'. 1433 | 1434 | 1435 | Package microtype Warning: Unknown slot number of character 1436 | (microtype) `\k a' 1437 | (microtype) in font encoding `TU' in inheritance list 1438 | (microtype) `microtype.cfg/376(protrusion)'. 1439 | 1440 | 1441 | Package microtype Warning: Unknown slot number of character 1442 | (microtype) `\u a' 1443 | (microtype) in font encoding `TU' in inheritance list 1444 | (microtype) `microtype.cfg/376(protrusion)'. 1445 | 1446 | 1447 | Package microtype Warning: Unknown slot number of character 1448 | (microtype) `\'C' 1449 | (microtype) in font encoding `TU' in inheritance list 1450 | (microtype) `microtype.cfg/376(protrusion)'. 1451 | 1452 | 1453 | Package microtype Warning: Unknown slot number of character 1454 | (microtype) `\c C' 1455 | (microtype) in font encoding `TU' in inheritance list 1456 | (microtype) `microtype.cfg/376(protrusion)'. 1457 | 1458 | 1459 | Package microtype Warning: Unknown slot number of character 1460 | (microtype) `\v C' 1461 | (microtype) in font encoding `TU' in inheritance list 1462 | (microtype) `microtype.cfg/376(protrusion)'. 1463 | 1464 | 1465 | Package microtype Warning: Unknown slot number of character 1466 | (microtype) `\'c' 1467 | (microtype) in font encoding `TU' in inheritance list 1468 | (microtype) `microtype.cfg/376(protrusion)'. 1469 | 1470 | 1471 | Package microtype Warning: Unknown slot number of character 1472 | (microtype) `\c c' 1473 | (microtype) in font encoding `TU' in inheritance list 1474 | (microtype) `microtype.cfg/376(protrusion)'. 1475 | 1476 | 1477 | Package microtype Warning: Unknown slot number of character 1478 | (microtype) `\v c' 1479 | (microtype) in font encoding `TU' in inheritance list 1480 | (microtype) `microtype.cfg/376(protrusion)'. 1481 | 1482 | 1483 | Package microtype Warning: Unknown slot number of character 1484 | (microtype) `\v D' 1485 | (microtype) in font encoding `TU' in inheritance list 1486 | (microtype) `microtype.cfg/376(protrusion)'. 1487 | 1488 | 1489 | Package microtype Warning: Unknown slot number of character 1490 | (microtype) `\DH ' 1491 | (microtype) in font encoding `TU' in inheritance list 1492 | (microtype) `microtype.cfg/376(protrusion)'. 1493 | 1494 | 1495 | Package microtype Warning: Unknown slot number of character 1496 | (microtype) `\v d' 1497 | (microtype) in font encoding `TU' in inheritance list 1498 | (microtype) `microtype.cfg/376(protrusion)'. 1499 | 1500 | 1501 | Package microtype Warning: Unknown slot number of character 1502 | (microtype) `\dj ' 1503 | (microtype) in font encoding `TU' in inheritance list 1504 | (microtype) `microtype.cfg/376(protrusion)'. 1505 | 1506 | 1507 | Package microtype Warning: Unknown slot number of character 1508 | (microtype) `\`E' 1509 | (microtype) in font encoding `TU' in inheritance list 1510 | (microtype) `microtype.cfg/376(protrusion)'. 1511 | 1512 | 1513 | Package microtype Warning: Unknown slot number of character 1514 | (microtype) `\'E' 1515 | (microtype) in font encoding `TU' in inheritance list 1516 | (microtype) `microtype.cfg/376(protrusion)'. 1517 | 1518 | 1519 | Package microtype Warning: Unknown slot number of character 1520 | (microtype) `\^E' 1521 | (microtype) in font encoding `TU' in inheritance list 1522 | (microtype) `microtype.cfg/376(protrusion)'. 1523 | 1524 | 1525 | Package microtype Warning: Unknown slot number of character 1526 | (microtype) `\"E' 1527 | (microtype) in font encoding `TU' in inheritance list 1528 | (microtype) `microtype.cfg/376(protrusion)'. 1529 | 1530 | 1531 | Package microtype Warning: Unknown slot number of character 1532 | (microtype) `\k E' 1533 | (microtype) in font encoding `TU' in inheritance list 1534 | (microtype) `microtype.cfg/376(protrusion)'. 1535 | 1536 | 1537 | Package microtype Warning: Unknown slot number of character 1538 | (microtype) `\v E' 1539 | (microtype) in font encoding `TU' in inheritance list 1540 | (microtype) `microtype.cfg/376(protrusion)'. 1541 | 1542 | 1543 | Package microtype Warning: Unknown slot number of character 1544 | (microtype) `\`e' 1545 | (microtype) in font encoding `TU' in inheritance list 1546 | (microtype) `microtype.cfg/376(protrusion)'. 1547 | 1548 | 1549 | Package microtype Warning: Unknown slot number of character 1550 | (microtype) `\'e' 1551 | (microtype) in font encoding `TU' in inheritance list 1552 | (microtype) `microtype.cfg/376(protrusion)'. 1553 | 1554 | 1555 | Package microtype Warning: Unknown slot number of character 1556 | (microtype) `\^e' 1557 | (microtype) in font encoding `TU' in inheritance list 1558 | (microtype) `microtype.cfg/376(protrusion)'. 1559 | 1560 | 1561 | Package microtype Warning: Unknown slot number of character 1562 | (microtype) `\"e' 1563 | (microtype) in font encoding `TU' in inheritance list 1564 | (microtype) `microtype.cfg/376(protrusion)'. 1565 | 1566 | 1567 | Package microtype Warning: Unknown slot number of character 1568 | (microtype) `\k e' 1569 | (microtype) in font encoding `TU' in inheritance list 1570 | (microtype) `microtype.cfg/376(protrusion)'. 1571 | 1572 | 1573 | Package microtype Warning: Unknown slot number of character 1574 | (microtype) `\v e' 1575 | (microtype) in font encoding `TU' in inheritance list 1576 | (microtype) `microtype.cfg/376(protrusion)'. 1577 | 1578 | 1579 | Package microtype Warning: Unknown slot number of character 1580 | (microtype) `\u G' 1581 | (microtype) in font encoding `TU' in inheritance list 1582 | (microtype) `microtype.cfg/376(protrusion)'. 1583 | 1584 | 1585 | Package microtype Warning: Unknown slot number of character 1586 | (microtype) `\u g' 1587 | (microtype) in font encoding `TU' in inheritance list 1588 | (microtype) `microtype.cfg/376(protrusion)'. 1589 | 1590 | 1591 | Package microtype Warning: Unknown slot number of character 1592 | (microtype) `\`I' 1593 | (microtype) in font encoding `TU' in inheritance list 1594 | (microtype) `microtype.cfg/376(protrusion)'. 1595 | 1596 | 1597 | Package microtype Warning: Unknown slot number of character 1598 | (microtype) `\'I' 1599 | (microtype) in font encoding `TU' in inheritance list 1600 | (microtype) `microtype.cfg/376(protrusion)'. 1601 | 1602 | 1603 | Package microtype Warning: Unknown slot number of character 1604 | (microtype) `\^I' 1605 | (microtype) in font encoding `TU' in inheritance list 1606 | (microtype) `microtype.cfg/376(protrusion)'. 1607 | 1608 | 1609 | Package microtype Warning: Unknown slot number of character 1610 | (microtype) `\"I' 1611 | (microtype) in font encoding `TU' in inheritance list 1612 | (microtype) `microtype.cfg/376(protrusion)'. 1613 | 1614 | 1615 | Package microtype Warning: Unknown slot number of character 1616 | (microtype) `\.I' 1617 | (microtype) in font encoding `TU' in inheritance list 1618 | (microtype) `microtype.cfg/376(protrusion)'. 1619 | 1620 | 1621 | Package microtype Warning: Unknown slot number of character 1622 | (microtype) `\`i' 1623 | (microtype) in font encoding `TU' in inheritance list 1624 | (microtype) `microtype.cfg/376(protrusion)'. 1625 | 1626 | 1627 | Package microtype Warning: Unknown slot number of character 1628 | (microtype) `\'i' 1629 | (microtype) in font encoding `TU' in inheritance list 1630 | (microtype) `microtype.cfg/376(protrusion)'. 1631 | 1632 | 1633 | Package microtype Warning: Unknown slot number of character 1634 | (microtype) `\^i' 1635 | (microtype) in font encoding `TU' in inheritance list 1636 | (microtype) `microtype.cfg/376(protrusion)'. 1637 | 1638 | 1639 | Package microtype Warning: Unknown slot number of character 1640 | (microtype) `\"i' 1641 | (microtype) in font encoding `TU' in inheritance list 1642 | (microtype) `microtype.cfg/376(protrusion)'. 1643 | 1644 | 1645 | Package microtype Warning: Unknown slot number of character 1646 | (microtype) `\i ' 1647 | (microtype) in font encoding `TU' in inheritance list 1648 | (microtype) `microtype.cfg/376(protrusion)'. 1649 | 1650 | 1651 | Package microtype Warning: Unknown slot number of character 1652 | (microtype) `\L ' 1653 | (microtype) in font encoding `TU' in inheritance list 1654 | (microtype) `microtype.cfg/376(protrusion)'. 1655 | 1656 | 1657 | Package microtype Warning: Unknown slot number of character 1658 | (microtype) `\'L' 1659 | (microtype) in font encoding `TU' in inheritance list 1660 | (microtype) `microtype.cfg/376(protrusion)'. 1661 | 1662 | 1663 | Package microtype Warning: Unknown slot number of character 1664 | (microtype) `\v L' 1665 | (microtype) in font encoding `TU' in inheritance list 1666 | (microtype) `microtype.cfg/376(protrusion)'. 1667 | 1668 | 1669 | Package microtype Warning: Unknown slot number of character 1670 | (microtype) `\l ' 1671 | (microtype) in font encoding `TU' in inheritance list 1672 | (microtype) `microtype.cfg/376(protrusion)'. 1673 | 1674 | 1675 | Package microtype Warning: Unknown slot number of character 1676 | (microtype) `\'l' 1677 | (microtype) in font encoding `TU' in inheritance list 1678 | (microtype) `microtype.cfg/376(protrusion)'. 1679 | 1680 | 1681 | Package microtype Warning: Unknown slot number of character 1682 | (microtype) `\v l' 1683 | (microtype) in font encoding `TU' in inheritance list 1684 | (microtype) `microtype.cfg/376(protrusion)'. 1685 | 1686 | 1687 | Package microtype Warning: Unknown slot number of character 1688 | (microtype) `\'N' 1689 | (microtype) in font encoding `TU' in inheritance list 1690 | (microtype) `microtype.cfg/376(protrusion)'. 1691 | 1692 | 1693 | Package microtype Warning: Unknown slot number of character 1694 | (microtype) `\~N' 1695 | (microtype) in font encoding `TU' in inheritance list 1696 | (microtype) `microtype.cfg/376(protrusion)'. 1697 | 1698 | 1699 | Package microtype Warning: Unknown slot number of character 1700 | (microtype) `\v N' 1701 | (microtype) in font encoding `TU' in inheritance list 1702 | (microtype) `microtype.cfg/376(protrusion)'. 1703 | 1704 | 1705 | Package microtype Warning: Unknown slot number of character 1706 | (microtype) `\'n' 1707 | (microtype) in font encoding `TU' in inheritance list 1708 | (microtype) `microtype.cfg/376(protrusion)'. 1709 | 1710 | 1711 | Package microtype Warning: Unknown slot number of character 1712 | (microtype) `\~n' 1713 | (microtype) in font encoding `TU' in inheritance list 1714 | (microtype) `microtype.cfg/376(protrusion)'. 1715 | 1716 | 1717 | Package microtype Warning: Unknown slot number of character 1718 | (microtype) `\v n' 1719 | (microtype) in font encoding `TU' in inheritance list 1720 | (microtype) `microtype.cfg/376(protrusion)'. 1721 | 1722 | 1723 | Package microtype Warning: Unknown slot number of character 1724 | (microtype) `\O ' 1725 | (microtype) in font encoding `TU' in inheritance list 1726 | (microtype) `microtype.cfg/376(protrusion)'. 1727 | 1728 | 1729 | Package microtype Warning: Unknown slot number of character 1730 | (microtype) `\`O' 1731 | (microtype) in font encoding `TU' in inheritance list 1732 | (microtype) `microtype.cfg/376(protrusion)'. 1733 | 1734 | 1735 | Package microtype Warning: Unknown slot number of character 1736 | (microtype) `\'O' 1737 | (microtype) in font encoding `TU' in inheritance list 1738 | (microtype) `microtype.cfg/376(protrusion)'. 1739 | 1740 | 1741 | Package microtype Warning: Unknown slot number of character 1742 | (microtype) `\^O' 1743 | (microtype) in font encoding `TU' in inheritance list 1744 | (microtype) `microtype.cfg/376(protrusion)'. 1745 | 1746 | 1747 | Package microtype Warning: Unknown slot number of character 1748 | (microtype) `\~O' 1749 | (microtype) in font encoding `TU' in inheritance list 1750 | (microtype) `microtype.cfg/376(protrusion)'. 1751 | 1752 | 1753 | Package microtype Warning: Unknown slot number of character 1754 | (microtype) `\"O' 1755 | (microtype) in font encoding `TU' in inheritance list 1756 | (microtype) `microtype.cfg/376(protrusion)'. 1757 | 1758 | 1759 | Package microtype Warning: Unknown slot number of character 1760 | (microtype) `\H O' 1761 | (microtype) in font encoding `TU' in inheritance list 1762 | (microtype) `microtype.cfg/376(protrusion)'. 1763 | 1764 | 1765 | Package microtype Warning: Unknown slot number of character 1766 | (microtype) `\o ' 1767 | (microtype) in font encoding `TU' in inheritance list 1768 | (microtype) `microtype.cfg/376(protrusion)'. 1769 | 1770 | 1771 | Package microtype Warning: Unknown slot number of character 1772 | (microtype) `\`o' 1773 | (microtype) in font encoding `TU' in inheritance list 1774 | (microtype) `microtype.cfg/376(protrusion)'. 1775 | 1776 | 1777 | Package microtype Warning: Unknown slot number of character 1778 | (microtype) `\'o' 1779 | (microtype) in font encoding `TU' in inheritance list 1780 | (microtype) `microtype.cfg/376(protrusion)'. 1781 | 1782 | 1783 | Package microtype Warning: Unknown slot number of character 1784 | (microtype) `\^o' 1785 | (microtype) in font encoding `TU' in inheritance list 1786 | (microtype) `microtype.cfg/376(protrusion)'. 1787 | 1788 | 1789 | Package microtype Warning: Unknown slot number of character 1790 | (microtype) `\~o' 1791 | (microtype) in font encoding `TU' in inheritance list 1792 | (microtype) `microtype.cfg/376(protrusion)'. 1793 | 1794 | 1795 | Package microtype Warning: Unknown slot number of character 1796 | (microtype) `\"o' 1797 | (microtype) in font encoding `TU' in inheritance list 1798 | (microtype) `microtype.cfg/376(protrusion)'. 1799 | 1800 | 1801 | Package microtype Warning: Unknown slot number of character 1802 | (microtype) `\H o' 1803 | (microtype) in font encoding `TU' in inheritance list 1804 | (microtype) `microtype.cfg/376(protrusion)'. 1805 | 1806 | 1807 | Package microtype Warning: Unknown slot number of character 1808 | (microtype) `\'R' 1809 | (microtype) in font encoding `TU' in inheritance list 1810 | (microtype) `microtype.cfg/376(protrusion)'. 1811 | 1812 | 1813 | Package microtype Warning: Unknown slot number of character 1814 | (microtype) `\v R' 1815 | (microtype) in font encoding `TU' in inheritance list 1816 | (microtype) `microtype.cfg/376(protrusion)'. 1817 | 1818 | 1819 | Package microtype Warning: Unknown slot number of character 1820 | (microtype) `\'r' 1821 | (microtype) in font encoding `TU' in inheritance list 1822 | (microtype) `microtype.cfg/376(protrusion)'. 1823 | 1824 | 1825 | Package microtype Warning: Unknown slot number of character 1826 | (microtype) `\v r' 1827 | (microtype) in font encoding `TU' in inheritance list 1828 | (microtype) `microtype.cfg/376(protrusion)'. 1829 | 1830 | 1831 | Package microtype Warning: Unknown slot number of character 1832 | (microtype) `\'S' 1833 | (microtype) in font encoding `TU' in inheritance list 1834 | (microtype) `microtype.cfg/376(protrusion)'. 1835 | 1836 | 1837 | Package microtype Warning: Unknown slot number of character 1838 | (microtype) `\c S' 1839 | (microtype) in font encoding `TU' in inheritance list 1840 | (microtype) `microtype.cfg/376(protrusion)'. 1841 | 1842 | 1843 | Package microtype Warning: Unknown slot number of character 1844 | (microtype) `\v S' 1845 | (microtype) in font encoding `TU' in inheritance list 1846 | (microtype) `microtype.cfg/376(protrusion)'. 1847 | 1848 | 1849 | Package microtype Warning: Unknown slot number of character 1850 | (microtype) `\'s' 1851 | (microtype) in font encoding `TU' in inheritance list 1852 | (microtype) `microtype.cfg/376(protrusion)'. 1853 | 1854 | 1855 | Package microtype Warning: Unknown slot number of character 1856 | (microtype) `\c s' 1857 | (microtype) in font encoding `TU' in inheritance list 1858 | (microtype) `microtype.cfg/376(protrusion)'. 1859 | 1860 | 1861 | Package microtype Warning: Unknown slot number of character 1862 | (microtype) `\v s' 1863 | (microtype) in font encoding `TU' in inheritance list 1864 | (microtype) `microtype.cfg/376(protrusion)'. 1865 | 1866 | 1867 | Package microtype Warning: Unknown slot number of character 1868 | (microtype) `\c T' 1869 | (microtype) in font encoding `TU' in inheritance list 1870 | (microtype) `microtype.cfg/376(protrusion)'. 1871 | 1872 | 1873 | Package microtype Warning: Unknown slot number of character 1874 | (microtype) `\v T' 1875 | (microtype) in font encoding `TU' in inheritance list 1876 | (microtype) `microtype.cfg/376(protrusion)'. 1877 | 1878 | 1879 | Package microtype Warning: Unknown slot number of character 1880 | (microtype) `\c t' 1881 | (microtype) in font encoding `TU' in inheritance list 1882 | (microtype) `microtype.cfg/376(protrusion)'. 1883 | 1884 | 1885 | Package microtype Warning: Unknown slot number of character 1886 | (microtype) `\v t' 1887 | (microtype) in font encoding `TU' in inheritance list 1888 | (microtype) `microtype.cfg/376(protrusion)'. 1889 | 1890 | 1891 | Package microtype Warning: Unknown slot number of character 1892 | (microtype) `\`U' 1893 | (microtype) in font encoding `TU' in inheritance list 1894 | (microtype) `microtype.cfg/376(protrusion)'. 1895 | 1896 | 1897 | Package microtype Warning: Unknown slot number of character 1898 | (microtype) `\'U' 1899 | (microtype) in font encoding `TU' in inheritance list 1900 | (microtype) `microtype.cfg/376(protrusion)'. 1901 | 1902 | 1903 | Package microtype Warning: Unknown slot number of character 1904 | (microtype) `\^U' 1905 | (microtype) in font encoding `TU' in inheritance list 1906 | (microtype) `microtype.cfg/376(protrusion)'. 1907 | 1908 | 1909 | Package microtype Warning: Unknown slot number of character 1910 | (microtype) `\"U' 1911 | (microtype) in font encoding `TU' in inheritance list 1912 | (microtype) `microtype.cfg/376(protrusion)'. 1913 | 1914 | 1915 | Package microtype Warning: Unknown slot number of character 1916 | (microtype) `\H U' 1917 | (microtype) in font encoding `TU' in inheritance list 1918 | (microtype) `microtype.cfg/376(protrusion)'. 1919 | 1920 | 1921 | Package microtype Warning: Unknown slot number of character 1922 | (microtype) `\r U' 1923 | (microtype) in font encoding `TU' in inheritance list 1924 | (microtype) `microtype.cfg/376(protrusion)'. 1925 | 1926 | 1927 | Package microtype Warning: Unknown slot number of character 1928 | (microtype) `\`u' 1929 | (microtype) in font encoding `TU' in inheritance list 1930 | (microtype) `microtype.cfg/376(protrusion)'. 1931 | 1932 | 1933 | Package microtype Warning: Unknown slot number of character 1934 | (microtype) `\'u' 1935 | (microtype) in font encoding `TU' in inheritance list 1936 | (microtype) `microtype.cfg/376(protrusion)'. 1937 | 1938 | 1939 | Package microtype Warning: Unknown slot number of character 1940 | (microtype) `\^u' 1941 | (microtype) in font encoding `TU' in inheritance list 1942 | (microtype) `microtype.cfg/376(protrusion)'. 1943 | 1944 | 1945 | Package microtype Warning: Unknown slot number of character 1946 | (microtype) `\"u' 1947 | (microtype) in font encoding `TU' in inheritance list 1948 | (microtype) `microtype.cfg/376(protrusion)'. 1949 | 1950 | 1951 | Package microtype Warning: Unknown slot number of character 1952 | (microtype) `\H u' 1953 | (microtype) in font encoding `TU' in inheritance list 1954 | (microtype) `microtype.cfg/376(protrusion)'. 1955 | 1956 | 1957 | Package microtype Warning: Unknown slot number of character 1958 | (microtype) `\r u' 1959 | (microtype) in font encoding `TU' in inheritance list 1960 | (microtype) `microtype.cfg/376(protrusion)'. 1961 | 1962 | 1963 | Package microtype Warning: Unknown slot number of character 1964 | (microtype) `\'Y' 1965 | (microtype) in font encoding `TU' in inheritance list 1966 | (microtype) `microtype.cfg/376(protrusion)'. 1967 | 1968 | 1969 | Package microtype Warning: Unknown slot number of character 1970 | (microtype) `\"Y' 1971 | (microtype) in font encoding `TU' in inheritance list 1972 | (microtype) `microtype.cfg/376(protrusion)'. 1973 | 1974 | 1975 | Package microtype Warning: Unknown slot number of character 1976 | (microtype) `\'y' 1977 | (microtype) in font encoding `TU' in inheritance list 1978 | (microtype) `microtype.cfg/376(protrusion)'. 1979 | 1980 | 1981 | Package microtype Warning: Unknown slot number of character 1982 | (microtype) `\"y' 1983 | (microtype) in font encoding `TU' in inheritance list 1984 | (microtype) `microtype.cfg/376(protrusion)'. 1985 | 1986 | 1987 | Package microtype Warning: Unknown slot number of character 1988 | (microtype) `\'Z' 1989 | (microtype) in font encoding `TU' in inheritance list 1990 | (microtype) `microtype.cfg/376(protrusion)'. 1991 | 1992 | 1993 | Package microtype Warning: Unknown slot number of character 1994 | (microtype) `\.Z' 1995 | (microtype) in font encoding `TU' in inheritance list 1996 | (microtype) `microtype.cfg/376(protrusion)'. 1997 | 1998 | 1999 | Package microtype Warning: Unknown slot number of character 2000 | (microtype) `\v Z' 2001 | (microtype) in font encoding `TU' in inheritance list 2002 | (microtype) `microtype.cfg/376(protrusion)'. 2003 | 2004 | 2005 | Package microtype Warning: Unknown slot number of character 2006 | (microtype) `\'z' 2007 | (microtype) in font encoding `TU' in inheritance list 2008 | (microtype) `microtype.cfg/376(protrusion)'. 2009 | 2010 | 2011 | Package microtype Warning: Unknown slot number of character 2012 | (microtype) `\.z' 2013 | (microtype) in font encoding `TU' in inheritance list 2014 | (microtype) `microtype.cfg/376(protrusion)'. 2015 | 2016 | 2017 | Package microtype Warning: Unknown slot number of character 2018 | (microtype) `\v z' 2019 | (microtype) in font encoding `TU' in inheritance list 2020 | (microtype) `microtype.cfg/376(protrusion)'. 2021 | 2022 | 2023 | Package microtype Warning: Unknown slot number of character 2024 | (microtype) `\textendash ' 2025 | (microtype) in font encoding `TU' in protrusion list 2026 | (microtype) `default'. 2027 | 2028 | 2029 | Package microtype Warning: Unknown slot number of character 2030 | (microtype) `\textemdash ' 2031 | (microtype) in font encoding `TU' in protrusion list 2032 | (microtype) `default'. 2033 | 2034 | 2035 | Package microtype Warning: Unknown slot number of character 2036 | (microtype) `\textquoteleft ' 2037 | (microtype) in font encoding `TU' in protrusion list 2038 | (microtype) `default'. 2039 | 2040 | 2041 | Package microtype Warning: Unknown slot number of character 2042 | (microtype) `\textquoteright ' 2043 | (microtype) in font encoding `TU' in protrusion list 2044 | (microtype) `default'. 2045 | 2046 | 2047 | Package microtype Warning: Unknown slot number of character 2048 | (microtype) `\textquotedblleft ' 2049 | (microtype) in font encoding `TU' in protrusion list 2050 | (microtype) `default'. 2051 | 2052 | 2053 | Package microtype Warning: Unknown slot number of character 2054 | (microtype) `\textquotedblright ' 2055 | (microtype) in font encoding `TU' in protrusion list 2056 | (microtype) `default'. 2057 | 2058 | 2059 | Package microtype Warning: Unknown slot number of character 2060 | (microtype) `\AE ' 2061 | (microtype) in font encoding `TU' in protrusion list 2062 | (microtype) `T1-default'. 2063 | 2064 | 2065 | Package microtype Warning: Unknown slot number of character 2066 | (microtype) `\textbackslash ' 2067 | (microtype) in font encoding `TU' in protrusion list 2068 | (microtype) `T1-default'. 2069 | 2070 | 2071 | Package microtype Warning: Unknown slot number of character 2072 | (microtype) `\quotesinglbase ' 2073 | (microtype) in font encoding `TU' in protrusion list 2074 | (microtype) `T1-default'. 2075 | 2076 | 2077 | Package microtype Warning: Unknown slot number of character 2078 | (microtype) `\quotedblbase ' 2079 | (microtype) in font encoding `TU' in protrusion list 2080 | (microtype) `T1-default'. 2081 | 2082 | 2083 | Package microtype Warning: Unknown slot number of character 2084 | (microtype) `\guilsinglleft ' 2085 | (microtype) in font encoding `TU' in protrusion list 2086 | (microtype) `T1-default'. 2087 | 2088 | 2089 | Package microtype Warning: Unknown slot number of character 2090 | (microtype) `\guilsinglright ' 2091 | (microtype) in font encoding `TU' in protrusion list 2092 | (microtype) `T1-default'. 2093 | 2094 | 2095 | Package microtype Warning: Unknown slot number of character 2096 | (microtype) `\guillemotleft ' 2097 | (microtype) in font encoding `TU' in protrusion list 2098 | (microtype) `T1-default'. 2099 | 2100 | 2101 | Package microtype Warning: Unknown slot number of character 2102 | (microtype) `\guillemotright ' 2103 | (microtype) in font encoding `TU' in protrusion list 2104 | (microtype) `T1-default'. 2105 | 2106 | 2107 | Package microtype Warning: Unknown slot number of character 2108 | (microtype) `\textexclamdown ' 2109 | (microtype) in font encoding `TU' in protrusion list 2110 | (microtype) `T1-default'. 2111 | 2112 | 2113 | Package microtype Warning: Unknown slot number of character 2114 | (microtype) `\textquestiondown ' 2115 | (microtype) in font encoding `TU' in protrusion list 2116 | (microtype) `T1-default'. 2117 | 2118 | 2119 | Package microtype Warning: Unknown slot number of character 2120 | (microtype) `\textbraceleft ' 2121 | (microtype) in font encoding `TU' in protrusion list 2122 | (microtype) `T1-default'. 2123 | 2124 | 2125 | Package microtype Warning: Unknown slot number of character 2126 | (microtype) `\textbraceright ' 2127 | (microtype) in font encoding `TU' in protrusion list 2128 | (microtype) `T1-default'. 2129 | 2130 | 2131 | Package microtype Warning: Unknown slot number of character 2132 | (microtype) `\textless ' 2133 | (microtype) in font encoding `TU' in protrusion list 2134 | (microtype) `T1-default'. 2135 | 2136 | 2137 | Package microtype Warning: Unknown slot number of character 2138 | (microtype) `\textgreater ' 2139 | (microtype) in font encoding `TU' in protrusion list 2140 | (microtype) `T1-default'. 2141 | 2142 | Package caption Info: Begin \AtBeginDocument code. 2143 | Package caption Info: End \AtBeginDocument code. 2144 | (./rucbeamer.nav) 2145 | Package microtype Info: Loading generic protrusion settings for font family 2146 | (microtype) `MicrosoftYaHei' (encoding: TU). 2147 | (microtype) For optimal results, create family-specific settings. 2148 | (microtype) See the microtype manual for details. 2149 | 2150 | Overfull \vbox (0.58876pt too high) detected at line 114 2151 | [] 2152 | 2153 | File: ruc_title.png Graphic file (type bmp) 2154 | 2155 | File: ruc_logo.png Graphic file (type bmp) 2156 | 2157 | File: ruc_background.png Graphic file (type bmp) 2158 | 2159 | 2160 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2161 | 2162 | File: ruc_title.png Graphic file (type bmp) 2163 | 2164 | File: ruc_logo.png Graphic file (type bmp) 2165 | 2166 | [1 2167 | 2168 | ] (./rucbeamer.toc) 2169 | File: ruc_background.png Graphic file (type bmp) 2170 | 2171 | 2172 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2173 | 2174 | File: ruc_title.png Graphic file (type bmp) 2175 | 2176 | File: ruc_logo.png Graphic file (type bmp) 2177 | 2178 | [2 2179 | 2180 | ] 2181 | File: ruc_background.png Graphic file (type bmp) 2182 | 2183 | 2184 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2185 | 2186 | File: ruc_title.png Graphic file (type bmp) 2187 | 2188 | File: ruc_logo.png Graphic file (type bmp) 2189 | 2190 | [3 2191 | 2192 | ] 2193 | LaTeX Font Info: Try loading font information for OT1+lmr on input line 148. 2194 | 2195 | (e:/texlive/2019/texmf-dist/tex/latex/lm/ot1lmr.fd 2196 | File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern 2197 | ) (e:/texlive/2019/texmf-dist/tex/latex/microtype/mt-LatinModernRoman.cfg 2198 | File: mt-LatinModernRoman.cfg 2013/03/13 v1.0 microtype config. file: Latin Mod 2199 | ern Roman (RS) 2200 | ) 2201 | Package microtype Info: Loading generic protrusion settings for font family 2202 | (microtype) `lmr' (encoding: OT1). 2203 | (microtype) For optimal results, create family-specific settings. 2204 | (microtype) See the microtype manual for details. 2205 | LaTeX Font Info: Try loading font information for OML+lmm on input line 148. 2206 | 2207 | (e:/texlive/2019/texmf-dist/tex/latex/lm/omllmm.fd 2208 | File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern 2209 | ) 2210 | LaTeX Font Info: Try loading font information for OMS+lmsy on input line 148 2211 | . 2212 | (e:/texlive/2019/texmf-dist/tex/latex/lm/omslmsy.fd 2213 | File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern 2214 | ) 2215 | LaTeX Font Info: Try loading font information for OMX+lmex on input line 148 2216 | . 2217 | (e:/texlive/2019/texmf-dist/tex/latex/lm/omxlmex.fd 2218 | File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern 2219 | ) 2220 | LaTeX Font Info: External font `lmex10' loaded for size 2221 | (Font) <10> on input line 148. 2222 | LaTeX Font Info: External font `lmex10' loaded for size 2223 | (Font) <7> on input line 148. 2224 | LaTeX Font Info: External font `lmex10' loaded for size 2225 | (Font) <5> on input line 148. 2226 | LaTeX Font Info: Try loading font information for U+msa on input line 148. 2227 | (e:/texlive/2019/texmf-dist/tex/latex/amsfonts/umsa.fd 2228 | File: umsa.fd 2013/01/14 v3.01 AMS symbols A 2229 | ) (e:/texlive/2019/texmf-dist/tex/latex/microtype/mt-msa.cfg 2230 | File: mt-msa.cfg 2006/02/04 v1.1 microtype config. file: AMS symbols (a) (RS) 2231 | ) 2232 | LaTeX Font Info: Try loading font information for U+msb on input line 148. 2233 | (e:/texlive/2019/texmf-dist/tex/latex/amsfonts/umsb.fd 2234 | File: umsb.fd 2013/01/14 v3.01 AMS symbols B 2235 | ) (e:/texlive/2019/texmf-dist/tex/latex/microtype/mt-msb.cfg 2236 | File: mt-msb.cfg 2005/06/01 v1.0 microtype config. file: AMS symbols (b) (RS) 2237 | ) 2238 | File: ruc_background.png Graphic file (type bmp) 2239 | 2240 | 2241 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2242 | 2243 | File: ruc_title.png Graphic file (type bmp) 2244 | 2245 | File: ruc_logo.png Graphic file (type bmp) 2246 | 2247 | [4 2248 | 2249 | ] 2250 | File: ruc_background.png Graphic file (type bmp) 2251 | 2252 | 2253 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2254 | 2255 | File: ruc_title.png Graphic file (type bmp) 2256 | 2257 | File: ruc_logo.png Graphic file (type bmp) 2258 | 2259 | [5 2260 | 2261 | ] 2262 | LaTeX Font Info: External font `lmex10' loaded for size 2263 | (Font) <9> on input line 194. 2264 | LaTeX Font Info: External font `lmex10' loaded for size 2265 | (Font) <6> on input line 194. 2266 | File: ruc_background.png Graphic file (type bmp) 2267 | 2268 | 2269 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2270 | 2271 | File: ruc_title.png Graphic file (type bmp) 2272 | 2273 | File: ruc_logo.png Graphic file (type bmp) 2274 | 2275 | [6 2276 | 2277 | ] 2278 | File: ruc_background.png Graphic file (type bmp) 2279 | 2280 | 2281 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2282 | 2283 | File: ruc_title.png Graphic file (type bmp) 2284 | 2285 | File: ruc_logo.png Graphic file (type bmp) 2286 | 2287 | [7 2288 | 2289 | ] 2290 | File: ruc_background.png Graphic file (type bmp) 2291 | 2292 | 2293 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2294 | 2295 | File: ruc_title.png Graphic file (type bmp) 2296 | 2297 | File: ruc_logo.png Graphic file (type bmp) 2298 | 2299 | [8 2300 | 2301 | ] 2302 | \openout4 = `rucbeamer.vrb'. 2303 | 2304 | (./rucbeamer.vrb 2305 | 2306 | Package fontspec Info: FangSong scale = 0.9764242256637168. 2307 | 2308 | 2309 | Package fontspec Info: Could not resolve font "FangSong/BI" (it probably 2310 | (fontspec) doesn't exist). 2311 | 2312 | 2313 | Package fontspec Info: Could not resolve font "FangSong/B" (it probably 2314 | (fontspec) doesn't exist). 2315 | 2316 | 2317 | Package fontspec Info: Could not resolve font "FangSong/I" (it probably 2318 | (fontspec) doesn't exist). 2319 | 2320 | 2321 | Package fontspec Info: FangSong scale = 0.9764242256637168. 2322 | 2323 | Package microtype Info: Loading generic protrusion settings for font family 2324 | (microtype) `lmtt' (encoding: TU). 2325 | (microtype) For optimal results, create family-specific settings. 2326 | (microtype) See the microtype manual for details. 2327 | 2328 | Package fontspec Info: Font family 'FangSong(0)' created for font 'FangSong' 2329 | (fontspec) with options 2330 | (fontspec) [Mapping=tex-text,Scale=MatchLowercase,Script={CJK}]. 2331 | (fontspec) 2332 | (fontspec) This font family consists of the following NFSS 2333 | (fontspec) series/shapes: 2334 | (fontspec) 2335 | (fontspec) - 'normal' (m/n) with NFSS spec.: 2336 | (fontspec) <->s*[0.9764242256637168]"FangSong/OT:script=hani;langua 2337 | ge=DFLT;mapping=tex-text;" 2338 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 2339 | 2340 | LaTeX Font Info: Font shape `TU/FangSong(0)/m/n' will be 2341 | (Font) scaled to size 9.76425pt on input line 6. 2342 | Package microtype Info: Loading generic protrusion settings for font family 2343 | (microtype) `FangSong' (encoding: TU). 2344 | (microtype) For optimal results, create family-specific settings. 2345 | (microtype) See the microtype manual for details. 2346 | Package microtype Info: Character `\AE ' is missing 2347 | (microtype) in font `\TU/FangSong(0)/m/n/10'. 2348 | (microtype) Ignoring protrusion settings for this character. 2349 | Package microtype Info: Character `\quotesinglbase ' is missing 2350 | (microtype) in font `\TU/FangSong(0)/m/n/10'. 2351 | (microtype) Ignoring protrusion settings for this character. 2352 | Package microtype Info: Character `\quotedblbase ' is missing 2353 | (microtype) in font `\TU/FangSong(0)/m/n/10'. 2354 | (microtype) Ignoring protrusion settings for this character. 2355 | Package microtype Info: Character `\guilsinglleft ' is missing 2356 | (microtype) in font `\TU/FangSong(0)/m/n/10'. 2357 | (microtype) Ignoring protrusion settings for this character. 2358 | Package microtype Info: Character `\guilsinglright ' is missing 2359 | (microtype) in font `\TU/FangSong(0)/m/n/10'. 2360 | (microtype) Ignoring protrusion settings for this character. 2361 | Package microtype Info: Character `\guillemotleft ' is missing 2362 | (microtype) in font `\TU/FangSong(0)/m/n/10'. 2363 | (microtype) Ignoring protrusion settings for this character. 2364 | Package microtype Info: Character `\guillemotright ' is missing 2365 | (microtype) in font `\TU/FangSong(0)/m/n/10'. 2366 | (microtype) Ignoring protrusion settings for this character. 2367 | Package microtype Info: Character `\textexclamdown ' is missing 2368 | (microtype) in font `\TU/FangSong(0)/m/n/10'. 2369 | (microtype) Ignoring protrusion settings for this character. 2370 | Package microtype Info: Character `\textquestiondown ' is missing 2371 | (microtype) in font `\TU/FangSong(0)/m/n/10'. 2372 | (microtype) Ignoring protrusion settings for this character. 2373 | File: figure/VD.png Graphic file (type bmp) 2374 |
2375 | ) 2376 | Overfull \vbox (103.67178pt too high) detected at line 234 2377 | [] 2378 | 2379 | File: ruc_background.png Graphic file (type bmp) 2380 | 2381 | 2382 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2383 | 2384 | File: ruc_title.png Graphic file (type bmp) 2385 | 2386 | File: ruc_logo.png Graphic file (type bmp) 2387 | 2388 | [9 2389 | 2390 | ] 2391 | \openout4 = `rucbeamer.vrb'. 2392 | 2393 | (./rucbeamer.vrb 2394 | File: figure/VD.png Graphic file (type bmp) 2395 |
2396 | ) 2397 | File: ruc_background.png Graphic file (type bmp) 2398 | 2399 | 2400 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2401 | 2402 | File: ruc_title.png Graphic file (type bmp) 2403 | 2404 | File: ruc_logo.png Graphic file (type bmp) 2405 | 2406 | [10 2407 | 2408 | ] 2409 | \openout4 = `rucbeamer.vrb'. 2410 | 2411 | (./rucbeamer.vrb) 2412 | File: ruc_background.png Graphic file (type bmp) 2413 | 2414 | 2415 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2416 | 2417 | File: ruc_title.png Graphic file (type bmp) 2418 | 2419 | File: ruc_logo.png Graphic file (type bmp) 2420 | 2421 | [11 2422 | 2423 | ] 2424 | \openout4 = `rucbeamer.vrb'. 2425 | 2426 | (./rucbeamer.vrb) 2427 | File: ruc_background.png Graphic file (type bmp) 2428 | 2429 | 2430 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2431 | 2432 | File: ruc_title.png Graphic file (type bmp) 2433 | 2434 | File: ruc_logo.png Graphic file (type bmp) 2435 | 2436 | [12 2437 | 2438 | ] 2439 | File: ruc_background.png Graphic file (type bmp) 2440 | 2441 | 2442 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2443 | 2444 | File: ruc_title.png Graphic file (type bmp) 2445 | 2446 | File: ruc_logo.png Graphic file (type bmp) 2447 | 2448 | [13 2449 | 2450 | ] 2451 | LaTeX Font Info: External font `lmex10' loaded for size 2452 | (Font) <8> on input line 326. 2453 | File: ruc_background.png Graphic file (type bmp) 2454 | 2455 | 2456 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2457 | 2458 | File: ruc_title.png Graphic file (type bmp) 2459 | 2460 | File: ruc_logo.png Graphic file (type bmp) 2461 | 2462 | [14 2463 | 2464 | ] 2465 | File: ruc_background.png Graphic file (type bmp) 2466 | 2467 | 2468 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2469 | 2470 | File: ruc_title.png Graphic file (type bmp) 2471 | 2472 | File: ruc_logo.png Graphic file (type bmp) 2473 | 2474 | [15 2475 | 2476 | ] 2477 | \openout4 = `rucbeamer.vrb'. 2478 | 2479 | (./rucbeamer.vrb) 2480 | File: ruc_background.png Graphic file (type bmp) 2481 | 2482 | 2483 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2484 | 2485 | File: ruc_title.png Graphic file (type bmp) 2486 | 2487 | File: ruc_logo.png Graphic file (type bmp) 2488 | 2489 | [16 2490 | 2491 | ] 2492 | \openout4 = `rucbeamer.vrb'. 2493 | 2494 | (./rucbeamer.vrb 2495 | 2496 | LaTeX Font Warning: Font shape `TU/FangSong(0)/m/it' undefined 2497 | (Font) using `TU/FangSong(0)/m/n' instead on input line 28. 2498 | 2499 | ) 2500 | File: ruc_background.png Graphic file (type bmp) 2501 | 2502 | 2503 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2504 | 2505 | File: ruc_title.png Graphic file (type bmp) 2506 | 2507 | File: ruc_logo.png Graphic file (type bmp) 2508 | 2509 | [17 2510 | 2511 | ] 2512 | File: ruc_background.png Graphic file (type bmp) 2513 | 2514 | 2515 | Overfull \vbox (0.58876pt too high) has occurred while \output is active [] 2516 | 2517 | File: ruc_title.png Graphic file (type bmp) 2518 | 2519 | File: ruc_logo.png Graphic file (type bmp) 2520 | 2521 | [18 2522 | 2523 | ] 2524 | \tf@nav=\write7 2525 | \openout7 = `rucbeamer.nav'. 2526 | 2527 | \tf@toc=\write8 2528 | \openout8 = `rucbeamer.toc'. 2529 | 2530 | \tf@snm=\write9 2531 | \openout9 = `rucbeamer.snm'. 2532 | 2533 | Package atveryend Info: Empty hook `BeforeClearDocument' on input line 427. 2534 | Package atveryend Info: Empty hook `AfterLastShipout' on input line 427. 2535 | (./rucbeamer.aux) 2536 | Package atveryend Info: Empty hook `AtVeryEndDocument' on input line 427. 2537 | Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 427. 2538 | Package rerunfilecheck Info: File `rucbeamer.out' has not changed. 2539 | (rerunfilecheck) Checksum: 5C93175A6AF1E07ED558081F72D81D18. 2540 | 2541 | LaTeX Font Warning: Some font shapes were not available, defaults substituted. 2542 | 2543 | ) 2544 | Here is how much of TeX's memory you used: 2545 | 43466 strings out of 492922 2546 | 868069 string characters out of 6136752 2547 | 940416 words of memory out of 5000000 2548 | 46770 multiletter control sequences out of 15000+600000 2549 | 557380 words of font info for 93 fonts, out of 8000000 for 9000 2550 | 1348 hyphenation exceptions out of 8191 2551 | 64i,19n,129p,792b,821s stack positions out of 5000i,500n,10000p,200000b,80000s 2552 | 2553 | Output written on rucbeamer.pdf (18 pages). 2554 | --------------------------------------------------------------------------------