├── .gitattributes ├── README.md ├── beamer_nankai ├── nk_logo.png ├── nkbackground.png ├── nkcolor.sty ├── nkthesis.bib ├── slides-authoryear.tex ├── slides.pdf └── slides.tex ├── python_theme_beamer ├── mcode.sty ├── pybg.png ├── pycolor.sty ├── pyeg.pdf ├── pyeg.tex ├── python-logo.png ├── pythonhighlight.sty └── test.png ├── report_template ├── gb7714-2015.bbx ├── gb7714-2015.cbx ├── head.jpg ├── nk_logo.png ├── reference.bib ├── report.aux ├── report.bbl ├── report.bcf ├── report.blg ├── report.log ├── report.out ├── report.pdf ├── report.run.xml ├── report.tex ├── report.toc └── texput.log ├── single_file_model ├── deepblue.sty ├── document_model.tex ├── recent.bib ├── recent.tex ├── typora_monokai.css └── warsaw_beamer_model.tex └── x.log /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Beamer-Style-of-NKU 2 | 3 | 南开大学LaTeX-beamer幻灯片模板 4 | 5 | October 17, 2019 (南开大学百年校庆纪念版)对幻灯片排版和背景图做了进一步美化 6 | 7 | December 17, 2019 增加:南开大学课程报告模板,可用于课程大作业的报告撰写等 8 | 9 | December 12, 2020 增加: 10 | - 可将beamer的幻灯片显示比例由4:3调整至16:9(默认为4:3) 11 | - 添加`slides-authoryear.tex`,可将参考文献格式由数字格式改为作者-年份格式。 12 | 13 | 两个模板对在LaTeX中常用的格式,包括itemize, enumerate, description, 图片,表格,代码,伪代码等等,都给出了示例。 14 | 15 | 两个模板都支持以gb7714-2015标准所规定的格式排版参考文献。 16 | 17 |
18 | 19 | ## LaTeX beamer style for Nankai University 20 | 21 | [LaTeX beamer style for Nankai University](./beamer_nankai) 22 | 1. This is an unofficial LaTeX beamer style for Nankai University, the style file is `nkcolor.sty` and the example file is `slides.tex`. 23 | 2. These files are initially based on [Edward Hartley's work](http://www-control.eng.cam.ac.uk/Main/EdwardHartley), and [@teancake](https://github.com/teancake) from BUAA(Beihang University, 北京航空航天大学) gave a [Beihang version Beamer style](https://github.com/teancake/latex-beamer-beihang) from that work. 24 | 3. Link to Thesis Templates: 25 | - [南开大学本科生毕业论文LaTeX模板](https://github.com/kongxiao0532/NKU_Bachelor_Thesis_Template) 26 | - [南开大学硕博毕业论文LaTeX模板](https://github.com/NewFuture/NKThesis) 27 | - [南开大学硕博毕业论文LaTeX模板(overleaf版)](https://cn.overleaf.com/read/hvcpznzvwncy) 28 | 29 | To compile the slides, use: 30 | ``` 31 | xelatex slides 32 | biber slides 33 | xelatex slides 34 | xelatex slides 35 | ``` 36 | and you can get the PDF. 37 |
38 | 39 | The default aspect ratio of beamer page is 4:3, while you can change it into 16:9 by using 40 | ``` 41 | \documentclass[hyperref,UTF8,11pt,aspectratio=169]{beamer} 42 | ``` 43 | 44 | For using the author-year citation format, you can compile `slides-authoryear.tex`. 45 | 46 | ## Report Template 47 | 48 | [Report Template](./report_template) 49 | 50 | To compile the report, use: 51 | ``` 52 | xelatex report 53 | biber report 54 | xelatex report 55 | xelatex report 56 | ``` 57 | and you can get the PDF. 58 | 59 | ## Others 60 | 61 | As you have noticed, other LaTeX styles or even Markdown styles are also included in the folder [single_file_model](./single_file_model), such as `typora_monokai.css`, `document_model.tex`, `warsaw_beamer_model.tex` and `recent.tex` (with `recent.bib`). They are single, simple and basic. The `deepblue.sty` is a LaTeX beamer style based on `nkcolor.sty`, but I don't use an image as background or logo in this style, and the theme color is deep blue. 62 | 63 | [A LaTeX theme of Python](./python_theme_beamer) is also available. The `pycolor.sty`, and the example of using this style is given by `pyeg.tex`. This file use the `pythonhighlight.sty`, the package is loaded by the following line: 64 | 65 | ```tex 66 | \usepackage{pythonhighlight} 67 | ``` 68 | 69 | It is then possible to include a Python snippet directly in the code using: 70 | 71 | ```tex 72 | \begin{python} 73 | def f(x): 74 | return x 75 | \end{python} 76 | ``` 77 | 78 | It is also possible to include inline Python code in LaTeX with ``\pyth``: 79 | 80 | ```tex 81 | The special method \pyth{__init__}... 82 | ``` 83 | 84 | Last but not least, you can load an external Python file with: 85 | 86 | ```tex 87 | \inputpython{python_file.py}{23}{50} 88 | ``` 89 | 90 | to display the contents of the file ``python_file`` from line 23 to line 50. 91 | 92 | What's more, the `mcode.sty` gives a implementation to highlight MATLAB .m-code in LaTeX. 93 | -------------------------------------------------------------------------------- /beamer_nankai/nk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zshicode/LaTeX-Beamer-Nankai/f555b81691867581b7069e2c1192a258813a3938/beamer_nankai/nk_logo.png -------------------------------------------------------------------------------- /beamer_nankai/nkbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zshicode/LaTeX-Beamer-Nankai/f555b81691867581b7069e2c1192a258813a3938/beamer_nankai/nkbackground.png -------------------------------------------------------------------------------- /beamer_nankai/nkcolor.sty: -------------------------------------------------------------------------------- 1 | %-------------------------------------------------------- 2 | % NOTE: 1) This is an UNOFFICIAL LaTeX beamer style for 3 | % Nankai University. 4 | % 2) This is not exactly a beamer style, rather 5 | % it contains two LaTeX files to be inserted 6 | % in the slides' source file. 7 | % 3) These files are based on Edward Hartley's work 8 | % 9 | % 4) Complaints or suggestions are always welcome. 10 | % 11 | %-------------------------------------------------------- 12 | 13 | %-------------------------------------------------------- 14 | % Require tikz to do some text positioning 15 | %-------------------------------------------------------- 16 | \usepackage{tikz} 17 | 18 | %-------------------------------------------------------- 19 | % Use Helvetica rather than Computer Modern Sans Serif 20 | % Comment this out if you prefer Computer Modern 21 | %\usepackage{times} 22 | %-------------------------------------------------------- 23 | %\usepackage{helvet} 24 | 25 | \usepackage{comment} 26 | 27 | %-------------------------------------------------------- 28 | % If you wish to use Arial, and have the winfonts package 29 | % correctly installed uncomment the following to make the 30 | % default sans serif font Arial 31 | %-------------------------------------------------------- 32 | %\usepackage{winfonts} 33 | %\usepackage[T1]{fontenc} 34 | %\renewcommand{\sfdefault}{cmr} 35 | %-------------------------------------------------------- 36 | 37 | %-------------------------------------------------------- 38 | % Get rid of the navigation bar 39 | %-------------------------------------------------------- 40 | \beamertemplatenavigationsymbolsempty 41 | 42 | %-------------------------------------------------------- 43 | % Define how the page counter will be displayed on slides 44 | %-------------------------------------------------------- 45 | \newcommand{\footlinepagecounter}% 46 | {\insertframenumber{}/\inserttotalframenumber} 47 | %-------------------------------------------------------- 48 | 49 | % Layout scheme for outer elements: split(give ALL section & subsection) or infolines(give CURRENT section & subsection) 50 | %\useoutertheme{infolines} 51 | \useoutertheme[subsection=false]{miniframes} 52 | 53 | % Color scheme for outer elements: use background colors 54 | \usecolortheme{whale} 55 | 56 | % Layout scheme for inner elements: rounded elements 57 | %\useinnertheme[shadow]{rounded} 58 | \useinnertheme{rounded} 59 | 60 | % Color scheme for inner elements: use foreground colors 61 | \usecolortheme{orchid} 62 | 63 | % Itemize items: default (triangle), circle, square, ball 64 | \setbeamertemplate{itemize items}[default] 65 | 66 | % Enumerate items: default, circle, square, ball 67 | \setbeamertemplate{enumerate items}[circle] 68 | 69 | % Outline: default, sections numbered, subsections numbered, circle, square, ball, ball unnumbered 70 | % symbol in outline 71 | \setbeamertemplate{sections/subsections in toc}[square] 72 | 73 | % list the outline at the beginning of each section 74 | \AtBeginSection[] % Do nothing for \subsection* 75 | { 76 | \begin{frame} 77 | \frametitle{目录} 78 | \tableofcontents[currentsection] 79 | \end{frame} 80 | } 81 | 82 | \setbeamertemplate{caption}[numbered] 83 | 84 | \setbeamertemplate{theorems}[numbered] 85 | 86 | % General blocks: 87 | \setbeamertemplate{blocks}[rounded][shadow=true] 88 | 89 | % Background 90 | \pgfdeclareimage[width=\paperwidth,height=0.95\paperheight]{bg}{nkbackground.png} 91 | \setbeamertemplate{background}{\pgfuseimage{bg}} 92 | 93 | %-------------------------------------------------------- 94 | % Set up some lengths 95 | %-------------------------------------------------------- 96 | % A paper width for the footline 97 | \newlength{\halfpaperwidth} 98 | 99 | % The left margin 100 | \newlength{\headingleftmargin} 101 | % Paper width minus margins 102 | \newlength{\headingwidthminusmargins} 103 | % Height of the heading block 104 | \newlength{\headingheight} 105 | % Height of the footer block 106 | \newlength{\footerheight} 107 | 108 | % The height for the titlepageheader in the title page 109 | \newlength{\titlepageheaderheight} 110 | % The height for the footer in the title page 111 | \newlength{\titlepagefooterheight} 112 | % The height for the main title block 113 | \newlength{\titlepagemaintitleblockheight} 114 | % The height for the subtitle block 115 | \newlength{\titlepagesubtitleblockheight} 116 | % The height for the name and date block 117 | \newlength{\titlepagenamedateblockheight} 118 | % The height for the institution block 119 | %\newlength{\titlepageinstitutionheight} 120 | 121 | % The lengths for spacing between name and date 122 | \newlength{\titlepagespaceundername} 123 | \newlength{\titlepagespaceunderdate} 124 | 125 | % The length for the light thin bar 126 | 127 | 128 | \setlength{\headingleftmargin}{0.05573\paperwidth} 129 | \setlength{\headingwidthminusmargins}{\paperwidth} 130 | \addtolength{\headingwidthminusmargins}{-\headingleftmargin} 131 | \setlength{\headingheight}{0.1\paperheight} 132 | \setlength{\footerheight}{0.09017\paperheight} 133 | 134 | \setlength{\titlepageheaderheight}{0.1261\paperheight} 135 | \setlength{\titlepagefooterheight}{0.0\paperheight} 136 | \setlength{\titlepagemaintitleblockheight}{0.1761\paperheight} 137 | \setlength{\titlepagesubtitleblockheight}{0.1\paperheight} 138 | \setlength{\titlepagenamedateblockheight}{0.4261\paperheight} 139 | %\setlength{\titlepageinstitutionheight}{0.95cm} 140 | 141 | \setlength{\titlepagespaceundername}{16pt} 142 | \setlength{\titlepagespaceunderdate}{5pt} 143 | 144 | %-------------------------------------------------------- 145 | 146 | %-------------------------------------------------------- 147 | % Set up the scheme for use 148 | % with beamer 149 | %-------------------------------------------------------- 150 | 151 | % Define colour names 152 | \definecolor{nkpurple}{rgb}{0.44140 0.10156 0.37109} %#(113,26,95) 153 | %\setbeamercolor{nktitle}{bg=white,fg=nkpurple} 154 | %\setbeamertemplate{title page}[default][colsep=-4bp,rounded=true] 155 | % Set element colours 156 | \setbeamercolor{title}{bg=black!5!white, fg=nkpurple} 157 | \setbeamercolor{subtitle}{bg=white, fg=nkpurple} 158 | \setbeamercolor{titlepageheader}{bg=white,fg=black} 159 | \setbeamercolor{titlepagefooter}{bg=white,fg=black} 160 | \setbeamercolor{block title}{fg=white,bg=nkpurple} 161 | \setbeamercolor{block body}{fg=black,bg=nkpurple!10!white} 162 | \setbeamercolor{structure}{bg=white, fg=nkpurple} 163 | % \setbeamercolor{alerted text}{fg=darkOrange} 164 | 165 | %-------------------------------------------------------- 166 | % Set font sizes 167 | %-------------------------------------------------------- 168 | \setbeamerfont{frametitle}{size=\large,series=\bfseries} 169 | \setbeamerfont{title}{size=\Large,series=\bfseries} 170 | \setbeamerfont{author}{size=\normalsize} 171 | \setbeamerfont{date}{size=\scriptsize} 172 | \setbeamerfont{subtitle}{size=\footnotesize,series=\bfseries} 173 | \setbeamerfont{block title}{size=\normalsize} 174 | \setbeamerfont{structure}{size=\normalsize,series=\bfseries} 175 | 176 | \setbeamertemplate{itemize item}{\scriptsize\raise1.25pt\hbox{\textbullet}} 177 | \setbeamertemplate{itemize subitem}{\scriptsize\raise1.25pt\hbox{\textbullet}} 178 | \setbeamertemplate{itemize subsubitem}{\scriptsize\raise1.25pt\hbox{\textbullet}} 179 | 180 | %----------------------------------------------------- 181 | % Define title page 182 | %----------------------------------------------------- 183 | 184 | \setbeamertemplate{title page} 185 | {% 186 | \begin{beamercolorbox}[sep=0cm,right,wd=\paperwidth,ht=\titlepageheaderheight,rightskip=\headingleftmargin]{titlepageheader} 187 | \includegraphics[width=0.2720\paperwidth]{nk_logo.png} 188 | \vskip0.0361\titlepageheaderheight 189 | \end{beamercolorbox} 190 | \begin{beamercolorbox}[center,wd=0.87\paperwidth,ht=\titlepagemaintitleblockheight,rounded=true,shadow=true]{title} 191 | \usebeamerfont{title}\inserttitle\\ 192 | \vskip\titlepagespaceunderdate% 193 | \usebeamerfont{subtitle}\insertsubtitle 194 | \vskip\titlepagespaceunderdate% 195 | \end{beamercolorbox} 196 | %\nointerlineskip% 197 | %\vskip-1pt% 198 | \begin{beamercolorbox}[center,wd=\paperwidth,ht=\titlepagenamedateblockheight]{white} 199 | \usebeamerfont{author}\insertauthor\\ 200 | \vskip\titlepagespaceunderdate% 201 | \usebeamerfont{institute}\insertinstitute\\ 202 | \vskip\titlepagespaceunderdate% 203 | \usebeamerfont{date}\insertdate 204 | \vskip\titlepagespaceunderdate% 205 | \end{beamercolorbox}% 206 | \begin{beamercolorbox}[center,wd=\paperwidth,ht=\titlepagefooterheight]{titlepagefooter} 207 | \end{beamercolorbox} 208 | } 209 | \begin{comment} 210 | \begin{beamercolorbox}[center,wd=0.92\paperwidth,ht=\titlepagemaintitleblockheight,rounded=true,shadow=true]{title} 211 | \usebeamerfont{title}\inserttitle\\ 212 | \vskip\titlepagespaceunderdate% 213 | \usebeamerfont{subtitle}\insertsubtitle 214 | \vskip\titlepagespaceunderdate% 215 | \end{beamercolorbox}% 216 | \nointerlineskip% 217 | \vskip-1pt% 218 | \begin{beamercolorbox}[center,wd=\paperwidth,ht=\titlepagesubtitleblockheight]{white} 219 | %\tikz{\node[inner sep=0cm, text width=\paperwidth, minimum height=\titlepagesubtitleblockheight]{ 220 | \usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle 221 | \end{beamercolorbox}% 222 | \end{comment} 223 | 224 | % Footline: AUTHOR | TITLE | DATE FRAMENUMBER 225 | \defbeamertemplate*{footline}{ru theme}{% 226 | \leavevmode% 227 | \hbox{% 228 | \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% 229 | \usebeamerfont{author in head/foot}\insertshortauthor~~(\insertshortinstitute) 230 | \end{beamercolorbox}% 231 | \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}% 232 | \usebeamerfont{title in head/foot}\insertshorttitle 233 | \end{beamercolorbox}% 234 | \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}% 235 | \usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em} 236 | \insertframenumber{} / \inserttotalframenumber\hspace*{2ex} 237 | \end{beamercolorbox}}% 238 | \vskip0pt% 239 | } 240 | 241 | \pgfdeclarehorizontalshading[frametitle.bg,frametitle right.bg]{beamer@frametitleshade}{\paperheight}{% 242 | color(0pt)=(frametitle.bg); 243 | color(\paperwidth)=(frametitle right.bg)} 244 | 245 | \defbeamertemplate*{frametitle}{ru theme}{% 246 | \nointerlineskip% 247 | %\vskip-2pt% 248 | \hbox{\leavevmode 249 | \advance\beamer@leftmargin by -12bp% 250 | \advance\beamer@rightmargin by -12bp% 251 | \beamer@tempdim=\textwidth% 252 | \advance\beamer@tempdim by \beamer@leftmargin% 253 | \advance\beamer@tempdim by \beamer@rightmargin% 254 | \hskip-\Gm@lmargin\hbox{% 255 | \setbox\beamer@tempbox=\hbox{\begin{minipage}[b]{\paperwidth}% 256 | \vbox{}\vskip-.75ex% 257 | \leftskip0.3cm% 258 | \rightskip0.3cm plus1fil\leavevmode 259 | \usebeamerfont*{frametitle}\insertframetitle% 260 | \ifx\insertframesubtitle\@empty% 261 | \strut\par% 262 | \else 263 | \par{\usebeamerfont*{framesubtitle}{\usebeamercolor[fg]{framesubtitle}\insertframesubtitle}\strut\par}% 264 | \fi% 265 | \nointerlineskip 266 | \vbox{}% 267 | \end{minipage}}% 268 | \beamer@tempdim=\ht\beamer@tempbox% 269 | \advance\beamer@tempdim by 2pt% 270 | \begin{pgfpicture}{0.1mm}{0pt}{1.01\paperwidth}{\beamer@tempdim} 271 | \usebeamercolor{frametitle right} 272 | \pgfpathrectangle{\pgfpointorigin}{\pgfpoint{\paperwidth}{\beamer@tempdim}} 273 | \pgfusepath{clip} 274 | \pgftext[left,base]{\pgfuseshading{beamer@frametitleshade}} 275 | \end{pgfpicture} 276 | \hskip-\paperwidth% 277 | \box\beamer@tempbox% 278 | }% 279 | \hskip-\Gm@rmargin% 280 | }% 281 | % \nointerlineskip 282 | % \vskip-0.2pt 283 | % \hbox to\textwidth{\hskip-\Gm@lmargin\pgfuseshading{beamer@topshade}\hskip-\Gm@rmargin} 284 | % \vskip-2pt 285 | } 286 | \setbeamercolor{frametitle}{bg=black!5!white,fg=nkpurple} -------------------------------------------------------------------------------- /beamer_nankai/nkthesis.bib: -------------------------------------------------------------------------------- 1 | @article{em1977, 2 | title={Maximum Likelihood from Incomplete Data via the EM Algorithm}, 3 | author={Dempster, A. P. and Laird, N. M. and Rubin, D. B.}, 4 | journal={Journal of the Royal Statistical Society}, 5 | volume={39}, 6 | number={1}, 7 | pages={1-38}, 8 | year={1977}, 9 | } 10 | -------------------------------------------------------------------------------- /beamer_nankai/slides-authoryear.tex: -------------------------------------------------------------------------------- 1 | \documentclass[hyperref,UTF8,11pt]{beamer} 2 | % If use 16:9 size of beamer, use: 3 | %\documentclass[hyperref,UTF8,11pt,aspectratio=169]{beamer} 4 | \usepackage{ctex} 5 | \usepackage[utf8]{inputenc} 6 | \usepackage{fontspec} 7 | \usepackage{comment} 8 | %\setCJKfamilyfont{SimHei} 9 | %\usepackage{xeCJK} 10 | %\renewcommand{\CJKfamilydefault}{\CJKsfdefault} 11 | %\setmonofont{Consolas} 12 | \setsansfont{Microsoft YaHei} 13 | \setCJKmainfont{Microsoft YaHei} 14 | %\setCJKmonofont{KaiTi} 15 | %\setCJKsansfont{Microsoft YaHei} 16 | \usefonttheme{professionalfonts} 17 | \usepackage{hyperref} 18 | \usepackage{graphicx} 19 | \graphicspath{{image/}} % storage figure in a sub-folder 20 | % \usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent 21 | %\usepackage{epstopdf} 22 | \usepackage{bm} 23 | \usepackage{nkcolor} 24 | %\usepackage{hyperref} 25 | %\hypersetup{CJKbookmarks=true} 26 | \usepackage{url} 27 | \usepackage{amsmath} 28 | \usepackage{amsthm} 29 | %\theoremstyle{definition} 30 | %\newtheorem{theorem}{定理} 31 | %\newtheorem{definition}{定义} 32 | %\newtheorem{corollary}{推论} 33 | %\newtheorem{example}{例} 34 | \usepackage{booktabs} % for much better looking tables 35 | \usepackage[authoryear,round]{natbib} 36 | %\usepackage{cite} % reference 37 | %\usepackage[backend=biber,style=numeric,sorting=none]{biblatex} 38 | %\usepackage[backend=biber,style=apalike]{biblatex} 39 | %\usepackage[backend=biber,style=authoryear]{biblatex} 40 | % if style=apalike or authoryear, use \parencite instead of \cite 41 | %\addbibresource{nkthesis.bib} 42 | %\beamertemplatetextbibitems 43 | \usepackage{array} % for better arrays (eg matrices) in maths 44 | %\usepackage{paralist} % very flexible & customisable lists (eg. enumerate/itemize, etc.) 45 | \usepackage{verbatim} % adds environment for commenting out blocks of text & for better verbatim 46 | \usepackage{subfigure} % make it possible to include more than one captioned figure/table in a single float 47 | % These packages are all incorporated in the memoir class to one degree or another... 48 | %\usepackage{threeparttable} 49 | \usepackage{cases} %equation set 50 | \usepackage{multirow} %use table 51 | \usepackage{enumerate} 52 | \usepackage{algorithm} 53 | \usepackage{algorithmic} 54 | \usepackage{xcolor} 55 | %\usepackage{capt-of} 56 | \setcounter{tocdepth}{1}%只显示section,不显示subsection 57 | \usepackage{listings} 58 | \lstset{tabsize=4, keepspaces=true, 59 | xleftmargin=2em,xrightmargin=0em, aboveskip=1em, 60 | backgroundcolor=\color{gray!20}, % 定义背景颜色 61 | frame=none, % 表示不要边框 62 | extendedchars=false, % 解决代码跨页时,章节标题,页眉等汉字不显示的问题 63 | numberstyle=\ttfamily, 64 | basicstyle=\ttfamily, 65 | keywordstyle=\color{blue}\bfseries, 66 | breakindent=10pt, 67 | identifierstyle=, % nothing happens 68 | commentstyle=\color{green}\small, % 注释的设置 69 | morecomment=[l][\color{green}]{\#}, 70 | numbers=left,stepnumber=1,numberstyle=\scriptsize, 71 | showstringspaces=false, 72 | showspaces=false, 73 | flexiblecolumns=true, 74 | breaklines=true, breakautoindent=true,breakindent=4em, 75 | escapeinside={/*@}{@*/}, 76 | } 77 | 78 | \title[Beamer模板]{中文题目} 79 | \subtitle{English Title} 80 | \author[作者]{答辩人:\quad \\ 学号:\quad \\ 专业:\quad \\ 指导教师:\quad \\\quad} 81 | \institute[学院]{南开大学 \quad 学院} 82 | \date{2019年5月} %Activate to display a given date or no date (if empty), 83 | % otherwise the current date is printed 84 | 85 | \begin{document} 86 | %%%%%%%%%% 定理类环境的定义 %%%%%%%%%% 87 | %% 必须在导入中文环境之后 88 | \newcommand{\redstress}[1]{{\color{red}{#1}}} 89 | %\renewcommand{\raggedright}{\leftskip=0pt \rightskip=0pt plus 0cm} 90 | \renewcommand{\contentsname}{目录} % 将Contents改为目录 91 | \renewcommand{\abstractname}{摘要} % 将Abstract改为摘要 92 | \renewcommand{\refname}{参考文献} % 将References改为参考文献 93 | \renewcommand{\indexname}{索引} 94 | \renewcommand{\figurename}{图} 95 | \renewcommand{\tablename}{表} 96 | \renewcommand{\appendixname}{附录} 97 | %\renewcommand{\proofname}{证明} 98 | %\renewcommand{\algorithm}{算法} 99 | %---------------------------------------------------------------------- 100 | % Title frame 101 | \begin{frame} 102 | \maketitle 103 | \end{frame} 104 | 105 | \section{绪论} 106 | 107 | \begin{frame}{Frametitle} 108 | \begin{itemize} 109 | \item First 110 | \item Second 111 | \item ... 112 | \end{itemize} 113 | \end{frame} 114 | 115 | \begin{frame}{Block} 116 | \begin{block}{Part 1} 117 | Test. 118 | \end{block} 119 | \begin{theorem}[Thm 1] 120 | Thm. 121 | \end{theorem} 122 | \begin{proof} 123 | Bingo. 124 | \end{proof} 125 | \end{frame} 126 | 127 | \begin{frame}{Enumerate} 128 | \begin{equation} 129 | F=ma\label{eq1} 130 | \end{equation} 131 | \begin{enumerate} 132 | \item First \redstress{important\citep{em1977}} 133 | \item Second \eqref{eq1} \citet{em1977} 134 | \end{enumerate} 135 | \end{frame} 136 | 137 | \begin{comment} 138 | 139 | This is comment. 140 | 141 | \end{comment} 142 | 143 | \section{算法} 144 | 145 | \begin{frame}{算法} 146 | \begin{algorithm}[H] 147 | \caption{算法1}\label{alg:em} 148 | \begin{algorithmic}[1] 149 | \REQUIRE Param 150 | \ENSURE $a$ 151 | \REPEAT 152 | \STATE Compute $a_n$ 153 | \UNTIL convergence 154 | \RETURN $a\leftarrow a_n$ 155 | \end{algorithmic} 156 | \end{algorithm} 157 | \end{frame} 158 | 159 | \begin{frame}{图片} 160 | \begin{figure} 161 | \centering 162 | \includegraphics[width=0.85\textwidth]{nk_logo.png} 163 | \caption{南开大学}\label{fig:nk} 164 | \end{figure} 165 | \end{frame} 166 | 167 | \begin{frame}{分栏} 168 | \begin{columns} 169 | \begin{column}{0.3\textwidth} 170 | \begin{figure} 171 | \centering 172 | \includegraphics[width=0.95\textwidth]{nk_logo.png} 173 | \caption{NKU}\label{fig:nku} 174 | \end{figure} 175 | \end{column} 176 | \begin{column}{0.7\textwidth} 177 | \begin{itemize} 178 | \item ... 179 | \end{itemize} 180 | \end{column} 181 | \end{columns} 182 | \end{frame} 183 | 184 | \begin{frame}{Subfigure} 185 | \begin{figure} 186 | \centering 187 | \subfigure[]{\includegraphics[width=0.47\textwidth]{nk_logo.png}} 188 | \subfigure[]{\includegraphics[width=0.47\textwidth]{nkbackground.png}} 189 | \caption{Subfigure\footnote{See: \url{www.nankai.edu.cn}}}\label{fig:rnn} 190 | \end{figure} 191 | \end{frame} 192 | 193 | % To put the content of a frame in several pages, use allowframebreaks 194 | \begin{frame}[allowframebreaks] 195 | \frametitle{Longframe} 196 | \begin{itemize} 197 | \item ... 198 | \end{itemize} 199 | \end{frame} 200 | 201 | \section{仿真} 202 | 203 | \begin{frame}{More block} 204 | \begin{exampleblock}{Example} 205 | Eg1. 206 | \end{exampleblock} 207 | \begin{alertblock}{Attention} 208 | Test block! 209 | \end{alertblock} 210 | \end{frame} 211 | 212 | \begin{frame}{表格} 213 | \begin{table}[] 214 | \centering 215 | \caption{数据} 216 | \label{tab1} 217 | \begin{tabular}{@{}ccccc@{}} 218 | \toprule 219 | & $q$ & $r$ & $a$ & $p$ \\ \midrule 220 | 实际值 & $1$ & $5$ & 2 & 3 \\ 221 | 方法1 & $4$ & $3$ & 1 & 1\\ 222 | 方法2 & $4$ & $3$ & 2 & 2\\ 223 | 方法3 & $5$ & $2$ & 3 & 3\\ 224 | 方法4 & $4$ & $2$ & 2 & 2\\ \bottomrule 225 | \end{tabular} 226 | \end{table} 227 | \end{frame} 228 | 229 | \begin{frame}[fragile] 230 | \frametitle{代码} 231 | \begin{lstlisting}[language=java] 232 | public class Hello{ 233 | public static void main(String args[]){ 234 | System.out.println("hello,world"); 235 | } 236 | }\end{lstlisting} 237 | \end{frame} 238 | 239 | \section{总结与展望} 240 | 241 | \begin{frame}{结论} 242 | \begin{description} 243 | \item[I] First of all 244 | \item[II] Besides 245 | \item[III] Last but not least 246 | \end{description} 247 | \end{frame} 248 | 249 | \begin{frame}{致谢} 250 | \begin{block}{致谢} 251 | 谢谢大家。 252 | \end{block} 253 | \end{frame} 254 | 255 | \begin{frame}[allowframebreaks] 256 | \frametitle{参考文献} 257 | %\printbibliography 258 | \bibliographystyle{plainnat} 259 | \bibliography{nkthesis} 260 | \end{frame} 261 | 262 | \end{document} 263 | -------------------------------------------------------------------------------- /beamer_nankai/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zshicode/LaTeX-Beamer-Nankai/f555b81691867581b7069e2c1192a258813a3938/beamer_nankai/slides.pdf -------------------------------------------------------------------------------- /beamer_nankai/slides.tex: -------------------------------------------------------------------------------- 1 | \documentclass[hyperref,UTF8,11pt]{beamer} 2 | % If use 16:9 size of beamer, use: 3 | %\documentclass[hyperref,UTF8,11pt,aspectratio=169]{beamer} 4 | \usepackage{ctex} 5 | \usepackage[utf8]{inputenc} 6 | \usepackage{fontspec} 7 | \usepackage{comment} 8 | %\setCJKfamilyfont{SimHei} 9 | \usepackage{xeCJK} 10 | %\renewcommand{\CJKfamilydefault}{\CJKsfdefault} 11 | %\setmonofont{Consolas} 12 | \setsansfont{Microsoft YaHei} 13 | \setCJKmainfont{Microsoft YaHei} 14 | %\setCJKmonofont{KaiTi} 15 | %\setCJKsansfont{Microsoft YaHei} 16 | \usefonttheme{professionalfonts} 17 | \usepackage{hyperref} 18 | \usepackage{graphicx} 19 | \graphicspath{{image/}} % storage figure in a sub-folder 20 | % \usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent 21 | %\usepackage{epstopdf} 22 | \usepackage{bm} 23 | \usepackage{nkcolor} 24 | %\usepackage{hyperref} 25 | \hypersetup{CJKbookmarks=true} 26 | \usepackage{url} 27 | \usepackage{amsmath} 28 | \usepackage{amsthm} 29 | %\theoremstyle{definition} 30 | %\newtheorem{theorem}{定理} 31 | %\newtheorem{definition}{定义} 32 | %\newtheorem{corollary}{推论} 33 | %\newtheorem{example}{例} 34 | \usepackage{booktabs} % for much better looking tables 35 | %\usepackage{cite} % reference 36 | \usepackage[backend=biber,style=numeric,sorting=none]{biblatex} 37 | %\usepackage[backend=biber,style=apalike]{biblatex} 38 | %\usepackage[backend=biber,style=authoryear]{biblatex} 39 | % if style=apalike or authoryear, use \parencite instead of \cite 40 | \addbibresource{nkthesis.bib} 41 | \beamertemplatetextbibitems 42 | \usepackage{array} % for better arrays (eg matrices) in maths 43 | %\usepackage{paralist} % very flexible & customisable lists (eg. enumerate/itemize, etc.) 44 | \usepackage{verbatim} % adds environment for commenting out blocks of text & for better verbatim 45 | \usepackage{subfigure} % make it possible to include more than one captioned figure/table in a single float 46 | % These packages are all incorporated in the memoir class to one degree or another... 47 | %\usepackage{threeparttable} 48 | \usepackage{cases} %equation set 49 | \usepackage{multirow} %use table 50 | \usepackage{enumerate} 51 | \usepackage{algorithm} 52 | \usepackage{algorithmic} 53 | \usepackage{xcolor} 54 | %\usepackage{capt-of} 55 | \setcounter{tocdepth}{1}%只显示section,不显示subsection 56 | \usepackage{listings} 57 | \lstset{tabsize=4, keepspaces=true, 58 | xleftmargin=2em,xrightmargin=0em, aboveskip=1em, 59 | backgroundcolor=\color{gray!20}, % 定义背景颜色 60 | frame=none, % 表示不要边框 61 | extendedchars=false, % 解决代码跨页时,章节标题,页眉等汉字不显示的问题 62 | numberstyle=\ttfamily, 63 | basicstyle=\ttfamily, 64 | keywordstyle=\color{blue}\bfseries, 65 | breakindent=10pt, 66 | identifierstyle=, % nothing happens 67 | commentstyle=\color{green}\small, % 注释的设置 68 | morecomment=[l][\color{green}]{\#}, 69 | numbers=left,stepnumber=1,numberstyle=\scriptsize, 70 | showstringspaces=false, 71 | showspaces=false, 72 | flexiblecolumns=true, 73 | breaklines=true, breakautoindent=true,breakindent=4em, 74 | escapeinside={/*@}{@*/}, 75 | } 76 | 77 | \title[Beamer模板]{中文题目} 78 | \subtitle{English Title} 79 | \author[作者]{答辩人:\quad \\ 学号:\quad \\ 专业:\quad \\ 指导教师:\quad \\\quad} 80 | \institute[学院]{南开大学 \quad 学院} 81 | \date{2019年5月} %Activate to display a given date or no date (if empty), 82 | % otherwise the current date is printed 83 | 84 | \begin{document} 85 | %%%%%%%%%% 定理类环境的定义 %%%%%%%%%% 86 | %% 必须在导入中文环境之后 87 | \newcommand{\redstress}[1]{{\color{red}{#1}}} 88 | %\renewcommand{\raggedright}{\leftskip=0pt \rightskip=0pt plus 0cm} 89 | \renewcommand{\contentsname}{目录} % 将Contents改为目录 90 | \renewcommand{\abstractname}{摘要} % 将Abstract改为摘要 91 | \renewcommand{\refname}{参考文献} % 将References改为参考文献 92 | \renewcommand{\indexname}{索引} 93 | \renewcommand{\figurename}{图} 94 | \renewcommand{\tablename}{表} 95 | \renewcommand{\appendixname}{附录} 96 | %\renewcommand{\proofname}{证明} 97 | %\renewcommand{\algorithm}{算法} 98 | %---------------------------------------------------------------------- 99 | % Title frame 100 | \begin{frame} 101 | \maketitle 102 | \end{frame} 103 | 104 | \section{绪论} 105 | 106 | \begin{frame}{Frametitle} 107 | \begin{itemize} 108 | \item First 109 | \item Second 110 | \item ... 111 | \end{itemize} 112 | \end{frame} 113 | 114 | \begin{frame}{Block} 115 | \begin{block}{Part 1} 116 | Test. 117 | \end{block} 118 | \begin{theorem}[Thm 1] 119 | Thm. 120 | \end{theorem} 121 | \begin{proof} 122 | Bingo. 123 | \end{proof} 124 | \end{frame} 125 | 126 | \begin{frame}{Enumerate} 127 | \begin{equation} 128 | F=ma\label{eq1} 129 | \end{equation} 130 | \begin{enumerate} 131 | \item First \redstress{important\cite{em1977}} 132 | \item Second \eqref{eq1} 133 | \end{enumerate} 134 | \end{frame} 135 | 136 | \begin{comment} 137 | 138 | This is comment. 139 | 140 | \end{comment} 141 | 142 | \section{算法} 143 | 144 | \begin{frame}{算法} 145 | \begin{algorithm}[H] 146 | \caption{算法1}\label{alg:em} 147 | \begin{algorithmic}[1] 148 | \REQUIRE Param 149 | \ENSURE $a$ 150 | \REPEAT 151 | \STATE Compute $a_n$ 152 | \UNTIL convergence 153 | \RETURN $a\leftarrow a_n$ 154 | \end{algorithmic} 155 | \end{algorithm} 156 | \end{frame} 157 | 158 | \begin{frame}{图片} 159 | \begin{figure} 160 | \centering 161 | \includegraphics[width=0.85\textwidth]{nk_logo.png} 162 | \caption{南开大学}\label{fig:nk} 163 | \end{figure} 164 | \end{frame} 165 | 166 | \begin{frame}{分栏} 167 | \begin{columns} 168 | \begin{column}{0.3\textwidth} 169 | \begin{figure} 170 | \centering 171 | \includegraphics[width=0.95\textwidth]{nk_logo.png} 172 | \caption{NKU}\label{fig:nku} 173 | \end{figure} 174 | \end{column} 175 | \begin{column}{0.7\textwidth} 176 | \begin{itemize} 177 | \item ... 178 | \end{itemize} 179 | \end{column} 180 | \end{columns} 181 | \end{frame} 182 | 183 | \begin{frame}{Subfigure} 184 | \begin{figure} 185 | \centering 186 | \subfigure[]{\includegraphics[width=0.47\textwidth]{nk_logo.png}} 187 | \subfigure[]{\includegraphics[width=0.47\textwidth]{nkbackground.png}} 188 | \caption{Subfigure\footnote{See: \url{www.nankai.edu.cn}}}\label{fig:rnn} 189 | \end{figure} 190 | \end{frame} 191 | 192 | % To put the content of a frame in several pages, use allowframebreaks 193 | \begin{frame}[allowframebreaks] 194 | \frametitle{Longframe} 195 | \begin{itemize} 196 | \item ... 197 | \end{itemize} 198 | \end{frame} 199 | 200 | \section{仿真} 201 | 202 | \begin{frame}{More block} 203 | \begin{exampleblock}{Example} 204 | Eg1. 205 | \end{exampleblock} 206 | \begin{alertblock}{Attention} 207 | Test block! 208 | \end{alertblock} 209 | \end{frame} 210 | 211 | \begin{frame}{表格} 212 | \begin{table}[] 213 | \centering 214 | \caption{数据} 215 | \label{tab1} 216 | \begin{tabular}{@{}ccccc@{}} 217 | \toprule 218 | & $q$ & $r$ & $a$ & $p$ \\ \midrule 219 | 实际值 & $1$ & $5$ & 2 & 3 \\ 220 | 方法1 & $4$ & $3$ & 1 & 1\\ 221 | 方法2 & $4$ & $3$ & 2 & 2\\ 222 | 方法3 & $5$ & $2$ & 3 & 3\\ 223 | 方法4 & $4$ & $2$ & 2 & 2\\ \bottomrule 224 | \end{tabular} 225 | \end{table} 226 | \end{frame} 227 | 228 | \begin{frame}[fragile] 229 | \frametitle{代码} 230 | \begin{lstlisting}[language=java] 231 | public class Hello{ 232 | public static void main(String args[]){ 233 | System.out.println("hello,world"); 234 | } 235 | }\end{lstlisting} 236 | \end{frame} 237 | 238 | \section{总结与展望} 239 | 240 | \begin{frame}{结论} 241 | \begin{description} 242 | \item[I] First of all 243 | \item[II] Besides 244 | \item[III] Last but not least 245 | \end{description} 246 | \end{frame} 247 | 248 | \begin{frame}{致谢} 249 | \begin{block}{致谢} 250 | 谢谢大家。 251 | \end{block} 252 | \end{frame} 253 | 254 | \begin{frame}[allowframebreaks] 255 | \frametitle{参考文献} 256 | \printbibliography 257 | \end{frame} 258 | 259 | \end{document} 260 | -------------------------------------------------------------------------------- /python_theme_beamer/mcode.sty: -------------------------------------------------------------------------------- 1 | %% 2 | %% This is file `mcode.sty' 3 | %% 4 | %% It is supposed to help you easily include MATLAB source code 5 | %% into LaTeX document, but have it nicely highlighted, using 6 | %% the great listings package. 7 | %% 8 | %% PLEASE NOTE that this package does nothing but save you from 9 | %% figuring out some configurations in setting up the LISTINGS 10 | %% package. ALL the work is done by that package! Thus, please 11 | %% refer your questions to the listings package documentation. 12 | %% 13 | %% Usage: You have three ways of including your MATLAB code. As 14 | %% environment, as inline object and directly from an external 15 | %% file. 16 | %% 17 | %% 1) Environment: 18 | %% 19 | %% \begin{lstlisting} 20 | %% YOUR CODE HERE 21 | %% \end{lstlisting} 22 | %% 23 | %% 24 | %% 2) Inline object*: 25 | %% 26 | %% Bla bla \mcode{CODEFRAGMENT} bla bla. 27 | %% 28 | %% 29 | %% 3) Include external file (in environment form) 30 | %% 31 | %% \lstinputlisting{YOUR-FILE.m} 32 | %% 33 | %% 34 | %% For your convenience this package has the following options: 35 | %% 36 | %% - bw if you intend to print the document (highlighting done 37 | %% via text formatting (bold, italic) and shades of gray) 38 | %% 39 | %% - numbered if you want line numbers 40 | %% 41 | %% - autolinebreaks if you want the package to automatically 42 | %% wrap your code. This is buggy as it may well break 43 | %% break syntax and it doesn't work well with comments. 44 | %% You REALLY should wrap your code manually. 45 | %% 46 | %% - useliterate if you want some characters / relations in 47 | %% your code to be replace with something more readable. 48 | %% Example: ~= becomes $\neq$, >= becomes $\geq$, delta 49 | %% becomes $\delta$ and so on. 50 | %% 51 | %% - framed if you want a frame around the source code blocks 52 | %% 53 | %% - final if you have ``gloablly'' set the draft option, the 54 | %% listings package will not output the code at all. to 55 | %% force it to do so anyway, load this package with the 56 | %% final option (passes the ``final'' on to listings). 57 | %% 58 | %% For example, you may use \usepackage[numbered,framed]{mcode} 59 | %% in your document preamble. 60 | %% 61 | %% * If you want to place some inline code in a footnote, use 62 | %% \mcodefn{} instead (this will reduce the font size a bit). 63 | %% 64 | %% Note: Inside code blocks you can escape to LaTeX text mode 65 | %% using §...§. For ex. §text and some math: $x^2$§, which is 66 | %% especially useful in comments for putting nicely typeset 67 | %% equations etc. To get the same colour/style as in the rest 68 | %% of the comment use \mcommentfont, i.e. §\mcommentfont $x^2$§ 69 | %% 70 | %% To change the font used, edit the first line in the "custo- 71 | %% mise below" section. And feel free to edit other things as 72 | %% well. Refer to the documentation of the listings package to 73 | %% see what else you could do. If an extra small font is re- 74 | %% quired, use {\fontfamily{pcr}\fontsize{3}{4.6}\selectfont} 75 | %% in the definition of \lstbasicfont. 76 | %% 77 | %% Author: 78 | %% Florian Knorn | florian@knorn.org | www.florian-knorn.com 79 | %% 80 | %% Version history: 81 | %% 2.7 -- Bugfixes + keywords (thanks Hildo Guillardi Jr.) 82 | %% 2.6 -- Add support for µ, fix for math-minus problem 83 | %% 2.5 -- Renamed internal variables (thx S. Kranenbarg!) 84 | %% 2.4 -- Added \mcodefn{} command (thx Tony Almeida!) 85 | %% 2.3 -- More keywords (thx Dominik Wild!) 86 | %% 2.2 -- Bugfix (thx Willi Gerbig!) 87 | %% 2.1 -- Finally automatic detection between end and end 88 | %% 2.0 -- New options for line breaking and literate prog. 89 | %% 1.8 -- Fixed typo in documentation regarding §...§ 90 | %% 1.7 -- Added MATLAB block comment syntax %{ ...... %} 91 | %% 1.6 -- Added some infos, dealing with keyword ``end'' 92 | %% 1.5 -- Tweaked check to see wether textcomp is loaded 93 | %% 1.4 -- Fixed misconfig (mathescape now set to false) 94 | %% 1.3 -- Purely cosmetic (tabs replaced by spaces) 95 | %% 1.2 -- Added \lstset{showstringspaces=false} 96 | %% 1.1 -- Added \mcode command and [final] option 97 | %% 1.0 -- Release 98 | 99 | 100 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 101 | % D O N ' T T O U C H T H I S % 102 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 103 | \def\fileversion{2.7} 104 | \def\filedate{2015/11/11} 105 | 106 | \typeout{-- Package: `mcode' \fileversion\space <\filedate> --} 107 | \NeedsTeXFormat{LaTeX2e} 108 | \ProvidesPackage{mcode}[\filedate\space\fileversion] 109 | 110 | % for bw-option 111 | \newif\ifmcode@bw 112 | \DeclareOption{bw}{\mcode@bwtrue} 113 | 114 | % numbered option 115 | \newif\ifmcode@numbered 116 | \DeclareOption{numbered}{\mcode@numberedtrue} 117 | 118 | % final option 119 | \newif\ifmcode@final 120 | \DeclareOption{final}{\mcode@finaltrue} 121 | 122 | % autolinebreaks option 123 | \newif\ifmcode@autolinebreaks 124 | \DeclareOption{autolinebreaks}{\mcode@autolinebreakstrue} 125 | 126 | % literate programming (replace certain characters/relations 127 | \newif\ifmcode@useliterate 128 | \DeclareOption{useliterate}{\mcode@useliteratetrue} 129 | 130 | % framed option 131 | \newif\ifmcode@framed 132 | \DeclareOption{framed}{\mcode@framedtrue} 133 | 134 | \DeclareOption*{% default 135 | \PackageWarning{mcode}{Unknown option `\CurrentOption' !}% 136 | } 137 | \ProcessOptions 138 | 139 | \ifmcode@bw\typeout{ - settings optimized for printing (bw formating)} 140 | \else\typeout{ - settings optimized for display (colour formating)}\fi 141 | \ifmcode@numbered\typeout{ - line numbering enabled}\else\fi 142 | \ifmcode@useliterate\typeout{ - literate programming (character replacements) enabled}\else\fi 143 | \ifmcode@autolinebreaks\typeout{ - automatic line breaking enabled (careful, buggy!)}\else\fi 144 | \ifmcode@framed\typeout{ - framed listings}\else\fi 145 | 146 | % This command allows you to typeset syntax highlighted Matlab 147 | % code ``inline''. The font size \small seems to look best... 148 | \newcommand{\mcode}[1]{\lstinline[basicstyle=\lstbasicfont\small]|#1|} 149 | 150 | % Same, but for footnotes 151 | \newcommand{\mcodefn}[1]{\lstinline[basicstyle=\lstbasicfont\footnotesize]|#1|} 152 | 153 | % check if color command exists 154 | \ifx\color\undefined% 155 | \RequirePackage{xcolor}% 156 | \fi 157 | 158 | % check if listings has been loaded 159 | \ifx\lstset\undefined% 160 | \ifmcode@final 161 | \RequirePackage[final]{listings} 162 | \else 163 | \RequirePackage{listings} 164 | \fi 165 | \fi 166 | 167 | % Check if textcomp has been loaded (this package is needed for 168 | % upright quotes '' (instead of typographic ones `´)... 169 | \ifx\textquotesingle\undefined% 170 | \RequirePackage{textcomp}% 171 | \fi 172 | 173 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 174 | % C U S T O M I S E B E L O W % 175 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 176 | 177 | % --------------------------------------------------------------------------------- 178 | % default font 179 | \def\lstbasicfont{\fontfamily{pcr}\selectfont\footnotesize} 180 | 181 | % --------------------------------------------------------------------------------- 182 | % matlab languate definition 183 | \lstdefinelanguage{matlabfloz}{% 184 | alsoletter={...},% 185 | morekeywords={% % keywords 186 | break,case,catch,classdef,continue,else, 187 | elseif,end,for,function,global,if, 188 | otherwise,parfor,persistent, 189 | return,spmd,switch,try,while,...}, % Use the matlab "iskeyword" command to get those 190 | comment=[l]\%, % comments 191 | morecomment=[l]..., % comments 192 | morecomment=[s]{\%\{}{\%\}}, % block comments 193 | morestring=[m]' % strings 194 | }[keywords,comments,strings]% 195 | 196 | % --------------------------------------------------------------------------------- 197 | % general definitions 198 | \lstset{% 199 | basicstyle={\lstbasicfont}, % set font 200 | showstringspaces=false, % do not emphasize spaces in strings 201 | tabsize=4, % number of spaces of a TAB 202 | mathescape=false,escapechar=§, % escape to latex with §...§ 203 | upquote=true, % upright quotes 204 | aboveskip={1.5\baselineskip}, % a bit of space above listings 205 | columns=fixed % nice spacing 206 | } 207 | 208 | % --------------------------------------------------------------------------------- 209 | % define colours and styles 210 | \ifmcode@bw % use font formating and gray 'colors' 211 | \def\mcommentfont{\color[gray]{.75}\itshape} %comments light gray and italic 212 | \lstset{language=matlabfloz, % use our version of highlighting 213 | keywordstyle=\bfseries, % keywords in bold 214 | commentstyle=\mcommentfont, % comments 215 | stringstyle=\color[gray]{0.5} % strings darker gray 216 | } 217 | \else% notbw => use colors : ) 218 | \def\mcommentfont{\color[rgb]{.133,.545,.133}} %comments in green 219 | \lstset{language=matlabfloz, % use our version of highlighting 220 | keywordstyle=\color[rgb]{0,0,1}, % keywords in blue 221 | commentstyle=\mcommentfont, % comments 222 | stringstyle=\color[rgb]{.627,.126,.941} % strings in purple 223 | } 224 | \fi%bw 225 | 226 | % --------------------------------------------------------------------------------- 227 | % automatic line breaking --- warning, this is buggy and 228 | % doesn't break comments correctly! 229 | \ifmcode@autolinebreaks 230 | \newsavebox{\lbreakdots}\sbox{\lbreakdots}{\lstbasicfont\mcommentfont...} 231 | \lstset{breaklines=true,breakatwhitespace=true,prebreak=\usebox{\lbreakdots}} 232 | \fi 233 | 234 | % --------------------------------------------------------------------------------- 235 | % literate replacements 236 | % the following is for replacing some matlab relations like >= or ~= 237 | % by the corresponding LaTeX symbols, which are much easier to read ... 238 | \ifmcode@useliterate 239 | \lstset{% 240 | literate=% 241 | {~}{{$\neg$}}1 % \neg, logical not 242 | {<=}{{\tiny$\leq$}}1 % \leq 243 | {>=}{{\tiny$\geq$}}1 % \geq 244 | {~=}{{\tiny$\neq$}}1 % \neq, not equal 245 | {delta}{{\tiny$\Delta$}}1 % \Delta 246 | {µ}{{$\mu$}}1 % \mu 247 | {(end)}{\lstbasicfont (end)}{5} % black ``end'' when indexing last vector element 248 | {({ }end)}{\lstbasicfont ({ }end)}{6} 249 | {(end{ })}{\lstbasicfont (end{ })}{6} 250 | {({ }end{ })}{\lstbasicfont ({ }end{ })}{7} 251 | {:end}{\lstbasicfont :end}{4} 252 | {:{ }end}{\lstbasicfont :{ }end}{5} 253 | {end:}{\lstbasicfont end:}{4} 254 | {end{ }:}{\lstbasicfont end{ }:}{5} 255 | {,end}{\lstbasicfont ,end}{4} 256 | {,{ }end}{\lstbasicfont ,{ }end}{5} 257 | } 258 | \else 259 | \lstset{% 260 | literate=% 261 | {(end)}{\lstbasicfont (end)}{5} % black ``end'' when indexing last vector element 262 | {({ }end)}{\lstbasicfont ({ }end)}{6} 263 | {(end{ })}{\lstbasicfont (end{ })}{6} 264 | {({ }end{ })}{\lstbasicfont ({ }end{ })}{7} 265 | {:end}{\lstbasicfont :end}{4} 266 | {:{ }end}{\lstbasicfont :{ }end}{5} 267 | {end:}{\lstbasicfont end:}{4} 268 | {end{ }:}{\lstbasicfont end{ }:}{5} 269 | {,end}{\lstbasicfont ,end}{4} 270 | {,{ }end}{\lstbasicfont ,{ }end}{5} 271 | {µ}{$\mu$}1 272 | {~}{{\fontfamily{ptm}\selectfont\texttildelow}}1 % get a nicer tilde character 273 | } 274 | \fi%literates 275 | 276 | % --------------------------------------------------------------------------------- 277 | % line numbering 278 | \ifmcode@numbered% numbered option 279 | \lstset{% 280 | numbersep=3mm, numbers=left, numberstyle=\tiny, % number style 281 | } 282 | \fi 283 | 284 | \ifmcode@framed% framed option 285 | \lstset{% 286 | frame=single,rulecolor=\color{black} % frame 287 | } 288 | \ifmcode@numbered% 289 | \lstset{% 290 | framexleftmargin=6mm, xleftmargin=6mm % tweak margins 291 | } 292 | \fi 293 | \fi 294 | 295 | % fix for ``minus'' character issue, as suggested by Stefan Karlsson, thanks! 296 | \makeatletter 297 | \lst@CCPutMacro\lst@ProcessOther {"2D}{\lst@ttfamily{-{}}{-{}}} 298 | \@empty\z@\@empty 299 | \makeatother 300 | 301 | \endinput 302 | %% End of file `mcode.sty'. -------------------------------------------------------------------------------- /python_theme_beamer/pybg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zshicode/LaTeX-Beamer-Nankai/f555b81691867581b7069e2c1192a258813a3938/python_theme_beamer/pybg.png -------------------------------------------------------------------------------- /python_theme_beamer/pycolor.sty: -------------------------------------------------------------------------------- 1 | %-------------------------------------------------------- 2 | % NOTE: 1) This is an UNOFFICIAL LaTeX beamer style about Python. 3 | % 2) This is not exactly a beamer style, rather 4 | % it contains two LaTeX files to be inserted 5 | % in the slides' source file. 6 | % 3) These files are based on Edward Hartley's work 7 | % 8 | % 4) Complaints or suggestions are always welcome. 9 | % 10 | %-------------------------------------------------------- 11 | 12 | %-------------------------------------------------------- 13 | % Require tikz to do some text positioning 14 | %-------------------------------------------------------- 15 | \usepackage{tikz} 16 | 17 | %-------------------------------------------------------- 18 | % Use Helvetica rather than Computer Modern Sans Serif 19 | % Comment this out if you prefer Computer Modern 20 | %\usepackage{times} 21 | %-------------------------------------------------------- 22 | %\usepackage{helvet} 23 | 24 | \usepackage{comment} 25 | 26 | %-------------------------------------------------------- 27 | % If you wish to use Arial, and have the winfonts package 28 | % correctly installed uncomment the following to make the 29 | % default sans serif font Arial 30 | %-------------------------------------------------------- 31 | %\usepackage{winfonts} 32 | %\usepackage[T1]{fontenc} 33 | %\renewcommand{\sfdefault}{cmr} 34 | %-------------------------------------------------------- 35 | 36 | %-------------------------------------------------------- 37 | % Get rid of the navigation bar 38 | %-------------------------------------------------------- 39 | \beamertemplatenavigationsymbolsempty 40 | 41 | %-------------------------------------------------------- 42 | % Define how the page counter will be displayed on slides 43 | %-------------------------------------------------------- 44 | \newcommand{\footlinepagecounter}% 45 | {\insertframenumber{}/\inserttotalframenumber} 46 | %-------------------------------------------------------- 47 | 48 | % Layout scheme for outer elements: split(give ALL section & subsection) or infolines(give CURRENT section & subsection) 49 | \useoutertheme{infolines} 50 | 51 | % Color scheme for outer elements: use background colors 52 | \usecolortheme{whale} 53 | 54 | % Layout scheme for inner elements: rounded elements 55 | %\useinnertheme[shadow]{rounded} 56 | \useinnertheme{rounded} 57 | 58 | % Color scheme for inner elements: use foreground colors 59 | \usecolortheme{orchid} 60 | 61 | % Itemize items: default (triangle), circle, square, ball 62 | \setbeamertemplate{itemize items}[default] 63 | 64 | % Enumerate items: default, circle, square, ball 65 | \setbeamertemplate{enumerate items}[circle] 66 | 67 | % Outline: default, sections numbered, subsections numbered, circle, square, ball, ball unnumbered 68 | % symbol in outline 69 | \setbeamertemplate{sections/subsections in toc}[square] 70 | 71 | % list the outline at the beginning of each section 72 | \AtBeginSection[] % Do nothing for \subsection* 73 | { 74 | \begin{frame} 75 | \frametitle{目录} 76 | \tableofcontents[currentsection] 77 | \end{frame} 78 | } 79 | 80 | \setbeamertemplate{caption}[numbered] 81 | 82 | \setbeamertemplate{theorems}[numbered] 83 | 84 | % General blocks: 85 | \setbeamertemplate{blocks}[rounded][shadow=true] 86 | 87 | % Background 88 | \pgfdeclareimage[width=\paperwidth,height=0.95\paperheight]{bg}{pybg.png} 89 | \setbeamertemplate{background}{\pgfuseimage{bg}} 90 | 91 | %-------------------------------------------------------- 92 | % Set up some lengths 93 | %-------------------------------------------------------- 94 | % A paper width for the footline 95 | \newlength{\halfpaperwidth} 96 | 97 | % The left margin 98 | \newlength{\headingleftmargin} 99 | % Paper width minus margins 100 | \newlength{\headingwidthminusmargins} 101 | % Height of the heading block 102 | \newlength{\headingheight} 103 | % Height of the footer block 104 | \newlength{\footerheight} 105 | 106 | % The height for the titlepageheader in the title page 107 | \newlength{\titlepageheaderheight} 108 | % The height for the footer in the title page 109 | \newlength{\titlepagefooterheight} 110 | % The height for the main title block 111 | \newlength{\titlepagemaintitleblockheight} 112 | % The height for the subtitle block 113 | \newlength{\titlepagesubtitleblockheight} 114 | % The height for the name and date block 115 | \newlength{\titlepagenamedateblockheight} 116 | % The height for the institution block 117 | %\newlength{\titlepageinstitutionheight} 118 | 119 | % The lengths for spacing between name and date 120 | \newlength{\titlepagespaceundername} 121 | \newlength{\titlepagespaceunderdate} 122 | 123 | % The length for the light thin bar 124 | 125 | 126 | \setlength{\headingleftmargin}{0.05573\paperwidth} 127 | \setlength{\headingwidthminusmargins}{\paperwidth} 128 | \addtolength{\headingwidthminusmargins}{-\headingleftmargin} 129 | \setlength{\headingheight}{0.1\paperheight} 130 | \setlength{\footerheight}{0.09017\paperheight} 131 | 132 | \setlength{\titlepageheaderheight}{0.1761\paperheight} 133 | \setlength{\titlepagefooterheight}{0.2759\paperheight} 134 | \setlength{\titlepagemaintitleblockheight}{0.2361\paperheight} 135 | \setlength{\titlepagesubtitleblockheight}{0.1\paperheight} 136 | \setlength{\titlepagenamedateblockheight}{0.3161\paperheight} 137 | %\setlength{\titlepageinstitutionheight}{0.95cm} 138 | 139 | \setlength{\titlepagespaceundername}{16pt} 140 | \setlength{\titlepagespaceunderdate}{5pt} 141 | 142 | %-------------------------------------------------------- 143 | 144 | %-------------------------------------------------------- 145 | % Set up the scheme for use 146 | % with beamer 147 | %-------------------------------------------------------- 148 | 149 | % Define colour names 150 | \definecolor{pyblue}{rgb}{0.2392 0.4784 0.6705} %#(61,122,171) 151 | \definecolor{pyyellow}{rgb}{1 0.8980 0.4157} %#(255,229,106) 152 | %\setbeamercolor{nktitle}{bg=white,fg=pyblue} 153 | %\setbeamertemplate{title page}[default][colsep=-4bp,rounded=true] 154 | % Set element colours 155 | \setbeamercolor{title}{bg=pyyellow, fg=pyblue} 156 | \setbeamercolor{subtitle}{bg=white, fg=pyblue} 157 | \setbeamercolor{titlepageheader}{bg=white,fg=black} 158 | \setbeamercolor{titlepagefooter}{bg=white,fg=black} 159 | \setbeamercolor{block title}{fg=white,bg=pyblue} 160 | \setbeamercolor{block body}{fg=black,bg=pyblue!10!white} 161 | \setbeamercolor{structure}{bg=white, fg=pyblue} 162 | % \setbeamercolor{alerted text}{fg=darkOrange} 163 | 164 | %-------------------------------------------------------- 165 | % Set font sizes 166 | %-------------------------------------------------------- 167 | \setbeamerfont{frametitle}{size=\large,series=\bfseries} 168 | \setbeamerfont{title}{size=\Large,series=\bfseries} 169 | \setbeamerfont{author}{size=\normalsize} 170 | \setbeamerfont{date}{size=\scriptsize} 171 | \setbeamerfont{subtitle}{size=\footnotesize,series=\bfseries} 172 | \setbeamerfont{block title}{size=\normalsize} 173 | \setbeamerfont{structure}{size=\normalsize,series=\bfseries} 174 | 175 | \setbeamertemplate{itemize item}{\scriptsize\raise1.25pt\hbox{\textbullet}} 176 | \setbeamertemplate{itemize subitem}{\scriptsize\raise1.25pt\hbox{\textbullet}} 177 | \setbeamertemplate{itemize subsubitem}{\scriptsize\raise1.25pt\hbox{\textbullet}} 178 | 179 | %----------------------------------------------------- 180 | % Define title page 181 | %----------------------------------------------------- 182 | \setbeamertemplate{title page} 183 | {% 184 | \begin{beamercolorbox}[sep=0cm,right,wd=\paperwidth,ht=\titlepageheaderheight,rightskip=\headingleftmargin]{titlepageheader} 185 | \includegraphics[width=0.2720\paperwidth]{python-logo.png} 186 | \vskip0.0361\titlepageheaderheight 187 | \end{beamercolorbox} 188 | \begin{beamercolorbox}[center,wd=0.95\paperwidth,ht=\titlepagemaintitleblockheight,rounded=true,shadow=true]{title} 189 | \usebeamerfont{title}\inserttitle\\ 190 | \vskip\titlepagespaceunderdate% 191 | \usebeamerfont{subtitle}\insertsubtitle 192 | \vskip\titlepagespaceunderdate% 193 | \end{beamercolorbox} 194 | %\nointerlineskip% 195 | %\vskip-1pt% 196 | \begin{beamercolorbox}[center,wd=\paperwidth,ht=\titlepagenamedateblockheight]{white} 197 | \usebeamerfont{author}\insertauthor\\ 198 | \vskip\titlepagespaceunderdate% 199 | \usebeamerfont{institute}\insertinstitute\\ 200 | \vskip\titlepagespaceunderdate% 201 | \usebeamerfont{date}\insertdate 202 | \vskip\titlepagespaceunderdate% 203 | \end{beamercolorbox}% 204 | \begin{beamercolorbox}[center,wd=\paperwidth,ht=\titlepagefooterheight]{titlepagefooter} 205 | \end{beamercolorbox} 206 | } 207 | 208 | \begin{comment} 209 | \begin{beamercolorbox}[center,wd=0.92\paperwidth,ht=\titlepagemaintitleblockheight,rounded=true,shadow=true]{title} 210 | \usebeamerfont{title}\inserttitle\\ 211 | \vskip\titlepagespaceunderdate% 212 | \usebeamerfont{subtitle}\insertsubtitle 213 | \vskip\titlepagespaceunderdate% 214 | \end{beamercolorbox}% 215 | \nointerlineskip% 216 | \vskip-1pt% 217 | \begin{beamercolorbox}[center,wd=\paperwidth,ht=\titlepagesubtitleblockheight]{white} 218 | %\tikz{\node[inner sep=0cm, text width=\paperwidth, minimum height=\titlepagesubtitleblockheight]{ 219 | \usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle 220 | \end{beamercolorbox}% 221 | \end{comment} 222 | 223 | \begin{comment} 224 | % Footline: AUTHOR | TITLE | DATE FRAMENUMBER 225 | 226 | \defbeamertemplate*{footline}{ru theme}{% 227 | \leavevmode% 228 | \hbox{% 229 | \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% 230 | \usebeamerfont{author in head/foot}\insertshortauthor~~(\insertshortinstitute) 231 | \end{beamercolorbox}% 232 | \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}% 233 | \usebeamerfont{title in head/foot}\insertshorttitle 234 | \end{beamercolorbox}% 235 | \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}% 236 | \usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em} 237 | \insertframenumber{} / \inserttotalframenumber\hspace*{2ex} 238 | \end{beamercolorbox}}% 239 | \vskip0pt% 240 | } 241 | \end{comment} 242 | 243 | \pgfdeclarehorizontalshading[frametitle.bg,frametitle right.bg]{beamer@frametitleshade}{\paperheight}{% 244 | color(0pt)=(frametitle.bg); 245 | color(\paperwidth)=(frametitle right.bg)} 246 | 247 | \defbeamertemplate*{frametitle}{ru theme}{% 248 | \nointerlineskip% 249 | %\vskip-2pt% 250 | \hbox{\leavevmode 251 | \advance\beamer@leftmargin by -12bp% 252 | \advance\beamer@rightmargin by -12bp% 253 | \beamer@tempdim=\textwidth% 254 | \advance\beamer@tempdim by \beamer@leftmargin% 255 | \advance\beamer@tempdim by \beamer@rightmargin% 256 | \hskip-\Gm@lmargin\hbox{% 257 | \setbox\beamer@tempbox=\hbox{\begin{minipage}[b]{\paperwidth}% 258 | \vbox{}\vskip-.75ex% 259 | \leftskip0.3cm% 260 | \rightskip0.3cm plus1fil\leavevmode 261 | \usebeamerfont*{frametitle}\insertframetitle% 262 | \ifx\insertframesubtitle\@empty% 263 | \strut\par% 264 | \else 265 | \par{\usebeamerfont*{framesubtitle}{\usebeamercolor[fg]{framesubtitle}\insertframesubtitle}\strut\par}% 266 | \fi% 267 | \nointerlineskip 268 | \vbox{}% 269 | \end{minipage}}% 270 | \beamer@tempdim=\ht\beamer@tempbox% 271 | \advance\beamer@tempdim by 2pt% 272 | \begin{pgfpicture}{0.1mm}{0pt}{1.01\paperwidth}{\beamer@tempdim} 273 | \usebeamercolor{frametitle right} 274 | \pgfpathrectangle{\pgfpointorigin}{\pgfpoint{\paperwidth}{\beamer@tempdim}} 275 | \pgfusepath{clip} 276 | \pgftext[left,base]{\pgfuseshading{beamer@frametitleshade}} 277 | \end{pgfpicture} 278 | \hskip-\paperwidth% 279 | \box\beamer@tempbox% 280 | }% 281 | \hskip-\Gm@rmargin% 282 | }% 283 | % \nointerlineskip 284 | % \vskip-0.2pt 285 | % \hbox to\textwidth{\hskip-\Gm@lmargin\pgfuseshading{beamer@topshade}\hskip-\Gm@rmargin} 286 | % \vskip-2pt 287 | } 288 | \setbeamercolor{frametitle}{bg=pyyellow,fg=pyblue} 289 | -------------------------------------------------------------------------------- /python_theme_beamer/pyeg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zshicode/LaTeX-Beamer-Nankai/f555b81691867581b7069e2c1192a258813a3938/python_theme_beamer/pyeg.pdf -------------------------------------------------------------------------------- /python_theme_beamer/pyeg.tex: -------------------------------------------------------------------------------- 1 | \documentclass[UTF8]{beamer} 2 | \usepackage{ctex} 3 | \usepackage{fontspec} 4 | \usepackage{comment} 5 | \usepackage{xeCJK} 6 | %\setsansfont{Microsoft YaHei} 7 | \setCJKmainfont{Microsoft YaHei} 8 | %\setCJKmonofont{KaiTi} 9 | %\setCJKsansfont{Microsoft YaHei} 10 | \usefonttheme{professionalfonts} 11 | \usepackage{graphicx} 12 | \graphicspath{{fig/}} % storage figure in a sub-folder 13 | % \usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent 14 | \usepackage{epstopdf} 15 | \usepackage{bm} 16 | \usepackage{pycolor} 17 | \usepackage{pythonhighlight} 18 | \usepackage{hyperref} 19 | \hypersetup{CJKbookmarks=true} 20 | \usepackage{url} 21 | \usepackage{amsmath} 22 | \usepackage{amsthm} 23 | %\theoremstyle{definition} 24 | %\newtheorem{theorem}{定理} 25 | %\newtheorem{definition}{定义} 26 | %\newtheorem{corollary}{推论} 27 | %\newtheorem{example}{例} 28 | \usepackage{booktabs} % for much better looking tables 29 | \usepackage{cite} % reference 30 | \usepackage{array} % for better arrays (eg matrices) in maths 31 | %\usepackage{paralist} % very flexible & customisable lists (eg. enumerate/itemize, etc.) 32 | \usepackage{verbatim} % adds environment for commenting out blocks of text & for better verbatim 33 | \usepackage{subfig} % make it possible to include more than one captioned figure/table in a single float 34 | % These packages are all incorporated in the memoir class to one degree or another... 35 | %\usepackage{threeparttable} 36 | \usepackage{cases} %equation set 37 | \usepackage{multirow} %use table 38 | \usepackage{enumerate} 39 | \usepackage{algorithm} 40 | \usepackage{algorithmic} 41 | \usepackage{xcolor} 42 | %\usepackage{capt-of} 43 | \setcounter{tocdepth}{1}%只显示section,不显示subsection 44 | \usepackage{listings} 45 | \lstset{tabsize=4, keepspaces=true, 46 | xleftmargin=2em,xrightmargin=0em, aboveskip=1em, 47 | backgroundcolor=\color{gray!20}, % 定义背景颜色 48 | frame=none, % 表示不要边框 49 | extendedchars=false, % 解决代码跨页时,章节标题,页眉等汉字不显示的问题 50 | numberstyle=\ttfamily, 51 | basicstyle=\ttfamily, 52 | keywordstyle=\color{blue}\bfseries, 53 | breakindent=10pt, 54 | identifierstyle=, % nothing happens 55 | commentstyle=\color{green}\small, % 注释的设置 56 | morecomment=[l][\color{green}]{\#}, 57 | numbers=left,stepnumber=1,numberstyle=\scriptsize, 58 | showstringspaces=false, 59 | showspaces=false, 60 | flexiblecolumns=true, 61 | breaklines=true, breakautoindent=true,breakindent=4em, 62 | escapeinside={/*@}{@*/}, 63 | } 64 | 65 | \title[Beamer模板]{Style of Nankai University} 66 | \subtitle{Beamer模板} 67 | \author[李华]{李华\\(\url{lihua@163.com})} 68 | \institute{南开大学XX学院} 69 | %\author[Calvin]{Calvin\inst{1} \and Cleven\inst{2}} 70 | %\institute[Univ]{\inst{1}南开大学 \and \inst{2}克莱登大学} 71 | \date{\today} 72 | 73 | 74 | \begin{document} 75 | %%%%%%%%%% 定理类环境的定义 %%%%%%%%%% 76 | %% 必须在导入中文环境之后 77 | 78 | \renewcommand{\contentsname}{目录} % 将Contents改为目录 79 | \renewcommand{\abstractname}{摘要} % 将Abstract改为摘要 80 | \renewcommand{\refname}{参考文献} % 将References改为参考文献 81 | \renewcommand{\indexname}{索引} 82 | \renewcommand{\figurename}{图} 83 | \renewcommand{\tablename}{表} 84 | \renewcommand{\appendixname}{附录} 85 | %\renewcommand{\proofname}{证明} 86 | %\renewcommand{\algorithm}{算法} 87 | %---------------------------------------------------------------------- 88 | % Title frame 89 | \begin{frame}[plain] 90 | \maketitle 91 | \end{frame} 92 | 93 | %---------------------------------------------------------------------- 94 | % Outline frame 95 | 96 | \begin{frame} 97 | \frametitle{目录} 98 | \tableofcontents 99 | \end{frame} 100 | %%===================================================================== 101 | % Section I 102 | \section{框架} 103 | %---------------------------------------------------------------------- 104 | % Content frame 105 | 106 | \subsection{测试功能} 107 | 108 | \begin{frame}{枚举} 109 | \begin{enumerate} 110 | \item No one has done it. 111 | \item I need one. 112 | \end{enumerate} 113 | \end{frame} 114 | 115 | \begin{frame}{算法} 116 | \begin{algorithm}[H] 117 | \caption{背景减除} 118 | \begin{algorithmic}[1] 119 | \STATE 初始化 120 | \REPEAT 121 | \STATE 获取第t帧图像 122 | \UNTIL{所有帧都被处理} 123 | \end{algorithmic} 124 | \end{algorithm} 125 | \end{frame} 126 | 127 | \subsection{basic frame} 128 | 129 | \begin{frame}[allowframebreaks] 130 | \frametitle{框架:Why I made this} 131 | %\framesubtitle{Why I made this beamer style} 132 | \begin{block}{Demonstration of the use of items and blocks} 133 | \begin{itemize} 134 | \item No one has done it.$$e=mc^2$$ 135 | \item I need one. 136 | \pause \item Share with others. 137 | \end{itemize} 138 | \end{block} 139 | \pause 140 | \begin{block}{Another block} 141 | This block appears after a pause. Simply delete the \texttt{\textbackslash pause} command if this animation is not needed. Add the pause command whenever a pause is needed. 142 | \end{block} 143 | \end{frame} 144 | 145 | %%===================================================================== 146 | % Section II 147 | \section{extend usage} 148 | %---------------------------------------------------------------------- 149 | \subsection{format} 150 | \begin{frame} 151 | \frametitle{A Two-column Slide} 152 | \begin{columns} 153 | \begin{column}{0.5\textwidth} 154 | \begin{figure}[htb] 155 | \includegraphics[width=2.5cm,height=1.3cm]{test.png} 156 | \caption{插入图片示例} 157 | \label{fig1} 158 | \end{figure} 159 | \end{column} 160 | \begin{column}{0.5\textwidth} 161 | 颜色如图\ref{fig1},以及 e.g. {\color{red}{red}}, {\color{orange}{orange}}, {\color{blue}{blue}} 162 | \vspace{9.5em} 163 | \end{column} 164 | \end{columns} 165 | \end{frame} 166 | 167 | \begin{frame} 168 | \frametitle{无序列表} 169 | \begin{description} 170 | \item[i] first of all 171 | \item[ii] besides 172 | \item[iii] last but not least 173 | \end{description} 174 | \begin{equation} 175 | \text{e}^{\pi \text{j}} + 1 = 0 176 | \end{equation} 177 | \begin{itemize} 178 | \item first 179 | \item second 180 | \end{itemize} 181 | \end{frame} 182 | 183 | \begin{frame}{表格} 184 | \begin{table}[!hbp] 185 | \centering 186 | \begin{tabular}{c|c} 187 | \hline 188 | 甲 &乙\\ 189 | \hline 190 | 11 & 12\\ 191 | 21 & 22\\ 192 | 31 & 32\\ 193 | \hline 194 | \end{tabular} 195 | \caption{插入表格示例} 196 | \label{tab1} 197 | \end{table} 198 | \end{frame} 199 | 200 | \begin{frame}[fragile] 201 | \frametitle{code highlight} 202 | \begin{lstlisting}[language=java] 203 | public class Hello{ 204 | public static void main(String args[]){ 205 | System.out.println("hello,world"); 206 | } 207 | }\end{lstlisting} 208 | \end{frame} 209 | 210 | \begin{python} 211 | import numpy as np 212 | import matplotlib.pyplot as plt 213 | import rec 214 | import math 215 | 216 | C = rec.data 217 | print(C) 218 | A = rec.initMat(C) 219 | print(A) 220 | S = rec.svdEst(A) 221 | print(S) 222 | 223 | m,n = A.shape 224 | B = np.dot(S,A.T).T 225 | plt.imshow(B) 226 | x = [] 227 | y = [] 228 | 229 | for i in range(m): 230 | print(np.sum(S[i,:])) 231 | for j in range(n): 232 | if C[i,j] != 0: 233 | x.append(A[i,j]) 234 | y.append(B[i,j]) 235 | 236 | 237 | plt.scatter(x,y) 238 | #plt.xlim(1,5) 239 | #plt.ylim(0,5) 240 | xt = [1.0,5.0] 241 | plt.title("svd after change") 242 | #print(C) 243 | 244 | plt.show()\end{python} 245 | 246 | \begin{frame} 247 | \frametitle{theorem and proof} 248 | \begin{exampleblock}{Theorem 1 (L\'{e}vy)} 249 | 令 $F(x),\varphi(t)$ 分别为随机变量 $X$ 的分布函数和特征函数。 250 | 假定 $F(x)$ 在 $a+h$ 和 $a-h (h>0)$ 处连续,则有 251 | \begin{align} 252 | \label{Levy theorem} % 方程的标记可以是专有名词 253 | F(a+h)-F(a-h)&=\lim_{T\rightarrow\infty}\frac{1}{\pi}\int^{T}_{-T}\frac{\sin ht}{t} 254 | e^{-ita}\varphi(t)dt 255 | \end{align} 256 | \end{exampleblock} 257 | \begin{proof} 258 | 略。 259 | \end{proof} 260 | \begin{alertblock} 261 | Test block! 262 | \end{alertblock} 263 | \end{frame} 264 | 265 | \subsection{总结与致谢} 266 | 267 | \begin{frame} 268 | \frametitle{reference} 269 | \begin{thebibliography}{99} 270 | \bibitem{edwurd} These files are based on Edward Hartley's work 271 | (\url{http://www-control.eng.cam.ac.uk/Main/EdwardHartley}) 272 | \bibitem{beihang} Beamer style of Beihang 273 | \end{thebibliography} 274 | \end{frame} 275 | 276 | \begin{frame} 277 | \centering{\Huge{谢谢大家!}}\\ 278 | \end{frame} 279 | \end{document} 280 | -------------------------------------------------------------------------------- /python_theme_beamer/python-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zshicode/LaTeX-Beamer-Nankai/f555b81691867581b7069e2c1192a258813a3938/python_theme_beamer/python-logo.png -------------------------------------------------------------------------------- /python_theme_beamer/pythonhighlight.sty: -------------------------------------------------------------------------------- 1 | \NeedsTeXFormat{LaTeX2e} 2 | \ProvidesPackage{pythonhighlight}[2011/09/19 python code highlighting; provided by Olivier Verdier ] 3 | 4 | 5 | \RequirePackage{listings} 6 | \RequirePackage{xcolor} 7 | 8 | \renewcommand*{\lstlistlistingname}{Code Listings} 9 | \renewcommand*{\lstlistingname}{Code Listing} 10 | \definecolor{gray}{gray}{0.5} 11 | \colorlet{commentcolour}{green!50!black} 12 | 13 | \colorlet{stringcolour}{red!60!black} 14 | \colorlet{keywordcolour}{magenta!90!black} 15 | \colorlet{exceptioncolour}{yellow!50!red} 16 | \colorlet{commandcolour}{blue!60!black} 17 | \colorlet{numpycolour}{blue!60!green} 18 | \colorlet{literatecolour}{magenta!90!black} 19 | \colorlet{promptcolour}{green!50!black} 20 | \colorlet{specmethodcolour}{violet} 21 | 22 | \newcommand*{\framemargin}{3ex} 23 | 24 | \newcommand*{\literatecolour}{\textcolor{literatecolour}} 25 | 26 | \newcommand*{\pythonprompt}{\textcolor{promptcolour}{{>}{>}{>}}} 27 | 28 | \lstdefinestyle{mypython}{ 29 | %\lstset{ 30 | %keepspaces=true, 31 | language=python, 32 | showtabs=true, 33 | tab=, 34 | tabsize=2, 35 | basicstyle=\ttfamily\footnotesize,%\setstretch{.5}, 36 | stringstyle=\color{stringcolour}, 37 | showstringspaces=false, 38 | alsoletter={1234567890}, 39 | otherkeywords={\%, \}, \{, \&, \|}, 40 | keywordstyle=\color{keywordcolour}\bfseries, 41 | emph={and,break,class,continue,def,yield,del,elif ,else,% 42 | except,exec,finally,for,from,global,if,import,in,% 43 | lambda,not,or,pass,print,raise,return,try,while,assert,with}, 44 | emphstyle=\color{blue}\bfseries, 45 | emph={[2]True, False, None}, 46 | emphstyle=[2]\color{keywordcolour}, 47 | emph={[3]object,type,isinstance,copy,deepcopy,zip,enumerate,reversed,list,set,len,dict,tuple,xrange,append,execfile,real,imag,reduce,str,repr}, 48 | emphstyle=[3]\color{commandcolour}, 49 | emph={Exception,NameError,IndexError,SyntaxError,TypeError,ValueError,OverflowError,ZeroDivisionError}, 50 | emphstyle=\color{exceptioncolour}\bfseries, 51 | %upquote=true, 52 | morecomment=[s]{"""}{"""}, 53 | commentstyle=\color{commentcolour}\slshape, 54 | %emph={[4]1, 2, 3, 4, 5, 6, 7, 8, 9, 0}, 55 | emph={[4]ode, fsolve, sqrt, exp, sin, cos,arctan, arctan2, arccos, pi, array, norm, solve, dot, arange, isscalar, max, sum, flatten, shape, reshape, find, any, all, abs, plot, linspace, legend, quad, polyval,polyfit, hstack, concatenate,vstack,column_stack,empty,zeros,ones,rand,vander,grid,pcolor,eig,eigs,eigvals,svd,qr,tan,det,logspace,roll,min,mean,cumsum,cumprod,diff,vectorize,lstsq,cla,eye,xlabel,ylabel,squeeze}, 56 | emphstyle=[4]\color{numpycolour}, 57 | emph={[5]__init__,__add__,__mul__,__div__,__sub__,__call__,__getitem__,__setitem__,__eq__,__ne__,__nonzero__,__rmul__,__radd__,__repr__,__str__,__get__,__truediv__,__pow__,__name__,__future__,__all__}, 58 | emphstyle=[5]\color{specmethodcolour}, 59 | emph={[6]assert,yield}, 60 | emphstyle=[6]\color{keywordcolour}\bfseries, 61 | emph={[7]range}, 62 | emphstyle={[7]\color{keywordcolour}\bfseries}, 63 | % emph={[7]self}, 64 | % emphstyle=[7]\bfseries, 65 | literate=*% 66 | {:}{{\literatecolour:}}{1}% 67 | {=}{{\literatecolour=}}{1}% 68 | {-}{{\literatecolour-}}{1}% 69 | {+}{{\literatecolour+}}{1}% 70 | {*}{{\literatecolour*}}{1}% 71 | {**}{{\literatecolour{**}}}2% 72 | {/}{{\literatecolour/}}{1}% 73 | {//}{{\literatecolour{//}}}2% 74 | {!}{{\literatecolour!}}{1}% 75 | %{(}{{\literatecolour(}}{1}% 76 | %{)}{{\literatecolour)}}{1}% 77 | {[}{{\literatecolour[}}{1}% 78 | {]}{{\literatecolour]}}{1}% 79 | {<}{{\literatecolour<}}{1}% 80 | {>}{{\literatecolour>}}{1}% 81 | {>>>}{\pythonprompt}{3}% 82 | ,% 83 | %aboveskip=.5ex, 84 | frame=trbl, 85 | %frameround=tttt, 86 | %framesep=.3ex, 87 | rulecolor=\color{black!40}, 88 | %framexleftmargin=\framemargin, 89 | %framextopmargin=.1ex, 90 | %framexbottommargin=.1ex, 91 | %framexrightmargin=\framemargin, 92 | %framexleftmargin=1mm, framextopmargin=1mm, frame=shadowbox, rulesepcolor=\color{blue},#1 93 | %frame=tb, 94 | backgroundcolor=\color{white}, 95 | breakindent=.5\textwidth,frame=single,breaklines=true% 96 | %} 97 | } 98 | 99 | \newcommand*{\inputpython}[3]{\lstinputlisting[firstline=#2,lastline=#3,firstnumber=#2,frame=single,breakindent=.5\textwidth,frame=single,breaklines=true,style=mypython]{#1}} 100 | 101 | \lstnewenvironment{python}[1][]{\lstset{style=mypython}}{} 102 | 103 | \lstdefinestyle{mypythoninline}{ 104 | style=mypython,% 105 | basicstyle=\ttfamily,% 106 | keywordstyle=\color{keywordcolour},% 107 | emphstyle={[7]\color{keywordcolour}},% 108 | emphstyle=\color{exceptioncolour},% 109 | literate=*% 110 | {:}{{\literatecolour:}}{2}% 111 | {=}{{\literatecolour=}}{2}% 112 | {-}{{\literatecolour-}}{2}% 113 | {+}{{\literatecolour+}}{2}% 114 | {*}{{\literatecolour*}}2% 115 | {**}{{\literatecolour{**}}}3% 116 | {/}{{\literatecolour/}}{2}% 117 | {//}{{\literatecolour{//}}}{2}% 118 | {!}{{\literatecolour!}}{2}% 119 | %{(}{{\literatecolour(}}{2}% 120 | %{)}{{\literatecolour)}}{2}% 121 | {[}{{\literatecolour[}}{2}% 122 | {]}{{\literatecolour]}}{2}% 123 | {<}{{\literatecolour<}}{2}% 124 | {<=}{{\literatecolour{<=}}}3% 125 | {>}{{\literatecolour>}}{2}% 126 | {>=}{{\literatecolour{>=}}}3% 127 | {==}{{\literatecolour{==}}}3% 128 | {!=}{{\literatecolour{!=}}}3% 129 | {+=}{{\literatecolour{+=}}}3% 130 | {-=}{{\literatecolour{-=}}}3% 131 | {*=}{{\literatecolour{*=}}}3% 132 | {/=}{{\literatecolour{/=}}}3% 133 | %% emphstyle=\color{blue},% 134 | } 135 | 136 | \newcommand*{\pyth}{\lstinline[style=mypythoninline]} 137 | -------------------------------------------------------------------------------- /python_theme_beamer/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zshicode/LaTeX-Beamer-Nankai/f555b81691867581b7069e2c1192a258813a3938/python_theme_beamer/test.png -------------------------------------------------------------------------------- /report_template/gb7714-2015.cbx: -------------------------------------------------------------------------------- 1 | %% 2 | %% --------------------------------------------------------------- 3 | %% biblatex-gb7714-2015 --- A biblatex implementation of the 4 | %% GBT7714-2015 citation style,numerical sequence 5 | %% Maintained by huzhenzhen 6 | %% history: 7 | %% 2016/05/20 v1.0 2016/10/23 v1.0a 2016/11/11 v1.0b 8 | %% 2016/11/14 v1.0c 2016/11/24 v1.0d 2016/12/07 v1.0e 9 | %% 2017/02/26 v1.0g 2017/04/11 v1.0h 10 | %% 2017/11/21 v1.0i 2018/01/20 v1.0j 11 | %% E-mail: hzzmail@163.com 12 | %% Released under the LaTeX Project Public License v1.3c or later 13 | %% --------------------------------------------------------------- 14 | %% 15 | \ProvidesFile{gb7714-2015.cbx}[2018/01/20 v1.0j biblatex citation style] 16 | 17 | \RequireCitationStyle{numeric-comp} 18 | %\RequireCitationStyle{numeric} 19 | 20 | \ExecuteBibliographyOptions{ 21 | autocite = superscript , 22 | autopunct = true , 23 | sorting = none , 24 | } 25 | 26 | %\DeclareCiteCommand{\cite}[\mkbibparens]{⟨precode⟩}{⟨loopcode⟩}{⟨sepcode⟩}{⟨postcode⟩} 27 | % 28 | \DeclareCiteCommand{\cite}[\mkbibsuperscript] 29 | {[\usebibmacro{cite:init}%直接添加方括号 30 | \usebibmacro{prenote}} 31 | {\usebibmacro{citeindex}% 32 | \usebibmacro{cite:comp}} 33 | {} 34 | {\usebibmacro{cite:dump}% 35 | \usebibmacro{postnote}]} 36 | 37 | %\DeclareCiteCommand{\parencite}[\mkbibsuperscript]%\mkbibbrackets,仍然用上标 38 | % {[\usebibmacro{cite:init}% 39 | % \usebibmacro{prenote}} 40 | % {\usebibmacro{citeindex}% 41 | % \usebibmacro{cite:comp}} 42 | % {} 43 | % {\usebibmacro{cite:dump}% 44 | % \usebibmacro{postnote}]} 45 | 46 | \newbibmacro*{postpages}{% 47 | \iffieldundef{postnote} 48 | {\printfield{pages}} 49 | {\printfield{postnote}}} 50 | 51 | %修改括号外带页码的引用格式 52 | \DeclareFieldFormat{postnote}{#1} 53 | 54 | \DeclareCiteCommand{\pagescite}[\mkbibsuperscript]%\mkbibbrackets,仍然用上标 55 | {[\usebibmacro{cite:init}% 56 | \usebibmacro{prenote}% 57 | } 58 | {\usebibmacro{citeindex}% 59 | \usebibmacro{cite:comp}} 60 | {} 61 | {\usebibmacro{cite:dump}]% 62 | \usebibmacro{postpages}} 63 | 64 | %增加一个命令yearpagescite为与ay样式兼容,命令等同于\pagescite 65 | \DeclareCiteCommand{\yearpagescite}[\mkbibsuperscript]%\mkbibbrackets,仍然用上标 66 | {[\usebibmacro{cite:init}% 67 | \usebibmacro{prenote}% 68 | } 69 | {\usebibmacro{citeindex}% 70 | \usebibmacro{cite:comp}} 71 | {} 72 | {\usebibmacro{cite:dump}]% 73 | \usebibmacro{postpages}} 74 | -------------------------------------------------------------------------------- /report_template/head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zshicode/LaTeX-Beamer-Nankai/f555b81691867581b7069e2c1192a258813a3938/report_template/head.jpg -------------------------------------------------------------------------------- /report_template/nk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zshicode/LaTeX-Beamer-Nankai/f555b81691867581b7069e2c1192a258813a3938/report_template/nk_logo.png -------------------------------------------------------------------------------- /report_template/reference.bib: -------------------------------------------------------------------------------- 1 | @inproceedings{wilson2019learning, 2 | title={Learning to Manipulate Object Collections Using Grounded State Representations}, 3 | author={Matthew Wilson and Tucker Hermans}, 4 | year={2019}, 5 | booktitle={3rd Conference on Robot Learning} 6 | } -------------------------------------------------------------------------------- /report_template/report.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | \providecommand\hyper@newdestlabel[2]{} 3 | \abx@aux@refcontext{none/global//global/global} 4 | \providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} 5 | \HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined 6 | \global\let\oldcontentsline\contentsline 7 | \gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} 8 | \global\let\oldnewlabel\newlabel 9 | \gdef\newlabel#1#2{\newlabelxx{#1}#2} 10 | \gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} 11 | \AtEndDocument{\ifx\hyper@anchor\@undefined 12 | \let\contentsline\oldcontentsline 13 | \let\newlabel\oldnewlabel 14 | \fi} 15 | \fi} 16 | \global\let\hyper@last\relax 17 | \gdef\HyperFirstAtBeginDocument#1{#1} 18 | \providecommand*\HyPL@Entry[1]{} 19 | \HyPL@Entry{0<>} 20 | \@writefile{toc}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } 21 | \@writefile{lof}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } 22 | \@writefile{lot}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } 23 | \HyPL@Entry{1<>} 24 | \HyPL@Entry{4<>} 25 | \@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {chapter}{\numberline {1}课程理解}{1}{chapter.1}\protected@file@percent } 26 | \@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\addvspace {10\p@ }} 27 | \@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\addvspace {10\p@ }} 28 | \@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {1.1}实验目的}{1}{section.1.1}\protected@file@percent } 29 | \@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {chapter}{\numberline {2}知识点总结}{2}{chapter.2}\protected@file@percent } 30 | \@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\addvspace {10\p@ }} 31 | \@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\addvspace {10\p@ }} 32 | \@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {2.1}空间描述与变换}{2}{section.2.1}\protected@file@percent } 33 | \abx@aux@cite{wilson2019learning} 34 | \abx@aux@segm{0}{0}{wilson2019learning} 35 | \@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {chapter}{\numberline {3}总结与展望}{3}{chapter.3}\protected@file@percent } 36 | \@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\addvspace {10\p@ }} 37 | \@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\addvspace {10\p@ }} 38 | \@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {3.1}深度学习方法在机械臂控制中的应用}{3}{section.3.1}\protected@file@percent } 39 | \@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {chapter}{\numberline {A}第一部分}{5}{appendix.A}\protected@file@percent } 40 | \@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\addvspace {10\p@ }} 41 | \@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\addvspace {10\p@ }} 42 | \abx@aux@number{1}{wilson2019learning}{0}{none/global//global/global}{1} 43 | \abx@aux@refcontextdefaultsdone 44 | \abx@aux@defaultrefcontext{0}{wilson2019learning}{none/global//global/global} 45 | \@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {chapter}{\numberline {B}第二部分}{6}{appendix.B}\protected@file@percent } 46 | \@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\addvspace {10\p@ }} 47 | \@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\addvspace {10\p@ }} 48 | \@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {B.1}{\ignorespaces 测试结果}}{6}{table.B.1}\protected@file@percent } 49 | \newlabel{tab:my-table}{{B.1}{6}{测试结果}{table.B.1}{}} 50 | \ttl@finishall 51 | -------------------------------------------------------------------------------- /report_template/report.bbl: -------------------------------------------------------------------------------- 1 | % $ biblatex auxiliary file $ 2 | % $ biblatex bbl format version 3.0 $ 3 | % Do not modify the above lines! 4 | % 5 | % This is an auxiliary file used by the 'biblatex' package. 6 | % This file may safely be deleted. It will be recreated by 7 | % biber as required. 8 | % 9 | \begingroup 10 | \makeatletter 11 | \@ifundefined{ver@biblatex.sty} 12 | {\@latex@error 13 | {Missing 'biblatex' package} 14 | {The bibliography requires the 'biblatex' package.} 15 | \aftergroup\endinput} 16 | {} 17 | \endgroup 18 | 19 | 20 | \refsection{0} 21 | \datalist[entry]{none/global//global/global} 22 | \entry{wilson2019learning}{inproceedings}{} 23 | \name{author}{2}{}{% 24 | {{hash=04edb06b8e1af2834f66b3def5bda252}{% 25 | family={Wilson}, 26 | familyi={W\bibinitperiod}, 27 | given={Matthew}, 28 | giveni={M\bibinitperiod}}}% 29 | {{hash=df5c7be0d6c5dc6449c492d247987636}{% 30 | family={Hermans}, 31 | familyi={H\bibinitperiod}, 32 | given={Tucker}, 33 | giveni={T\bibinitperiod}}}% 34 | } 35 | \strng{namehash}{833c92c687b7b32a122185989f0f741b} 36 | \strng{fullhash}{833c92c687b7b32a122185989f0f741b} 37 | \strng{bibnamehash}{833c92c687b7b32a122185989f0f741b} 38 | \strng{authorbibnamehash}{833c92c687b7b32a122185989f0f741b} 39 | \strng{authornamehash}{833c92c687b7b32a122185989f0f741b} 40 | \strng{authorfullhash}{833c92c687b7b32a122185989f0f741b} 41 | \field{sortinit}{1} 42 | \field{sortinithash}{2174f786c6195e7fe2ee1c229b416e29} 43 | \field{labelnamesource}{author} 44 | \field{labeltitlesource}{title} 45 | \field{booktitle}{3rd Conference on Robot Learning} 46 | \field{title}{Learning to Manipulate Object Collections Using Grounded State Representations} 47 | \field{usera}{C} 48 | \field{userd}{L} 49 | \field{usere}{Matthew Wilson and Tucker Hermans} 50 | \field{userf}{Matthew Wilson and Tucker Hermans} 51 | \field{year}{2019} 52 | \field{dateera}{ce} 53 | \keyw{wilson2019learning} 54 | \endentry 55 | \enddatalist 56 | \endrefsection 57 | \endinput 58 | 59 | -------------------------------------------------------------------------------- /report_template/report.blg: -------------------------------------------------------------------------------- 1 | [0] Config.pm:304> INFO - This is Biber 2.12 2 | [0] Config.pm:307> INFO - Logfile is 'report.blg' 3 | [22] biber-MSWIN32:315> INFO - === 4 | [45] Biber.pm:371> INFO - Reading 'report.bcf' 5 | [120] Biber.pm:889> INFO - Found 1 citekeys in bib section 0 6 | [131] Biber.pm:4093> INFO - Processing section 0 7 | [142] Biber.pm:4254> INFO - Looking for bibtex format file 'reference.bib' for section 0 8 | [144] bibtex.pm:1523> INFO - LaTeX decoding ... 9 | [148] bibtex.pm:1340> INFO - Found BibTeX data source 'reference.bib' 10 | [163] UCollate.pm:68> INFO - Overriding locale 'en-US' defaults 'normalization = NFD' with 'normalization = prenormalized' 11 | [163] UCollate.pm:68> INFO - Overriding locale 'en-US' defaults 'variable = shifted' with 'variable = non-ignorable' 12 | [163] Biber.pm:3921> INFO - Sorting list 'none/global//global/global' of type 'entry' with template 'none' and locale 'en-US' 13 | [163] Biber.pm:3927> INFO - No sort tailoring available for locale 'en-US' 14 | [165] bbl.pm:636> INFO - Writing 'report.bbl' with encoding 'UTF-8' 15 | [165] bbl.pm:739> INFO - Output to report.bbl 16 | -------------------------------------------------------------------------------- /report_template/report.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019/W32TeX) (preloaded format=xelatex 2019.11.29) 17 DEC 2019 22:58 2 | entering extended mode 3 | restricted \write18 enabled. 4 | %&-line parsing enabled. 5 | **report 6 | (./report.tex 7 | LaTeX2e <2018-12-01> 8 | (f:/texlive/2019/texmf-dist/tex/latex/base/report.cls 9 | Document Class: report 2018/09/03 v1.4i Standard LaTeX document class 10 | (f:/texlive/2019/texmf-dist/tex/latex/base/size12.clo 11 | File: size12.clo 2018/09/03 v1.4i Standard LaTeX file (size option) 12 | ) 13 | \c@part=\count80 14 | \c@chapter=\count81 15 | \c@section=\count82 16 | \c@subsection=\count83 17 | \c@subsubsection=\count84 18 | \c@paragraph=\count85 19 | \c@subparagraph=\count86 20 | \c@figure=\count87 21 | \c@table=\count88 22 | \abovecaptionskip=\skip41 23 | \belowcaptionskip=\skip42 24 | \bibindent=\dimen102 25 | ) 26 | (f:/texlive/2019/texmf-dist/tex/latex/geometry/geometry.sty 27 | Package: geometry 2018/04/16 v5.8 Page Geometry 28 | 29 | (f:/texlive/2019/texmf-dist/tex/latex/graphics/keyval.sty 30 | Package: keyval 2014/10/28 v1.15 key=value parser (DPC) 31 | \KV@toks@=\toks14 32 | ) 33 | (f:/texlive/2019/texmf-dist/tex/generic/oberdiek/ifpdf.sty 34 | Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch 35 | ) 36 | (f:/texlive/2019/texmf-dist/tex/generic/oberdiek/ifvtex.sty 37 | Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO) 38 | Package ifvtex Info: VTeX not detected. 39 | ) 40 | (f:/texlive/2019/texmf-dist/tex/generic/ifxetex/ifxetex.sty 41 | Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional 42 | ) 43 | \Gm@cnth=\count89 44 | \Gm@cntv=\count90 45 | \c@Gm@tempcnt=\count91 46 | \Gm@bindingoffset=\dimen103 47 | \Gm@wd@mp=\dimen104 48 | \Gm@odd@mp=\dimen105 49 | \Gm@even@mp=\dimen106 50 | \Gm@layoutwidth=\dimen107 51 | \Gm@layoutheight=\dimen108 52 | \Gm@layouthoffset=\dimen109 53 | \Gm@layoutvoffset=\dimen110 54 | \Gm@dimlist=\toks15 55 | ) 56 | (f:/texlive/2019/texmf-dist/tex/latex/ctex/ctex.sty 57 | (f:/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3.sty 58 | Package: expl3 2019-04-06 L3 programming layer (loader) 59 | 60 | (f:/texlive/2019/texmf-dist/tex/latex/l3kernel/expl3-code.tex 61 | Package: expl3 2019-04-06 L3 programming layer (code) 62 | \c_max_int=\count92 63 | \l_tmpa_int=\count93 64 | \l_tmpb_int=\count94 65 | \g_tmpa_int=\count95 66 | \g_tmpb_int=\count96 67 | \g__kernel_prg_map_int=\count97 68 | \c__ior_term_ior=\count98 69 | \c_log_iow=\count99 70 | \l_iow_line_count_int=\count100 71 | \l__iow_line_target_int=\count101 72 | \l__iow_one_indent_int=\count102 73 | \l__iow_indent_int=\count103 74 | \c_zero_dim=\dimen111 75 | \c_max_dim=\dimen112 76 | \l_tmpa_dim=\dimen113 77 | \l_tmpb_dim=\dimen114 78 | \g_tmpa_dim=\dimen115 79 | \g_tmpb_dim=\dimen116 80 | \c_zero_skip=\skip43 81 | \c_max_skip=\skip44 82 | \l_tmpa_skip=\skip45 83 | \l_tmpb_skip=\skip46 84 | \g_tmpa_skip=\skip47 85 | \g_tmpb_skip=\skip48 86 | \c_zero_muskip=\muskip10 87 | \c_max_muskip=\muskip11 88 | \l_tmpa_muskip=\muskip12 89 | \l_tmpb_muskip=\muskip13 90 | \g_tmpa_muskip=\muskip14 91 | \g_tmpb_muskip=\muskip15 92 | \l_keys_choice_int=\count104 93 | \l__intarray_loop_int=\count105 94 | \c__intarray_sp_dim=\dimen117 95 | \g__intarray_font_int=\count106 96 | \c__fp_leading_shift_int=\count107 97 | \c__fp_middle_shift_int=\count108 98 | \c__fp_trailing_shift_int=\count109 99 | \c__fp_big_leading_shift_int=\count110 100 | \c__fp_big_middle_shift_int=\count111 101 | \c__fp_big_trailing_shift_int=\count112 102 | \c__fp_Bigg_leading_shift_int=\count113 103 | \c__fp_Bigg_middle_shift_int=\count114 104 | \c__fp_Bigg_trailing_shift_int=\count115 105 | \g__fp_array_int=\count116 106 | \l__fp_array_loop_int=\count117 107 | \l__sort_length_int=\count118 108 | \l__sort_min_int=\count119 109 | \l__sort_top_int=\count120 110 | \l__sort_max_int=\count121 111 | \l__sort_true_max_int=\count122 112 | \l__sort_block_int=\count123 113 | \l__sort_begin_int=\count124 114 | \l__sort_end_int=\count125 115 | \l__sort_A_int=\count126 116 | \l__sort_B_int=\count127 117 | \l__sort_C_int=\count128 118 | \l__tl_analysis_normal_int=\count129 119 | \l__tl_analysis_index_int=\count130 120 | \l__tl_analysis_nesting_int=\count131 121 | \l__tl_analysis_type_int=\count132 122 | \l__regex_internal_a_int=\count133 123 | \l__regex_internal_b_int=\count134 124 | \l__regex_internal_c_int=\count135 125 | \l__regex_balance_int=\count136 126 | \l__regex_group_level_int=\count137 127 | \l__regex_mode_int=\count138 128 | \c__regex_cs_in_class_mode_int=\count139 129 | \c__regex_cs_mode_int=\count140 130 | \l__regex_catcodes_int=\count141 131 | \l__regex_default_catcodes_int=\count142 132 | \c__regex_catcode_L_int=\count143 133 | \c__regex_catcode_O_int=\count144 134 | \c__regex_catcode_A_int=\count145 135 | \c__regex_all_catcodes_int=\count146 136 | \l__regex_show_lines_int=\count147 137 | \l__regex_min_state_int=\count148 138 | \l__regex_max_state_int=\count149 139 | \l__regex_left_state_int=\count150 140 | \l__regex_right_state_int=\count151 141 | \l__regex_capturing_group_int=\count152 142 | \l__regex_min_pos_int=\count153 143 | \l__regex_max_pos_int=\count154 144 | \l__regex_curr_pos_int=\count155 145 | \l__regex_start_pos_int=\count156 146 | \l__regex_success_pos_int=\count157 147 | \l__regex_curr_char_int=\count158 148 | \l__regex_curr_catcode_int=\count159 149 | \l__regex_last_char_int=\count160 150 | \l__regex_case_changed_char_int=\count161 151 | \l__regex_curr_state_int=\count162 152 | \l__regex_step_int=\count163 153 | \l__regex_min_active_int=\count164 154 | \l__regex_max_active_int=\count165 155 | \l__regex_replacement_csnames_int=\count166 156 | \l__regex_match_count_int=\count167 157 | \l__regex_min_submatch_int=\count168 158 | \l__regex_submatch_int=\count169 159 | \l__regex_zeroth_submatch_int=\count170 160 | \g__regex_trace_regex_int=\count171 161 | \c_empty_box=\box27 162 | \l_tmpa_box=\box28 163 | \l_tmpb_box=\box29 164 | \g_tmpa_box=\box30 165 | \g_tmpb_box=\box31 166 | \l__box_top_dim=\dimen118 167 | \l__box_bottom_dim=\dimen119 168 | \l__box_left_dim=\dimen120 169 | \l__box_right_dim=\dimen121 170 | \l__box_top_new_dim=\dimen122 171 | \l__box_bottom_new_dim=\dimen123 172 | \l__box_left_new_dim=\dimen124 173 | \l__box_right_new_dim=\dimen125 174 | \l__box_internal_box=\box32 175 | \l__coffin_internal_box=\box33 176 | \l__coffin_internal_dim=\dimen126 177 | \l__coffin_offset_x_dim=\dimen127 178 | \l__coffin_offset_y_dim=\dimen128 179 | \l__coffin_x_dim=\dimen129 180 | \l__coffin_y_dim=\dimen130 181 | \l__coffin_x_prime_dim=\dimen131 182 | \l__coffin_y_prime_dim=\dimen132 183 | \c_empty_coffin=\box34 184 | \l__coffin_aligned_coffin=\box35 185 | \l__coffin_aligned_internal_coffin=\box36 186 | \l_tmpa_coffin=\box37 187 | \l_tmpb_coffin=\box38 188 | \g_tmpa_coffin=\box39 189 | \g_tmpb_coffin=\box40 190 | \l__coffin_bounding_shift_dim=\dimen133 191 | \l__coffin_left_corner_dim=\dimen134 192 | \l__coffin_right_corner_dim=\dimen135 193 | \l__coffin_bottom_corner_dim=\dimen136 194 | \l__coffin_top_corner_dim=\dimen137 195 | \l__coffin_scaled_total_height_dim=\dimen138 196 | \l__coffin_scaled_width_dim=\dimen139 197 | \c__coffin_empty_coffin=\box41 198 | \l__coffin_display_coffin=\box42 199 | \l__coffin_display_coord_coffin=\box43 200 | \l__coffin_display_pole_coffin=\box44 201 | \l__coffin_display_offset_dim=\dimen140 202 | \l__coffin_display_x_dim=\dimen141 203 | \l__coffin_display_y_dim=\dimen142 204 | \g__file_internal_ior=\read1 205 | \l__seq_internal_a_int=\count172 206 | \l__seq_internal_b_int=\count173 207 | \c__deprecation_minus_one=\count174 208 | ) 209 | (f:/texlive/2019/texmf-dist/tex/latex/l3kernel/l3xdvipdfmx.def 210 | File: l3xdvipdfmx.def 2019-04-06 v L3 Experimental driver: xdvipdfmx 211 | \g__driver_image_int=\count175 212 | \g__driver_pdf_object_int=\count176 213 | )) 214 | Package: ctex 2019/04/07 v2.4.15 Chinese adapter in LaTeX (CTEX) 215 | 216 | (f:/texlive/2019/texmf-dist/tex/latex/l3packages/xparse/xparse.sty 217 | Package: xparse 2019-03-05 L3 Experimental document command parser 218 | \l__xparse_current_arg_int=\count177 219 | \g__xparse_grabber_int=\count178 220 | \l__xparse_m_args_int=\count179 221 | \l__xparse_v_nesting_int=\count180 222 | ) 223 | (f:/texlive/2019/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty 224 | Package: l3keys2e 2019-03-05 LaTeX2e option processing using LaTeX3 keys 225 | ) 226 | (f:/texlive/2019/texmf-dist/tex/latex/ctex/ctexhook.sty 227 | Package: ctexhook 2019/04/07 v2.4.15 Document and package hooks (CTEX) 228 | ) 229 | (f:/texlive/2019/texmf-dist/tex/latex/ctex/ctexpatch.sty 230 | Package: ctexpatch 2019/04/07 v2.4.15 Patching commands (CTEX) 231 | ) 232 | (f:/texlive/2019/texmf-dist/tex/latex/base/fix-cm.sty 233 | Package: fix-cm 2015/01/14 v1.1t fixes to LaTeX 234 | 235 | (f:/texlive/2019/texmf-dist/tex/latex/base/ts1enc.def 236 | File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file 237 | )) 238 | (f:/texlive/2019/texmf-dist/tex/latex/ms/everysel.sty 239 | Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS) 240 | ) 241 | \l__ctex_tmp_int=\count181 242 | \l__ctex_tmp_box=\box45 243 | \l__ctex_tmp_dim=\dimen143 244 | \g__ctex_section_depth_int=\count182 245 | \g__ctex_font_size_int=\count183 246 | 247 | (f:/texlive/2019/texmf-dist/tex/latex/ctex/config/ctexopts.cfg 248 | File: ctexopts.cfg 2019/04/07 v2.4.15 Option configuration file (CTEX) 249 | ) 250 | (f:/texlive/2019/texmf-dist/tex/latex/ctex/engine/ctex-engine-xetex.def 251 | File: ctex-engine-xetex.def 2019/04/07 v2.4.15 XeLaTeX adapter (CTEX) 252 | 253 | (f:/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.sty 254 | Package: xeCJK 2019/04/07 v3.7.2 Typesetting CJK scripts with XeLaTeX 255 | 256 | (f:/texlive/2019/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.sty 257 | Package: xtemplate 2019-03-05 L3 Experimental prototype document functions 258 | \l__xtemplate_tmp_dim=\dimen144 259 | \l__xtemplate_tmp_int=\count184 260 | \l__xtemplate_tmp_muskip=\muskip16 261 | \l__xtemplate_tmp_skip=\skip49 262 | ) 263 | \l__xeCJK_tmp_int=\count185 264 | \l__xeCJK_tmp_box=\box46 265 | \l__xeCJK_tmp_dim=\dimen145 266 | \l__xeCJK_tmp_skip=\skip50 267 | \g__xeCJK_space_factor_int=\count186 268 | \l__xeCJK_begin_int=\count187 269 | \l__xeCJK_end_int=\count188 270 | \c__xeCJK_CJK_class_int=\XeTeXcharclass1 271 | \c__xeCJK_FullLeft_class_int=\XeTeXcharclass2 272 | \c__xeCJK_FullRight_class_int=\XeTeXcharclass3 273 | \c__xeCJK_HalfLeft_class_int=\XeTeXcharclass4 274 | \c__xeCJK_HalfRight_class_int=\XeTeXcharclass5 275 | \c__xeCJK_NormalSpace_class_int=\XeTeXcharclass6 276 | \c__xeCJK_CM_class_int=\XeTeXcharclass7 277 | \c__xeCJK_HangulJamo_class_int=\XeTeXcharclass8 278 | \l__xeCJK_last_skip=\skip51 279 | \g__xeCJK_node_int=\count189 280 | \c__xeCJK_CJK_node_dim=\dimen146 281 | \c__xeCJK_CJK-space_node_dim=\dimen147 282 | \c__xeCJK_default_node_dim=\dimen148 283 | \c__xeCJK_default-space_node_dim=\dimen149 284 | \c__xeCJK_CJK-widow_node_dim=\dimen150 285 | \c__xeCJK_normalspace_node_dim=\dimen151 286 | \l__xeCJK_ccglue_skip=\skip52 287 | \l__xeCJK_ecglue_skip=\skip53 288 | \l__xeCJK_punct_kern_skip=\skip54 289 | \l__xeCJK_last_penalty_int=\count190 290 | \l__xeCJK_last_bound_dim=\dimen152 291 | \l__xeCJK_last_kern_dim=\dimen153 292 | \l__xeCJK_widow_penalty_int=\count191 293 | 294 | Package xtemplate Info: Declaring object type 'xeCJK/punctuation' taking 0 295 | (xtemplate) argument(s) on line 2352. 296 | 297 | \l__xeCJK_fixed_punct_width_dim=\dimen154 298 | \l__xeCJK_mixed_punct_width_dim=\dimen155 299 | \l__xeCJK_middle_punct_width_dim=\dimen156 300 | \l__xeCJK_fixed_margin_width_dim=\dimen157 301 | \l__xeCJK_mixed_margin_width_dim=\dimen158 302 | \l__xeCJK_middle_margin_width_dim=\dimen159 303 | \l__xeCJK_bound_punct_width_dim=\dimen160 304 | \l__xeCJK_bound_margin_width_dim=\dimen161 305 | \l__xeCJK_margin_minimum_dim=\dimen162 306 | \l__xeCJK_kerning_total_width_dim=\dimen163 307 | \l__xeCJK_same_align_margin_dim=\dimen164 308 | \l__xeCJK_different_align_margin_dim=\dimen165 309 | \l__xeCJK_kerning_margin_width_dim=\dimen166 310 | \l__xeCJK_kerning_margin_minimum_dim=\dimen167 311 | \l__xeCJK_bound_dim=\dimen168 312 | \l__xeCJK_reverse_bound_dim=\dimen169 313 | \l__xeCJK_minimum_bound_dim=\dimen170 314 | \l__xeCJK_kerning_margin_dim=\dimen171 315 | \l__xeCJK_original_margin_dim=\dimen172 316 | \g__xeCJK_family_int=\count192 317 | \l__xeCJK_fam_int=\count193 318 | \g__xeCJK_fam_allocation_int=\count194 319 | \l__xeCJK_verb_case_int=\count195 320 | \l__xeCJK_verb_exspace_skip=\skip55 321 | 322 | (f:/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.sty 323 | Package: fontspec 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTeX 324 | 325 | (f:/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty 326 | Package: fontspec-xetex 2019/03/15 v2.7c Font selection for XeLaTeX and LuaLaTe 327 | X 328 | \l__fontspec_script_int=\count196 329 | \l__fontspec_language_int=\count197 330 | \l__fontspec_strnum_int=\count198 331 | \l__fontspec_tmp_int=\count199 332 | \l__fontspec_tmpa_int=\count266 333 | \l__fontspec_tmpb_int=\count267 334 | \l__fontspec_tmpc_int=\count268 335 | \l__fontspec_em_int=\count269 336 | \l__fontspec_emdef_int=\count270 337 | \l__fontspec_strong_int=\count271 338 | \l__fontspec_strongdef_int=\count272 339 | \l__fontspec_tmpa_dim=\dimen173 340 | \l__fontspec_tmpb_dim=\dimen174 341 | \l__fontspec_tmpc_dim=\dimen175 342 | 343 | (f:/texlive/2019/texmf-dist/tex/latex/base/fontenc.sty 344 | Package: fontenc 2018/08/11 v2.0j Standard LaTeX package 345 | 346 | (f:/texlive/2019/texmf-dist/tex/latex/base/tuenc.def 347 | File: tuenc.def 2018/08/11 v2.0j Standard LaTeX file 348 | LaTeX Font Info: Redeclaring font encoding TU on input line 82. 349 | )) 350 | (f:/texlive/2019/texmf-dist/tex/latex/fontspec/fontspec.cfg) 351 | LaTeX Info: Redefining \itshape on input line 4051. 352 | LaTeX Info: Redefining \slshape on input line 4056. 353 | LaTeX Info: Redefining \scshape on input line 4061. 354 | LaTeX Info: Redefining \upshape on input line 4066. 355 | LaTeX Info: Redefining \em on input line 4096. 356 | LaTeX Info: Redefining \emph on input line 4121. 357 | )) 358 | (f:/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK.cfg 359 | File: xeCJK.cfg 2019/04/07 v3.7.2 Configuration file for xeCJK package 360 | )) 361 | (f:/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJKfntef.sty 362 | Package: xeCJKfntef 2019/04/07 v3.7.2 xeCJK font effect 363 | 364 | (f:/texlive/2019/texmf-dist/tex/generic/ulem/ulem.sty 365 | \UL@box=\box47 366 | \UL@hyphenbox=\box48 367 | \UL@skip=\skip56 368 | \UL@hook=\toks16 369 | \UL@height=\dimen176 370 | \UL@pe=\count273 371 | \UL@pixel=\dimen177 372 | \ULC@box=\box49 373 | Package: ulem 2012/05/18 374 | \ULdepth=\dimen178 375 | ) 376 | (f:/texlive/2019/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty 377 | Package: CJKfntef 2015/04/18 4.8.4 378 | \CJK@fntefSkip=\skip57 379 | \CJK@nest=\count274 380 | \CJK@fntefDimen=\dimen179 381 | \CJK@underdotBox=\box50 382 | \CJK@ULbox=\box51 383 | \CJK@underanyskip=\dimen180 384 | ) 385 | \l__xeCJK_space_skip=\skip58 386 | \c__xeCJK_ulem-begin_node_dim=\dimen181 387 | \c__xeCJK_null_box=\box52 388 | \l__xeCJK_fntef_box=\box53 389 | \l__xeCJK_under_symbol_box=\box54 390 | \c__xeCJK_filll_skip=\skip59 391 | ) 392 | \ccwd=\dimen182 393 | \l__ctex_ccglue_skip=\skip60 394 | ) 395 | \l__ctex_ziju_dim=\dimen183 396 | 397 | (f:/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber.sty 398 | Package: zhnumber 2019/04/07 v2.7 Typesetting numbers with Chinese glyphs 399 | \l__zhnum_scale_int=\count275 400 | 401 | (f:/texlive/2019/texmf-dist/tex/latex/zhnumber/zhnumber-utf8.cfg 402 | File: zhnumber-utf8.cfg 2019/04/07 v2.7 Chinese numerals with UTF8 encoding 403 | )) 404 | (f:/texlive/2019/texmf-dist/tex/latex/ctex/scheme/ctex-scheme-chinese.def 405 | File: ctex-scheme-chinese.def 2019/04/07 v2.4.15 Chinese scheme for generic (CT 406 | EX) 407 | 408 | (f:/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex-name-utf8.cfg 409 | File: ctex-name-utf8.cfg 2019/04/07 v2.4.15 Caption with encoding UTF8 (CTEX) 410 | )) 411 | (f:/texlive/2019/texmf-dist/tex/latex/tools/indentfirst.sty 412 | Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC) 413 | ) 414 | (f:/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-windows.def 415 | File: ctex-fontset-windows.def 2019/04/07 v2.4.15 Windows fonts definition (CTE 416 | X) 417 | 418 | (f:/texlive/2019/texmf-dist/tex/latex/ctex/fontset/ctex-fontset-windowsnew.def 419 | File: ctex-fontset-windowsnew.def 2019/04/07 v2.4.15 Windows fonts definition f 420 | or Vista or later version (CTEX) 421 | 422 | Package fontspec Info: Could not resolve font "KaiTi/B" (it probably doesn't 423 | (fontspec) exist). 424 | 425 | 426 | Package fontspec Info: Could not resolve font "SimHei/I" (it probably doesn't 427 | (fontspec) exist). 428 | 429 | 430 | Package fontspec Info: Could not resolve font "SimSun/BI" (it probably doesn't 431 | (fontspec) exist). 432 | 433 | 434 | Package fontspec Info: Font family 'SimSun(0)' created for font 'SimSun' with 435 | (fontspec) options 436 | (fontspec) [Script={CJK},BoldFont={SimHei},ItalicFont={KaiTi}]. 437 | (fontspec) 438 | (fontspec) This font family consists of the following NFSS 439 | (fontspec) series/shapes: 440 | (fontspec) 441 | (fontspec) - 'normal' (m/n) with NFSS spec.: 442 | (fontspec) <->"SimSun/OT:script=hani;language=DFLT;" 443 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 444 | (fontspec) - 'bold' (bx/n) with NFSS spec.: 445 | (fontspec) <->"SimHei/OT:script=hani;language=DFLT;" 446 | (fontspec) - 'bold small caps' (bx/sc) with NFSS spec.: 447 | (fontspec) - 'italic' (m/it) with NFSS spec.: 448 | (fontspec) <->"KaiTi/OT:script=hani;language=DFLT;" 449 | (fontspec) - 'italic small caps' (m/itsc) with NFSS spec.: 450 | 451 | ))) (f:/texlive/2019/texmf-dist/tex/latex/ctex/config/ctex.cfg 452 | File: ctex.cfg 2019/04/07 v2.4.15 Configuration file (CTEX) 453 | ) 454 | (f:/texlive/2019/texmf-dist/tex/latex/comment/comment.sty 455 | \CommentStream=\write3 456 | 457 | Excluding comment 'comment') 458 | (f:/texlive/2019/texmf-dist/tex/latex/setspace/setspace.sty 459 | Package: setspace 2011/12/19 v6.7a set line spacing 460 | ) 461 | (f:/texlive/2019/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty 462 | Package: fancyhdr 2019/01/31 v3.10 Extensive control of page headers and footer 463 | s 464 | \f@nch@headwidth=\skip61 465 | \f@nch@O@elh=\skip62 466 | \f@nch@O@erh=\skip63 467 | \f@nch@O@olh=\skip64 468 | \f@nch@O@orh=\skip65 469 | \f@nch@O@elf=\skip66 470 | \f@nch@O@erf=\skip67 471 | \f@nch@O@olf=\skip68 472 | \f@nch@O@orf=\skip69 473 | ) 474 | (f:/texlive/2019/texmf-dist/tex/latex/graphics/graphicx.sty 475 | Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) 476 | 477 | (f:/texlive/2019/texmf-dist/tex/latex/graphics/graphics.sty 478 | Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) 479 | 480 | (f:/texlive/2019/texmf-dist/tex/latex/graphics/trig.sty 481 | Package: trig 2016/01/03 v1.10 sin cos tan (DPC) 482 | ) 483 | (f:/texlive/2019/texmf-dist/tex/latex/graphics-cfg/graphics.cfg 484 | File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration 485 | ) 486 | Package graphics Info: Driver file: xetex.def on input line 99. 487 | 488 | (f:/texlive/2019/texmf-dist/tex/latex/graphics-def/xetex.def 489 | File: xetex.def 2017/06/24 v5.0h Graphics/color driver for xetex 490 | )) 491 | \Gin@req@height=\dimen184 492 | \Gin@req@width=\dimen185 493 | ) 494 | (f:/texlive/2019/texmf-dist/tex/latex/wrapfig/wrapfig.sty 495 | \wrapoverhang=\dimen186 496 | \WF@size=\dimen187 497 | \c@WF@wrappedlines=\count276 498 | \WF@box=\box55 499 | \WF@everypar=\toks17 500 | Package: wrapfig 2003/01/31 v 3.6 501 | ) 502 | (f:/texlive/2019/texmf-dist/tex/latex/subfigure/subfigure.sty 503 | Package: subfigure 2002/03/15 v2.1.5 subfigure package 504 | \subfigtopskip=\skip70 505 | \subfigcapskip=\skip71 506 | \subfigcaptopadj=\dimen188 507 | \subfigbottomskip=\skip72 508 | \subfigcapmargin=\dimen189 509 | \subfiglabelskip=\skip73 510 | \c@subfigure=\count277 511 | \c@lofdepth=\count278 512 | \c@subtable=\count279 513 | \c@lotdepth=\count280 514 | 515 | **************************************** 516 | * Local config file subfigure.cfg used * 517 | **************************************** 518 | (f:/texlive/2019/texmf-dist/tex/latex/subfigure/subfigure.cfg) 519 | \subfig@top=\skip74 520 | \subfig@bottom=\skip75 521 | ) 522 | (f:/texlive/2019/texmf-dist/tex/latex/tools/array.sty 523 | Package: array 2018/12/30 v2.4k Tabular extension package (FMi) 524 | \col@sep=\dimen190 525 | \ar@mcellbox=\box56 526 | \extrarowheight=\dimen191 527 | \NC@list=\toks18 528 | \extratabsurround=\skip76 529 | \backup@length=\skip77 530 | \ar@cellbox=\box57 531 | ) 532 | (f:/texlive/2019/texmf-dist/tex/latex/titlesec/titlesec.sty 533 | Package: titlesec 2016/03/21 v2.10.2 Sectioning titles 534 | \ttl@box=\box58 535 | \beforetitleunit=\skip78 536 | \aftertitleunit=\skip79 537 | \ttl@plus=\dimen192 538 | \ttl@minus=\dimen193 539 | \ttl@toksa=\toks19 540 | \titlewidth=\dimen194 541 | \titlewidthlast=\dimen195 542 | \titlewidthfirst=\dimen196 543 | ) 544 | (f:/texlive/2019/texmf-dist/tex/latex/titlesec/titletoc.sty 545 | Package: titletoc 2011/12/15 v1.6 TOC entries 546 | \ttl@leftsep=\dimen197 547 | ) 548 | (f:/texlive/2019/texmf-dist/tex/latex/appendix/appendix.sty 549 | Package: appendix 2009/09/02 v1.2b extra appendix facilities 550 | \c@@pps=\count281 551 | \c@@ppsavesec=\count282 552 | \c@@ppsaveapp=\count283 553 | ) 554 | (f:/texlive/2019/texmf-dist/tex/latex/biblatex/biblatex.sty 555 | Package: biblatex 2018/11/02 v3.12 programmable bibliographies (PK/MW) 556 | 557 | (f:/texlive/2019/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty 558 | Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO 559 | ) 560 | 561 | (f:/texlive/2019/texmf-dist/tex/generic/oberdiek/infwarerr.sty 562 | Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO) 563 | ) 564 | (f:/texlive/2019/texmf-dist/tex/generic/oberdiek/ifluatex.sty 565 | Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO) 566 | Package ifluatex Info: LuaTeX not detected. 567 | ) 568 | (f:/texlive/2019/texmf-dist/tex/generic/oberdiek/ltxcmds.sty 569 | Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) 570 | ) 571 | Package pdftexcmds Info: LuaTeX not detected. 572 | Package pdftexcmds Info: pdfTeX >= 1.30 not detected. 573 | Package pdftexcmds Info: \pdf@primitive is available. 574 | Package pdftexcmds Info: \pdf@ifprimitive is available. 575 | Package pdftexcmds Info: \pdfdraftmode not found. 576 | ) 577 | (f:/texlive/2019/texmf-dist/tex/latex/etoolbox/etoolbox.sty 578 | Package: etoolbox 2018/08/19 v2.5f e-TeX tools for LaTeX (JAW) 579 | \etb@tempcnta=\count284 580 | ) 581 | (f:/texlive/2019/texmf-dist/tex/latex/oberdiek/kvoptions.sty 582 | Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO) 583 | 584 | (f:/texlive/2019/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty 585 | Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO) 586 | 587 | (f:/texlive/2019/texmf-dist/tex/generic/oberdiek/etexcmds.sty 588 | Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) 589 | ))) 590 | (f:/texlive/2019/texmf-dist/tex/latex/logreq/logreq.sty 591 | Package: logreq 2010/08/04 v1.0 xml request logger 592 | \lrq@indent=\count285 593 | 594 | (f:/texlive/2019/texmf-dist/tex/latex/logreq/logreq.def 595 | File: logreq.def 2010/08/04 v1.0 logreq spec v1.0 596 | )) 597 | (f:/texlive/2019/texmf-dist/tex/latex/base/ifthen.sty 598 | Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) 599 | ) 600 | (f:/texlive/2019/texmf-dist/tex/latex/url/url.sty 601 | \Urlmuskip=\muskip17 602 | Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. 603 | ) 604 | \c@tabx@nest=\count286 605 | \c@listtotal=\count287 606 | \c@listcount=\count288 607 | \c@liststart=\count289 608 | \c@liststop=\count290 609 | \c@citecount=\count291 610 | \c@citetotal=\count292 611 | \c@multicitecount=\count293 612 | \c@multicitetotal=\count294 613 | \c@instcount=\count295 614 | \c@maxnames=\count296 615 | \c@minnames=\count297 616 | \c@maxitems=\count298 617 | \c@minitems=\count299 618 | \c@citecounter=\count300 619 | \c@maxcitecounter=\count301 620 | \c@savedcitecounter=\count302 621 | \c@uniquelist=\count303 622 | \c@uniquename=\count304 623 | \c@refsection=\count305 624 | \c@refsegment=\count306 625 | \c@maxextratitle=\count307 626 | \c@maxextratitleyear=\count308 627 | \c@maxextraname=\count309 628 | \c@maxextradate=\count310 629 | \c@maxextraalpha=\count311 630 | \c@abbrvpenalty=\count312 631 | \c@highnamepenalty=\count313 632 | \c@lownamepenalty=\count314 633 | \c@maxparens=\count315 634 | \c@parenlevel=\count316 635 | \blx@tempcnta=\count317 636 | \blx@tempcntb=\count318 637 | \blx@tempcntc=\count319 638 | \blx@maxsection=\count320 639 | \blx@maxsegment@0=\count321 640 | \blx@notetype=\count322 641 | \blx@parenlevel@text=\count323 642 | \blx@parenlevel@foot=\count324 643 | \blx@sectionciteorder@0=\count325 644 | \blx@entrysetcounter=\count326 645 | \labelnumberwidth=\skip80 646 | \labelalphawidth=\skip81 647 | \biblabelsep=\skip82 648 | \bibitemsep=\skip83 649 | \bibnamesep=\skip84 650 | \bibinitsep=\skip85 651 | \bibparsep=\skip86 652 | \bibhang=\skip87 653 | \blx@bcfin=\read2 654 | \blx@bcfout=\write4 655 | \c@mincomprange=\count327 656 | \c@maxcomprange=\count328 657 | \c@mincompwidth=\count329 658 | Package biblatex Info: Trying to load biblatex default data model... 659 | Package biblatex Info: ... file 'blx-dm.def' found. 660 | 661 | (f:/texlive/2019/texmf-dist/tex/latex/biblatex/blx-dm.def 662 | File: blx-dm.def 2018/11/02 v3.12 biblatex localization (PK/MW) 663 | ) 664 | Package biblatex Info: Trying to load biblatex style data model... 665 | Package biblatex Info: ... file 'gb7714-2015.dbx' not found. 666 | Package biblatex Info: Trying to load biblatex custom data model... 667 | Package biblatex Info: ... file 'biblatex-dm.cfg' not found. 668 | \c@afterword=\count330 669 | \c@savedafterword=\count331 670 | \c@annotator=\count332 671 | \c@savedannotator=\count333 672 | \c@author=\count334 673 | \c@savedauthor=\count335 674 | \c@bookauthor=\count336 675 | \c@savedbookauthor=\count337 676 | \c@commentator=\count338 677 | \c@savedcommentator=\count339 678 | \c@editor=\count340 679 | \c@savededitor=\count341 680 | \c@editora=\count342 681 | \c@savededitora=\count343 682 | \c@editorb=\count344 683 | \c@savededitorb=\count345 684 | \c@editorc=\count346 685 | \c@savededitorc=\count347 686 | \c@foreword=\count348 687 | \c@savedforeword=\count349 688 | \c@holder=\count350 689 | \c@savedholder=\count351 690 | \c@introduction=\count352 691 | \c@savedintroduction=\count353 692 | \c@namea=\count354 693 | \c@savednamea=\count355 694 | \c@nameb=\count356 695 | \c@savednameb=\count357 696 | \c@namec=\count358 697 | \c@savednamec=\count359 698 | \c@translator=\count360 699 | \c@savedtranslator=\count361 700 | \c@shortauthor=\count362 701 | \c@savedshortauthor=\count363 702 | \c@shorteditor=\count364 703 | \c@savedshorteditor=\count365 704 | \c@labelname=\count366 705 | \c@savedlabelname=\count367 706 | \c@institution=\count368 707 | \c@savedinstitution=\count369 708 | \c@lista=\count370 709 | \c@savedlista=\count371 710 | \c@listb=\count372 711 | \c@savedlistb=\count373 712 | \c@listc=\count374 713 | \c@savedlistc=\count375 714 | \c@listd=\count376 715 | \c@savedlistd=\count377 716 | \c@liste=\count378 717 | \c@savedliste=\count379 718 | \c@listf=\count380 719 | \c@savedlistf=\count381 720 | \c@location=\count382 721 | \c@savedlocation=\count383 722 | \c@organization=\count384 723 | \c@savedorganization=\count385 724 | \c@origlocation=\count386 725 | \c@savedoriglocation=\count387 726 | \c@origpublisher=\count388 727 | \c@savedorigpublisher=\count389 728 | \c@publisher=\count390 729 | \c@savedpublisher=\count391 730 | \c@language=\count392 731 | \c@savedlanguage=\count393 732 | \c@origlanguage=\count394 733 | \c@savedoriglanguage=\count395 734 | \c@pageref=\count396 735 | \c@savedpageref=\count397 736 | \shorthandwidth=\skip88 737 | \shortjournalwidth=\skip89 738 | \shortserieswidth=\skip90 739 | \shorttitlewidth=\skip91 740 | \shortauthorwidth=\skip92 741 | \shorteditorwidth=\skip93 742 | \locallabelnumberwidth=\skip94 743 | \locallabelalphawidth=\skip95 744 | \localshorthandwidth=\skip96 745 | \localshortjournalwidth=\skip97 746 | \localshortserieswidth=\skip98 747 | \localshorttitlewidth=\skip99 748 | \localshortauthorwidth=\skip100 749 | \localshorteditorwidth=\skip101 750 | Package biblatex Info: Trying to load enhanced support for Unicode engines... 751 | Package biblatex Info: ... file 'blx-unicode.def' found. 752 | 753 | (f:/texlive/2019/texmf-dist/tex/latex/biblatex/blx-unicode.def) 754 | Package biblatex Info: Trying to load compatibility code... 755 | Package biblatex Info: ... file 'blx-compat.def' found. 756 | 757 | (f:/texlive/2019/texmf-dist/tex/latex/biblatex/blx-compat.def 758 | File: blx-compat.def 2018/11/02 v3.12 biblatex compatibility (PK/MW) 759 | ) 760 | Package biblatex Info: Trying to load generic definitions... 761 | Package biblatex Info: ... file 'biblatex.def' found. 762 | 763 | (f:/texlive/2019/texmf-dist/tex/latex/biblatex/biblatex.def 764 | File: biblatex.def 2018/11/02 v3.12 biblatex compatibility (PK/MW) 765 | \c@textcitecount=\count398 766 | \c@textcitetotal=\count399 767 | \c@textcitemaxnames=\count400 768 | \c@biburlnumpenalty=\count401 769 | \c@biburlucpenalty=\count402 770 | \c@biburllcpenalty=\count403 771 | \c@smartand=\count404 772 | ) 773 | Package biblatex Info: Trying to load bibliography style 'gb7714-2015'... 774 | Package biblatex Info: ... file 'gb7714-2015.bbx' found. 775 | (./gb7714-2015.bbx 776 | File: gb7714-2015.bbx 2018/01/20 v1.0j biblatex bibliography style 777 | Package biblatex Info: Trying to load bibliography style 'numeric-comp'... 778 | Package biblatex Info: ... file 'numeric-comp.bbx' found. 779 | (f:/texlive/2019/texmf-dist/tex/latex/biblatex/bbx/numeric-comp.bbx 780 | File: numeric-comp.bbx 2018/11/02 v3.12 biblatex bibliography style (PK/MW) 781 | Package biblatex Info: Trying to load bibliography style 'numeric'... 782 | Package biblatex Info: ... file 'numeric.bbx' found. 783 | 784 | (f:/texlive/2019/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx 785 | File: numeric.bbx 2018/11/02 v3.12 biblatex bibliography style (PK/MW) 786 | Package biblatex Info: Trying to load bibliography style 'standard'... 787 | Package biblatex Info: ... file 'standard.bbx' found. 788 | 789 | (f:/texlive/2019/texmf-dist/tex/latex/biblatex/bbx/standard.bbx 790 | File: standard.bbx 2018/11/02 v3.12 biblatex bibliography style (PK/MW) 791 | \c@bbx:relatedcount=\count405 792 | \c@bbx:relatedtotal=\count406 793 | ))) 794 | (f:/texlive/2019/texmf-dist/tex/generic/xstring/xstring.sty 795 | (f:/texlive/2019/texmf-dist/tex/generic/xstring/xstring.tex 796 | \integerpart=\count407 797 | Invalid UTF-8 byte or sequence at line 35 replaced by U+FFFD. 798 | \decimalpart=\count408 799 | Invalid UTF-8 byte or sequence at line 79 replaced by U+FFFD. 800 | Invalid UTF-8 byte or sequence at line 79 replaced by U+FFFD. 801 | Invalid UTF-8 byte or sequence at line 83 replaced by U+FFFD. 802 | Invalid UTF-8 byte or sequence at line 86 replaced by U+FFFD. 803 | Invalid UTF-8 byte or sequence at line 102 replaced by U+FFFD. 804 | Invalid UTF-8 byte or sequence at line 114 replaced by U+FFFD. 805 | Invalid UTF-8 byte or sequence at line 120 replaced by U+FFFD. 806 | Invalid UTF-8 byte or sequence at line 125 replaced by U+FFFD. 807 | Invalid UTF-8 byte or sequence at line 147 replaced by U+FFFD. 808 | Invalid UTF-8 byte or sequence at line 147 replaced by U+FFFD. 809 | Invalid UTF-8 byte or sequence at line 147 replaced by U+FFFD. 810 | Invalid UTF-8 byte or sequence at line 182 replaced by U+FFFD. 811 | Invalid UTF-8 byte or sequence at line 182 replaced by U+FFFD. 812 | Invalid UTF-8 byte or sequence at line 182 replaced by U+FFFD. 813 | Invalid UTF-8 byte or sequence at line 183 replaced by U+FFFD. 814 | Invalid UTF-8 byte or sequence at line 184 replaced by U+FFFD. 815 | Invalid UTF-8 byte or sequence at line 185 replaced by U+FFFD. 816 | Invalid UTF-8 byte or sequence at line 185 replaced by U+FFFD. 817 | Invalid UTF-8 byte or sequence at line 185 replaced by U+FFFD. 818 | Invalid UTF-8 byte or sequence at line 189 replaced by U+FFFD. 819 | Invalid UTF-8 byte or sequence at line 189 replaced by U+FFFD. 820 | Invalid UTF-8 byte or sequence at line 190 replaced by U+FFFD. 821 | Invalid UTF-8 byte or sequence at line 190 replaced by U+FFFD. 822 | Invalid UTF-8 byte or sequence at line 193 replaced by U+FFFD. 823 | Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD. 824 | Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD. 825 | Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD. 826 | Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD. 827 | Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD. 828 | Invalid UTF-8 byte or sequence at line 208 replaced by U+FFFD. 829 | Invalid UTF-8 byte or sequence at line 221 replaced by U+FFFD. 830 | Invalid UTF-8 byte or sequence at line 221 replaced by U+FFFD. 831 | Invalid UTF-8 byte or sequence at line 241 replaced by U+FFFD. 832 | Invalid UTF-8 byte or sequence at line 241 replaced by U+FFFD. 833 | Invalid UTF-8 byte or sequence at line 241 replaced by U+FFFD. 834 | Invalid UTF-8 byte or sequence at line 241 replaced by U+FFFD. 835 | Invalid UTF-8 byte or sequence at line 266 replaced by U+FFFD. 836 | Invalid UTF-8 byte or sequence at line 284 replaced by U+FFFD. 837 | Invalid UTF-8 byte or sequence at line 295 replaced by U+FFFD. 838 | Invalid UTF-8 byte or sequence at line 300 replaced by U+FFFD. 839 | Invalid UTF-8 byte or sequence at line 300 replaced by U+FFFD. 840 | Invalid UTF-8 byte or sequence at line 301 replaced by U+FFFD. 841 | Invalid UTF-8 byte or sequence at line 301 replaced by U+FFFD. 842 | Invalid UTF-8 byte or sequence at line 301 replaced by U+FFFD. 843 | Invalid UTF-8 byte or sequence at line 302 replaced by U+FFFD. 844 | Invalid UTF-8 byte or sequence at line 303 replaced by U+FFFD. 845 | Invalid UTF-8 byte or sequence at line 332 replaced by U+FFFD. 846 | Invalid UTF-8 byte or sequence at line 332 replaced by U+FFFD. 847 | Invalid UTF-8 byte or sequence at line 332 replaced by U+FFFD. 848 | Invalid UTF-8 byte or sequence at line 332 replaced by U+FFFD. 849 | Invalid UTF-8 byte or sequence at line 333 replaced by U+FFFD. 850 | Invalid UTF-8 byte or sequence at line 334 replaced by U+FFFD. 851 | Invalid UTF-8 byte or sequence at line 334 replaced by U+FFFD. 852 | Invalid UTF-8 byte or sequence at line 334 replaced by U+FFFD. 853 | Invalid UTF-8 byte or sequence at line 406 replaced by U+FFFD. 854 | Invalid UTF-8 byte or sequence at line 406 replaced by U+FFFD. 855 | Invalid UTF-8 byte or sequence at line 409 replaced by U+FFFD. 856 | Invalid UTF-8 byte or sequence at line 410 replaced by U+FFFD. 857 | Invalid UTF-8 byte or sequence at line 428 replaced by U+FFFD. 858 | Invalid UTF-8 byte or sequence at line 434 replaced by U+FFFD. 859 | Invalid UTF-8 byte or sequence at line 457 replaced by U+FFFD. 860 | Invalid UTF-8 byte or sequence at line 457 replaced by U+FFFD. 861 | Invalid UTF-8 byte or sequence at line 464 replaced by U+FFFD. 862 | Invalid UTF-8 byte or sequence at line 464 replaced by U+FFFD. 863 | Invalid UTF-8 byte or sequence at line 466 replaced by U+FFFD. 864 | Invalid UTF-8 byte or sequence at line 466 replaced by U+FFFD. 865 | Invalid UTF-8 byte or sequence at line 541 replaced by U+FFFD. 866 | Invalid UTF-8 byte or sequence at line 541 replaced by U+FFFD. 867 | Invalid UTF-8 byte or sequence at line 541 replaced by U+FFFD. 868 | Invalid UTF-8 byte or sequence at line 586 replaced by U+FFFD. 869 | Invalid UTF-8 byte or sequence at line 586 replaced by U+FFFD. 870 | Invalid UTF-8 byte or sequence at line 588 replaced by U+FFFD. 871 | Invalid UTF-8 byte or sequence at line 588 replaced by U+FFFD. 872 | Invalid UTF-8 byte or sequence at line 595 replaced by U+FFFD. 873 | Invalid UTF-8 byte or sequence at line 597 replaced by U+FFFD. 874 | Invalid UTF-8 byte or sequence at line 599 replaced by U+FFFD. 875 | Invalid UTF-8 byte or sequence at line 602 replaced by U+FFFD. 876 | Invalid UTF-8 byte or sequence at line 605 replaced by U+FFFD. 877 | Invalid UTF-8 byte or sequence at line 605 replaced by U+FFFD. 878 | Invalid UTF-8 byte or sequence at line 610 replaced by U+FFFD. 879 | Invalid UTF-8 byte or sequence at line 615 replaced by U+FFFD. 880 | Invalid UTF-8 byte or sequence at line 632 replaced by U+FFFD. 881 | Invalid UTF-8 byte or sequence at line 632 replaced by U+FFFD. 882 | Invalid UTF-8 byte or sequence at line 633 replaced by U+FFFD. 883 | Invalid UTF-8 byte or sequence at line 635 replaced by U+FFFD. 884 | Invalid UTF-8 byte or sequence at line 637 replaced by U+FFFD. 885 | Invalid UTF-8 byte or sequence at line 647 replaced by U+FFFD. 886 | Invalid UTF-8 byte or sequence at line 653 replaced by U+FFFD. 887 | Invalid UTF-8 byte or sequence at line 678 replaced by U+FFFD. 888 | Invalid UTF-8 byte or sequence at line 700 replaced by U+FFFD. 889 | Invalid UTF-8 byte or sequence at line 705 replaced by U+FFFD. 890 | Invalid UTF-8 byte or sequence at line 715 replaced by U+FFFD. 891 | Invalid UTF-8 byte or sequence at line 715 replaced by U+FFFD. 892 | Invalid UTF-8 byte or sequence at line 715 replaced by U+FFFD. 893 | Invalid UTF-8 byte or sequence at line 719 replaced by U+FFFD. 894 | Invalid UTF-8 byte or sequence at line 732 replaced by U+FFFD. 895 | Invalid UTF-8 byte or sequence at line 732 replaced by U+FFFD. 896 | Invalid UTF-8 byte or sequence at line 741 replaced by U+FFFD. 897 | Invalid UTF-8 byte or sequence at line 741 replaced by U+FFFD. 898 | Invalid UTF-8 byte or sequence at line 742 replaced by U+FFFD. 899 | Invalid UTF-8 byte or sequence at line 742 replaced by U+FFFD. 900 | Invalid UTF-8 byte or sequence at line 762 replaced by U+FFFD. 901 | Invalid UTF-8 byte or sequence at line 773 replaced by U+FFFD. 902 | Invalid UTF-8 byte or sequence at line 773 replaced by U+FFFD. 903 | Invalid UTF-8 byte or sequence at line 774 replaced by U+FFFD. 904 | Invalid UTF-8 byte or sequence at line 774 replaced by U+FFFD. 905 | Invalid UTF-8 byte or sequence at line 774 replaced by U+FFFD. 906 | Invalid UTF-8 byte or sequence at line 797 replaced by U+FFFD. 907 | Invalid UTF-8 byte or sequence at line 797 replaced by U+FFFD. 908 | Invalid UTF-8 byte or sequence at line 810 replaced by U+FFFD. 909 | Invalid UTF-8 byte or sequence at line 824 replaced by U+FFFD. 910 | Invalid UTF-8 byte or sequence at line 824 replaced by U+FFFD. 911 | Invalid UTF-8 byte or sequence at line 831 replaced by U+FFFD. 912 | Invalid UTF-8 byte or sequence at line 838 replaced by U+FFFD. 913 | Invalid UTF-8 byte or sequence at line 838 replaced by U+FFFD. 914 | Invalid UTF-8 byte or sequence at line 846 replaced by U+FFFD. 915 | Invalid UTF-8 byte or sequence at line 846 replaced by U+FFFD. 916 | Invalid UTF-8 byte or sequence at line 861 replaced by U+FFFD. 917 | Invalid UTF-8 byte or sequence at line 862 replaced by U+FFFD. 918 | Invalid UTF-8 byte or sequence at line 864 replaced by U+FFFD. 919 | Invalid UTF-8 byte or sequence at line 864 replaced by U+FFFD. 920 | Invalid UTF-8 byte or sequence at line 908 replaced by U+FFFD. 921 | Invalid UTF-8 byte or sequence at line 909 replaced by U+FFFD. 922 | Invalid UTF-8 byte or sequence at line 909 replaced by U+FFFD. 923 | Invalid UTF-8 byte or sequence at line 934 replaced by U+FFFD. 924 | Invalid UTF-8 byte or sequence at line 934 replaced by U+FFFD. 925 | Invalid UTF-8 byte or sequence at line 936 replaced by U+FFFD. 926 | Invalid UTF-8 byte or sequence at line 936 replaced by U+FFFD. 927 | Invalid UTF-8 byte or sequence at line 940 replaced by U+FFFD. 928 | Invalid UTF-8 byte or sequence at line 940 replaced by U+FFFD. 929 | Invalid UTF-8 byte or sequence at line 962 replaced by U+FFFD. 930 | Invalid UTF-8 byte or sequence at line 962 replaced by U+FFFD. 931 | Invalid UTF-8 byte or sequence at line 964 replaced by U+FFFD. 932 | Invalid UTF-8 byte or sequence at line 965 replaced by U+FFFD. 933 | Invalid UTF-8 byte or sequence at line 1006 replaced by U+FFFD. 934 | ) 935 | Package: xstring 2019/02/06 v1.83 String manipulations (CT) 936 | )) 937 | Package biblatex Info: Trying to load citation style 'gb7714-2015'... 938 | Package biblatex Info: ... file 'gb7714-2015.cbx' found. 939 | 940 | (./gb7714-2015.cbx 941 | File: gb7714-2015.cbx 2018/01/20 v1.0j biblatex citation style 942 | Package biblatex Info: Trying to load citation style 'numeric-comp'... 943 | Package biblatex Info: ... file 'numeric-comp.cbx' found. 944 | 945 | (f:/texlive/2019/texmf-dist/tex/latex/biblatex/cbx/numeric-comp.cbx 946 | File: numeric-comp.cbx 2018/11/02 v3.12 biblatex citation style (PK/MW) 947 | \c@cbx@tempcnta=\count409 948 | \c@cbx@tempcntb=\count410 949 | Package biblatex Info: Redefining '\cite'. 950 | Package biblatex Info: Redefining '\parencite'. 951 | Package biblatex Info: Redefining '\footcite'. 952 | Package biblatex Info: Redefining '\footcitetext'. 953 | Package biblatex Info: Redefining '\smartcite'. 954 | Package biblatex Info: Redefining '\supercite'. 955 | Package biblatex Info: Redefining '\textcite'. 956 | Package biblatex Info: Redefining '\textcites'. 957 | Package biblatex Info: Redefining '\cites'. 958 | Package biblatex Info: Redefining '\parencites'. 959 | Package biblatex Info: Redefining '\smartcites'. 960 | ) 961 | Package biblatex Info: Redefining '\cite'. 962 | ) 963 | Package biblatex Info: Trying to load configuration file... 964 | Package biblatex Info: ... file 'biblatex.cfg' found. 965 | 966 | (f:/texlive/2019/texmf-dist/tex/latex/biblatex/biblatex.cfg 967 | File: biblatex.cfg 968 | )) 969 | 970 | Package fontspec Info: Font family 'CourierNew(0)' created for font 'Courier 971 | (fontspec) New' with options 972 | (fontspec) [WordSpace={1,0,0},HyphenChar=None,PunctuationSpace=Word 973 | Space]. 974 | (fontspec) 975 | (fontspec) This font family consists of the following NFSS 976 | (fontspec) series/shapes: 977 | (fontspec) 978 | (fontspec) - 'normal' (m/n) with NFSS spec.: <->"Courier 979 | (fontspec) New/OT:script=latn;language=DFLT;" 980 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 981 | (fontspec) and font adjustment code: 982 | (fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font 983 | (fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen 984 | (fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font 985 | (fontspec) \tex_hyphenchar:D \font =-1\scan_stop: 986 | (fontspec) - 'bold' (bx/n) with NFSS spec.: <->"Courier 987 | (fontspec) New/B/OT:script=latn;language=DFLT;" 988 | (fontspec) - 'bold small caps' (bx/sc) with NFSS spec.: 989 | (fontspec) and font adjustment code: 990 | (fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font 991 | (fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen 992 | (fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font 993 | (fontspec) \tex_hyphenchar:D \font =-1\scan_stop: 994 | (fontspec) - 'italic' (m/it) with NFSS spec.: <->"Courier 995 | (fontspec) New/I/OT:script=latn;language=DFLT;" 996 | (fontspec) - 'italic small caps' (m/itsc) with NFSS spec.: 997 | (fontspec) and font adjustment code: 998 | (fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font 999 | (fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen 1000 | (fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font 1001 | (fontspec) \tex_hyphenchar:D \font =-1\scan_stop: 1002 | (fontspec) - 'bold italic' (bx/it) with NFSS spec.: <->"Courier 1003 | (fontspec) New/BI/OT:script=latn;language=DFLT;" 1004 | (fontspec) - 'bold italic small caps' (bx/itsc) with NFSS spec.: 1005 | (fontspec) and font adjustment code: 1006 | (fontspec) \fontdimen 2\font =1\fontdimen 2\font \fontdimen 3\font 1007 | (fontspec) =0\fontdimen 3\font \fontdimen 4\font =0\fontdimen 1008 | (fontspec) 4\font \fontdimen 7\font =0\fontdimen 2\font 1009 | (fontspec) \tex_hyphenchar:D \font =-1\scan_stop: 1010 | 1011 | LaTeX Info: Redefining \ttfamily on input line 27. 1012 | 1013 | (f:/texlive/2019/texmf-dist/tex/latex/listings/listings.sty 1014 | \lst@mode=\count411 1015 | \lst@gtempboxa=\box59 1016 | \lst@token=\toks20 1017 | \lst@length=\count412 1018 | \lst@currlwidth=\dimen198 1019 | \lst@column=\count413 1020 | \lst@pos=\count414 1021 | \lst@lostspace=\dimen199 1022 | \lst@width=\dimen256 1023 | \lst@newlines=\count415 1024 | \lst@lineno=\count416 1025 | \lst@maxwidth=\dimen257 1026 | 1027 | (f:/texlive/2019/texmf-dist/tex/latex/listings/lstmisc.sty 1028 | File: lstmisc.sty 2019/02/27 1.8b (Carsten Heinz) 1029 | \c@lstnumber=\count417 1030 | \lst@skipnumbers=\count418 1031 | \lst@framebox=\box60 1032 | ) 1033 | (f:/texlive/2019/texmf-dist/tex/latex/listings/listings.cfg 1034 | File: listings.cfg 2019/02/27 1.8b listings configuration 1035 | )) 1036 | Package: listings 2019/02/27 1.8b (Carsten Heinz) 1037 | 1038 | (f:/texlive/2019/texmf-dist/tex/latex/amsmath/amsmath.sty 1039 | Package: amsmath 2018/12/01 v2.17b AMS math features 1040 | \@mathmargin=\skip102 1041 | 1042 | For additional information on amsmath, use the `?' option. 1043 | (f:/texlive/2019/texmf-dist/tex/latex/amsmath/amstext.sty 1044 | Package: amstext 2000/06/29 v2.01 AMS text 1045 | 1046 | (f:/texlive/2019/texmf-dist/tex/latex/amsmath/amsgen.sty 1047 | File: amsgen.sty 1999/11/30 v2.0 generic functions 1048 | \@emptytoks=\toks21 1049 | \ex@=\dimen258 1050 | )) 1051 | (f:/texlive/2019/texmf-dist/tex/latex/amsmath/amsbsy.sty 1052 | Package: amsbsy 1999/11/29 v1.2d Bold Symbols 1053 | \pmbraise@=\dimen259 1054 | ) 1055 | (f:/texlive/2019/texmf-dist/tex/latex/amsmath/amsopn.sty 1056 | Package: amsopn 2016/03/08 v2.02 operator names 1057 | ) 1058 | \inf@bad=\count419 1059 | LaTeX Info: Redefining \frac on input line 223. 1060 | \uproot@=\count420 1061 | \leftroot@=\count421 1062 | LaTeX Info: Redefining \overline on input line 385. 1063 | \classnum@=\count422 1064 | \DOTSCASE@=\count423 1065 | LaTeX Info: Redefining \ldots on input line 482. 1066 | LaTeX Info: Redefining \dots on input line 485. 1067 | LaTeX Info: Redefining \cdots on input line 606. 1068 | \Mathstrutbox@=\box61 1069 | \strutbox@=\box62 1070 | \big@size=\dimen260 1071 | LaTeX Font Info: Redeclaring font encoding OML on input line 729. 1072 | LaTeX Font Info: Redeclaring font encoding OMS on input line 730. 1073 | \macc@depth=\count424 1074 | \c@MaxMatrixCols=\count425 1075 | \dotsspace@=\muskip18 1076 | \c@parentequation=\count426 1077 | \dspbrk@lvl=\count427 1078 | \tag@help=\toks22 1079 | \row@=\count428 1080 | \column@=\count429 1081 | \maxfields@=\count430 1082 | \andhelp@=\toks23 1083 | \eqnshift@=\dimen261 1084 | \alignsep@=\dimen262 1085 | \tagshift@=\dimen263 1086 | \tagwidth@=\dimen264 1087 | \totwidth@=\dimen265 1088 | \lineht@=\dimen266 1089 | \@envbody=\toks24 1090 | \multlinegap=\skip103 1091 | \multlinetaggap=\skip104 1092 | \mathdisplay@stack=\toks25 1093 | LaTeX Info: Redefining \[ on input line 2844. 1094 | LaTeX Info: Redefining \] on input line 2845. 1095 | ) 1096 | (f:/texlive/2019/texmf-dist/tex/latex/amscls/amsthm.sty 1097 | Package: amsthm 2017/10/31 v2.20.4 1098 | \thm@style=\toks26 1099 | \thm@bodyfont=\toks27 1100 | \thm@headfont=\toks28 1101 | \thm@notefont=\toks29 1102 | \thm@headpunct=\toks30 1103 | \thm@preskip=\skip105 1104 | \thm@postskip=\skip106 1105 | \thm@headsep=\skip107 1106 | \dth@everypar=\toks31 1107 | ) 1108 | \c@theorem=\count431 1109 | \c@definition=\count432 1110 | \c@corollary=\count433 1111 | \c@example=\count434 1112 | 1113 | (f:/texlive/2019/texmf-dist/tex/latex/amsfonts/amsfonts.sty 1114 | Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support 1115 | \symAMSa=\mathgroup4 1116 | \symAMSb=\mathgroup5 1117 | LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' 1118 | (Font) U/euf/m/n --> U/euf/b/n on input line 106. 1119 | ) 1120 | (f:/texlive/2019/texmf-dist/tex/latex/booktabs/booktabs.sty 1121 | Package: booktabs 2016/04/27 v1.618033 publication quality tables 1122 | \heavyrulewidth=\dimen267 1123 | \lightrulewidth=\dimen268 1124 | \cmidrulewidth=\dimen269 1125 | \belowrulesep=\dimen270 1126 | \belowbottomsep=\dimen271 1127 | \aboverulesep=\dimen272 1128 | \abovetopsep=\dimen273 1129 | \cmidrulesep=\dimen274 1130 | \cmidrulekern=\dimen275 1131 | \defaultaddspace=\dimen276 1132 | \@cmidla=\count435 1133 | \@cmidlb=\count436 1134 | \@aboverulesep=\dimen277 1135 | \@belowrulesep=\dimen278 1136 | \@thisruleclass=\count437 1137 | \@lastruleclass=\count438 1138 | \@thisrulewidth=\dimen279 1139 | ) 1140 | (f:/texlive/2019/texmf-dist/tex/latex/paralist/paralist.sty 1141 | Package: paralist 2017/01/22 v2.7 Extended list environments 1142 | \pltopsep=\skip108 1143 | \plpartopsep=\skip109 1144 | \plitemsep=\skip110 1145 | \plparsep=\skip111 1146 | \pl@lab=\toks32 1147 | ) 1148 | (f:/texlive/2019/texmf-dist/tex/latex/tools/verbatim.sty 1149 | Package: verbatim 2014/10/28 v1.5q LaTeX2e package for verbatim enhancements 1150 | \every@verbatim=\toks33 1151 | \verbatim@line=\toks34 1152 | \verbatim@in@stream=\read3 1153 | ) 1154 | (f:/texlive/2019/texmf-dist/tex/latex/cases/cases.sty 1155 | Package: cases 2002/05/02 ver 2.5 1156 | ) 1157 | (f:/texlive/2019/texmf-dist/tex/latex/multirow/multirow.sty 1158 | Package: multirow 2019/01/01 v2.4 Span multiple rows of a table 1159 | \multirow@colwidth=\skip112 1160 | \multirow@cntb=\count439 1161 | \multirow@dima=\skip113 1162 | \bigstrutjot=\dimen280 1163 | ) 1164 | (f:/texlive/2019/texmf-dist/tex/latex/algorithms/algorithm.sty 1165 | Invalid UTF-8 byte or sequence at line 11 replaced by U+FFFD. 1166 | Package: algorithm 2009/08/24 v0.1 Document Style `algorithm' - floating enviro 1167 | nment 1168 | 1169 | (f:/texlive/2019/texmf-dist/tex/latex/float/float.sty 1170 | Package: float 2001/11/08 v1.3d Float enhancements (AL) 1171 | \c@float@type=\count440 1172 | \float@exts=\toks35 1173 | \float@box=\box63 1174 | \@float@everytoks=\toks36 1175 | \@floatcapt=\box64 1176 | ) 1177 | \@float@every@algorithm=\toks37 1178 | \c@algorithm=\count441 1179 | ) 1180 | (f:/texlive/2019/texmf-dist/tex/latex/algorithms/algorithmic.sty 1181 | Invalid UTF-8 byte or sequence at line 11 replaced by U+FFFD. 1182 | Package: algorithmic 2009/08/24 v0.1 Document Style `algorithmic' 1183 | \c@ALC@unique=\count442 1184 | \c@ALC@line=\count443 1185 | \c@ALC@rem=\count444 1186 | \c@ALC@depth=\count445 1187 | \ALC@tlm=\skip114 1188 | \algorithmicindent=\skip115 1189 | ) 1190 | (f:/texlive/2019/texmf-dist/tex/latex/hyperref/hyperref.sty 1191 | Package: hyperref 2018/11/30 v6.88e Hypertext links for LaTeX 1192 | 1193 | (f:/texlive/2019/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty 1194 | Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO) 1195 | 1196 | 1197 | (f:/texlive/2019/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty 1198 | Package: hobsub-generic 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO) 1199 | Package: hobsub 2016/05/16 v1.14 Construct package bundles (HO) 1200 | Package hobsub Info: Skipping package `infwarerr' (already loaded). 1201 | Package hobsub Info: Skipping package `ltxcmds' (already loaded). 1202 | Package hobsub Info: Skipping package `ifluatex' (already loaded). 1203 | Package hobsub Info: Skipping package `ifvtex' (already loaded). 1204 | Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO) 1205 | Package hobsub Info: Skipping package `ifpdf' (already loaded). 1206 | Package hobsub Info: Skipping package `etexcmds' (already loaded). 1207 | Package hobsub Info: Skipping package `kvsetkeys' (already loaded). 1208 | Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO) 1209 | Package hobsub Info: Skipping package `pdftexcmds' (already loaded). 1210 | Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO) 1211 | Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO 1212 | ) 1213 | Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO) 1214 | Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO) 1215 | ) 1216 | Package hobsub Info: Skipping package `hobsub' (already loaded). 1217 | Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO) 1218 | Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO) 1219 | Package: xcolor-patch 2016/05/16 xcolor patch 1220 | Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO) 1221 | Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO) 1222 | Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO) 1223 | Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO) 1224 | ) 1225 | (f:/texlive/2019/texmf-dist/tex/latex/oberdiek/auxhook.sty 1226 | Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO) 1227 | ) 1228 | \@linkdim=\dimen281 1229 | \Hy@linkcounter=\count446 1230 | \Hy@pagecounter=\count447 1231 | 1232 | (f:/texlive/2019/texmf-dist/tex/latex/hyperref/pd1enc.def 1233 | File: pd1enc.def 2018/11/30 v6.88e Hyperref: PDFDocEncoding definition (HO) 1234 | ) 1235 | \Hy@SavedSpaceFactor=\count448 1236 | 1237 | (f:/texlive/2019/texmf-dist/tex/latex/latexconfig/hyperref.cfg 1238 | File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive 1239 | ) 1240 | Package hyperref Info: Option `unicode' set `true' on input line 4393. 1241 | 1242 | (f:/texlive/2019/texmf-dist/tex/latex/hyperref/puenc.def 1243 | File: puenc.def 2018/11/30 v6.88e Hyperref: PDF Unicode definition (HO) 1244 | ) 1245 | Package hyperref Info: Hyper figures OFF on input line 4519. 1246 | Package hyperref Info: Link nesting OFF on input line 4524. 1247 | Package hyperref Info: Hyper index ON on input line 4527. 1248 | Package hyperref Info: Plain pages OFF on input line 4534. 1249 | Package hyperref Info: Backreferencing OFF on input line 4539. 1250 | Package hyperref Info: Implicit mode ON; LaTeX internals redefined. 1251 | Package hyperref Info: Bookmarks ON on input line 4772. 1252 | \c@Hy@tempcnt=\count449 1253 | LaTeX Info: Redefining \url on input line 5125. 1254 | \XeTeXLinkMargin=\dimen282 1255 | \Fld@menulength=\count450 1256 | \Field@Width=\dimen283 1257 | \Fld@charsize=\dimen284 1258 | Package hyperref Info: Hyper figures OFF on input line 6380. 1259 | Package hyperref Info: Link nesting OFF on input line 6385. 1260 | Package hyperref Info: Hyper index ON on input line 6388. 1261 | Package hyperref Info: backreferencing OFF on input line 6395. 1262 | Package hyperref Info: Link coloring OFF on input line 6400. 1263 | Package hyperref Info: Link coloring with OCG OFF on input line 6405. 1264 | Package hyperref Info: PDF/A mode OFF on input line 6410. 1265 | LaTeX Info: Redefining \ref on input line 6450. 1266 | LaTeX Info: Redefining \pageref on input line 6454. 1267 | \Hy@abspage=\count451 1268 | \c@Item=\count452 1269 | \c@Hfootnote=\count453 1270 | ) 1271 | Package hyperref Info: Driver (autodetected): hxetex. 1272 | 1273 | (f:/texlive/2019/texmf-dist/tex/latex/hyperref/hxetex.def 1274 | File: hxetex.def 2018/11/30 v6.88e Hyperref driver for XeTeX 1275 | 1276 | (f:/texlive/2019/texmf-dist/tex/generic/oberdiek/stringenc.sty 1277 | Package: stringenc 2016/05/16 v1.11 Convert strings between diff. encodings (HO 1278 | ) 1279 | ) 1280 | \pdfm@box=\box65 1281 | \c@Hy@AnnotLevel=\count454 1282 | \HyField@AnnotCount=\count455 1283 | \Fld@listcount=\count456 1284 | \c@bookmark@seq@number=\count457 1285 | 1286 | (f:/texlive/2019/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty 1287 | Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO) 1288 | Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 1289 | 82. 1290 | ) 1291 | \Hy@SectionHShift=\skip116 1292 | ) 1293 | Package hyperref Info: Option `colorlinks' set `true' on input line 65. 1294 | Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 65. 1295 | Package hyperref Info: Option `bookmarksopen' set `true' on input line 65. 1296 | Package biblatex Info: Trying to load language 'english'... 1297 | Package biblatex Info: ... file 'english.lbx' found. 1298 | 1299 | (f:/texlive/2019/texmf-dist/tex/latex/biblatex/lbx/english.lbx 1300 | File: english.lbx 2018/11/02 v3.12 biblatex localization (PK/MW) 1301 | ) 1302 | \@quotelevel=\count458 1303 | \@quotereset=\count459 1304 | 1305 | 1306 | Package biblatex Warning: Conflicting options. 1307 | (biblatex) 'eventdate=iso' requires 'seconds=true'. 1308 | (biblatex) Setting 'seconds=true' on input line 122. 1309 | 1310 | (f:/texlive/2019/texmf-dist/tex/xelatex/xecjk/xeCJK-listings.sty 1311 | Package: xeCJK-listings 2019/04/07 v3.7.2 xeCJK patch file for listings 1312 | \l__xeCJK_listings_max_char_int=\count460 1313 | \l__xeCJK_listings_flag_int=\count461 1314 | ) (./report.aux) 1315 | \openout1 = `report.aux'. 1316 | 1317 | LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 122. 1318 | LaTeX Font Info: ... okay on input line 122. 1319 | LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 122. 1320 | LaTeX Font Info: ... okay on input line 122. 1321 | LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 122. 1322 | LaTeX Font Info: ... okay on input line 122. 1323 | LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 122. 1324 | LaTeX Font Info: ... okay on input line 122. 1325 | LaTeX Font Info: Checking defaults for TU/lmr/m/n on input line 122. 1326 | LaTeX Font Info: ... okay on input line 122. 1327 | LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 122. 1328 | LaTeX Font Info: ... okay on input line 122. 1329 | LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 122. 1330 | LaTeX Font Info: ... okay on input line 122. 1331 | LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 122. 1332 | LaTeX Font Info: ... okay on input line 122. 1333 | LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 122. 1334 | LaTeX Font Info: ... okay on input line 122. 1335 | LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 122. 1336 | LaTeX Font Info: ... okay on input line 122. 1337 | 1338 | *geometry* driver: auto-detecting 1339 | *geometry* detected driver: xetex 1340 | *geometry* verbose mode - [ preamble ] result: 1341 | * driver: xetex 1342 | * paper: a4paper 1343 | * layout: 1344 | * layoutoffset:(h,v)=(0.0pt,0.0pt) 1345 | * modes: 1346 | * h-part:(L,W,R)=(72.26999pt, 452.9679pt, 72.26999pt) 1347 | * v-part:(T,H,B)=(72.26999pt, 700.50687pt, 72.26999pt) 1348 | * \paperwidth=597.50787pt 1349 | * \paperheight=845.04684pt 1350 | * \textwidth=452.9679pt 1351 | * \textheight=700.50687pt 1352 | * \oddsidemargin=0.0pt 1353 | * \evensidemargin=0.0pt 1354 | * \topmargin=-37.0pt 1355 | * \headheight=12.0pt 1356 | * \headsep=25.0pt 1357 | * \topskip=12.0pt 1358 | * \footskip=30.0pt 1359 | * \marginparwidth=35.0pt 1360 | * \marginparsep=10.0pt 1361 | * \columnsep=10.0pt 1362 | * \skip\footins=10.8pt plus 4.0pt minus 2.0pt 1363 | * \hoffset=0.0pt 1364 | * \voffset=0.0pt 1365 | * \mag=1000 1366 | * \@twocolumnfalse 1367 | * \@twosidefalse 1368 | * \@mparswitchfalse 1369 | * \@reversemarginfalse 1370 | * (1in=72.27pt=25.4mm, 1cm=28.453pt) 1371 | 1372 | ABD: EverySelectfont initializing macros 1373 | LaTeX Info: Redefining \selectfont on input line 122. 1374 | 1375 | Package fontspec Info: Adjusting the maths setup (use [no-math] to avoid 1376 | (fontspec) this). 1377 | 1378 | \symlegacymaths=\mathgroup6 1379 | LaTeX Font Info: Overwriting symbol font `legacymaths' in version `bold' 1380 | (Font) OT1/cmr/m/n --> OT1/cmr/bx/n on input line 122. 1381 | LaTeX Font Info: Redeclaring math accent \acute on input line 122. 1382 | LaTeX Font Info: Redeclaring math accent \grave on input line 122. 1383 | LaTeX Font Info: Redeclaring math accent \ddot on input line 122. 1384 | LaTeX Font Info: Redeclaring math accent \tilde on input line 122. 1385 | LaTeX Font Info: Redeclaring math accent \bar on input line 122. 1386 | LaTeX Font Info: Redeclaring math accent \breve on input line 122. 1387 | LaTeX Font Info: Redeclaring math accent \check on input line 122. 1388 | LaTeX Font Info: Redeclaring math accent \hat on input line 122. 1389 | LaTeX Font Info: Redeclaring math accent \dot on input line 122. 1390 | LaTeX Font Info: Redeclaring math accent \mathring on input line 122. 1391 | LaTeX Font Info: Redeclaring math symbol \Gamma on input line 122. 1392 | LaTeX Font Info: Redeclaring math symbol \Delta on input line 122. 1393 | LaTeX Font Info: Redeclaring math symbol \Theta on input line 122. 1394 | LaTeX Font Info: Redeclaring math symbol \Lambda on input line 122. 1395 | LaTeX Font Info: Redeclaring math symbol \Xi on input line 122. 1396 | LaTeX Font Info: Redeclaring math symbol \Pi on input line 122. 1397 | LaTeX Font Info: Redeclaring math symbol \Sigma on input line 122. 1398 | LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 122. 1399 | LaTeX Font Info: Redeclaring math symbol \Phi on input line 122. 1400 | LaTeX Font Info: Redeclaring math symbol \Psi on input line 122. 1401 | LaTeX Font Info: Redeclaring math symbol \Omega on input line 122. 1402 | LaTeX Font Info: Redeclaring math symbol \mathdollar on input line 122. 1403 | LaTeX Font Info: Redeclaring symbol font `operators' on input line 122. 1404 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 1405 | (Font) `operators' in the math version `normal' on input line 122. 1406 | 1407 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 1408 | (Font) OT1/cmr/m/n --> TU/lmr/m/n on input line 122. 1409 | LaTeX Font Info: Encoding `OT1' has changed to `TU' for symbol font 1410 | (Font) `operators' in the math version `bold' on input line 122. 1411 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 1412 | (Font) OT1/cmr/bx/n --> TU/lmr/m/n on input line 122. 1413 | LaTeX Font Info: Overwriting symbol font `operators' in version `normal' 1414 | (Font) TU/lmr/m/n --> TU/lmr/m/n on input line 122. 1415 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' 1416 | (Font) OT1/cmr/m/it --> TU/lmr/m/it on input line 122. 1417 | LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' 1418 | (Font) OT1/cmr/bx/n --> TU/lmr/bx/n on input line 122. 1419 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' 1420 | (Font) OT1/cmss/m/n --> TU/lmss/m/n on input line 122. 1421 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' 1422 | (Font) OT1/cmtt/m/n --> TU/CourierNew(0)/m/n on input line 122 1423 | . 1424 | LaTeX Font Info: Overwriting symbol font `operators' in version `bold' 1425 | (Font) TU/lmr/m/n --> TU/lmr/bx/n on input line 122. 1426 | LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' 1427 | (Font) OT1/cmr/bx/it --> TU/lmr/bx/it on input line 122. 1428 | LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' 1429 | (Font) OT1/cmss/bx/n --> TU/lmss/bx/n on input line 122. 1430 | LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' 1431 | (Font) OT1/cmtt/m/n --> TU/CourierNew(0)/bx/n on input line 12 1432 | 2. 1433 | Package biblatex Info: XeTeX detected. 1434 | (biblatex) Assuming input encoding 'utf8'. 1435 | Package biblatex Info: Automatic encoding selection. 1436 | (biblatex) Assuming data encoding 'utf8'. 1437 | \openout4 = `report.bcf'. 1438 | 1439 | Package biblatex Info: Trying to load bibliographic data... 1440 | Package biblatex Info: ... file 'report.bbl' found. 1441 | (./report.bbl) 1442 | Package biblatex Info: Reference section=0 on input line 122. 1443 | Package biblatex Info: Reference segment=0 on input line 122. 1444 | \c@lstlisting=\count462 1445 | \AtBeginShipoutBox=\box66 1446 | 1447 | (f:/texlive/2019/texmf-dist/tex/latex/graphics/color.sty 1448 | Package: color 2016/07/10 v1.1e Standard LaTeX Color (DPC) 1449 | 1450 | (f:/texlive/2019/texmf-dist/tex/latex/graphics-cfg/color.cfg 1451 | File: color.cfg 2016/01/02 v1.6 sample color configuration 1452 | ) 1453 | Package color Info: Driver file: xetex.def on input line 147. 1454 | ) 1455 | Package hyperref Info: Link coloring ON on input line 122. 1456 | 1457 | (f:/texlive/2019/texmf-dist/tex/latex/hyperref/nameref.sty 1458 | Package: nameref 2016/05/21 v2.44 Cross-referencing by name of section 1459 | 1460 | (f:/texlive/2019/texmf-dist/tex/generic/oberdiek/gettitlestring.sty 1461 | Package: gettitlestring 2016/05/16 v1.5 Cleanup title references (HO) 1462 | ) 1463 | \c@section@level=\count463 1464 | ) 1465 | LaTeX Info: Redefining \ref on input line 122. 1466 | LaTeX Info: Redefining \pageref on input line 122. 1467 | LaTeX Info: Redefining \nameref on input line 122. 1468 | 1469 | (./report.out) (./report.out) 1470 | \@outlinefile=\write5 1471 | \openout5 = `report.out'. 1472 | 1473 | File: nk_logo.png Graphic file (type bmp) 1474 | 1475 | 1476 | Package fontspec Info: Could not resolve font "SimHei/BI" (it probably doesn't 1477 | (fontspec) exist). 1478 | 1479 | 1480 | Package fontspec Info: Could not resolve font "SimHei/B" (it probably doesn't 1481 | (fontspec) exist). 1482 | 1483 | 1484 | Package fontspec Info: Could not resolve font "SimHei/I" (it probably doesn't 1485 | (fontspec) exist). 1486 | 1487 | 1488 | Package fontspec Info: Font family 'SimHei(0)' created for font 'SimHei' with 1489 | (fontspec) options [Script={CJK}]. 1490 | (fontspec) 1491 | (fontspec) This font family consists of the following NFSS 1492 | (fontspec) series/shapes: 1493 | (fontspec) 1494 | (fontspec) - 'normal' (m/n) with NFSS spec.: 1495 | (fontspec) <->"SimHei/OT:script=hani;language=DFLT;" 1496 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 1497 | 1498 | 1499 | 1500 | LaTeX Font Warning: Font shape `TU/SimHei(0)/bx/n' undefined 1501 | (Font) using `TU/SimHei(0)/m/n' instead on input line 131. 1502 | 1503 | File: head.jpg Graphic file (type bmp) 1504 | 1505 | 1506 | Package fontspec Info: Could not resolve font "SimSun/BI" (it probably doesn't 1507 | (fontspec) exist). 1508 | 1509 | 1510 | Package fontspec Info: Could not resolve font "SimSun/B" (it probably doesn't 1511 | (fontspec) exist). 1512 | 1513 | 1514 | Package fontspec Info: Could not resolve font "SimSun/I" (it probably doesn't 1515 | (fontspec) exist). 1516 | 1517 | 1518 | Package fontspec Info: Font family 'SimSun(1)' created for font 'SimSun' with 1519 | (fontspec) options [Script={CJK}]. 1520 | (fontspec) 1521 | (fontspec) This font family consists of the following NFSS 1522 | (fontspec) series/shapes: 1523 | (fontspec) 1524 | (fontspec) - 'normal' (m/n) with NFSS spec.: 1525 | (fontspec) <->"SimSun/OT:script=hani;language=DFLT;" 1526 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 1527 | 1528 | LaTeX Font Info: Try loading font information for U+msa on input line 138. 1529 | (f:/texlive/2019/texmf-dist/tex/latex/amsfonts/umsa.fd 1530 | File: umsa.fd 2013/01/14 v3.01 AMS symbols A 1531 | ) 1532 | LaTeX Font Info: Try loading font information for U+msb on input line 138. 1533 | 1534 | (f:/texlive/2019/texmf-dist/tex/latex/amsfonts/umsb.fd 1535 | File: umsb.fd 2013/01/14 v3.01 AMS symbols B 1536 | ) 1537 | Overfull \hbox (6.33618pt too wide) detected at line 140 1538 | \TU/SimSun(1)/m/n/16.06 学 号:| 1539 | [] 1540 | 1541 | 1542 | Package fontspec Info: Could not resolve font "KaiTi/BI" (it probably doesn't 1543 | (fontspec) exist). 1544 | 1545 | 1546 | Package fontspec Info: Could not resolve font "KaiTi/B" (it probably doesn't 1547 | (fontspec) exist). 1548 | 1549 | 1550 | Package fontspec Info: Could not resolve font "KaiTi/I" (it probably doesn't 1551 | (fontspec) exist). 1552 | 1553 | 1554 | Package fontspec Info: Font family 'KaiTi(0)' created for font 'KaiTi' with 1555 | (fontspec) options [Script={CJK}]. 1556 | (fontspec) 1557 | (fontspec) This font family consists of the following NFSS 1558 | (fontspec) series/shapes: 1559 | (fontspec) 1560 | (fontspec) - 'normal' (m/n) with NFSS spec.: 1561 | (fontspec) <->"KaiTi/OT:script=hani;language=DFLT;" 1562 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 1563 | 1564 | 1565 | Overfull \hbox (6.33618pt too wide) detected at line 141 1566 | \TU/SimSun(1)/m/n/16.06 姓 名:| 1567 | [] 1568 | 1569 | 1570 | Overfull \hbox (6.33618pt too wide) detected at line 142 1571 | \TU/SimSun(1)/m/n/16.06 年 级:| 1572 | [] 1573 | 1574 | 1575 | Overfull \hbox (6.33618pt too wide) detected at line 143 1576 | \TU/SimSun(1)/m/n/16.06 专 业:| 1577 | [] 1578 | 1579 | 1580 | Overfull \hbox (6.33618pt too wide) detected at line 144 1581 | \TU/SimSun(1)/m/n/16.06 授 课 教 师:| 1582 | [] 1583 | 1584 | 1585 | Overfull \hbox (6.33618pt too wide) detected at line 145 1586 | \TU/SimSun(1)/m/n/16.06 课 程 助 教:| 1587 | [] 1588 | 1589 | 1590 | Overfull \hbox (6.33618pt too wide) detected at line 146 1591 | \TU/SimSun(1)/m/n/16.06 完 成 日 期:| 1592 | [] 1593 | 1594 | [1 1595 | 1596 | ] 1597 | 1598 | Package Fancyhdr Warning: \headheight is too small (12.0pt): 1599 | Make it at least 14.49998pt. 1600 | We now make it that large for the rest of the document. 1601 | This may cause the page layout to be inconsistent, however. 1602 | 1603 | [1 1604 | 1605 | ] [2 1606 | 1607 | ] (./report.toc) 1608 | \tf@toc=\write6 1609 | \openout6 = `report.toc'. 1610 | 1611 | [3 1612 | 1613 | ] 1614 | Chapter 1. 1615 | [1 1616 | 1617 | ] 1618 | Chapter 2. 1619 | [2 1620 | 1621 | ] 1622 | Chapter 3. 1623 | [3 1624 | 1625 | ] 1626 | 1627 | Package fontspec Info: Could not resolve font "FangSong/BI" (it probably 1628 | (fontspec) doesn't exist). 1629 | 1630 | 1631 | Package fontspec Info: Could not resolve font "FangSong/B" (it probably 1632 | (fontspec) doesn't exist). 1633 | 1634 | 1635 | Package fontspec Info: Could not resolve font "FangSong/I" (it probably 1636 | (fontspec) doesn't exist). 1637 | 1638 | 1639 | Package fontspec Info: Font family 'FangSong(0)' created for font 'FangSong' 1640 | (fontspec) with options [Script={CJK}]. 1641 | (fontspec) 1642 | (fontspec) This font family consists of the following NFSS 1643 | (fontspec) series/shapes: 1644 | (fontspec) 1645 | (fontspec) - 'normal' (m/n) with NFSS spec.: 1646 | (fontspec) <->"FangSong/OT:script=hani;language=DFLT;" 1647 | (fontspec) - 'small caps' (m/sc) with NFSS spec.: 1648 | 1649 | [4 1650 | 1651 | ] 1652 | 附录 A. 1653 | (f:/texlive/2019/texmf-dist/tex/latex/listings/lstlang1.sty 1654 | File: lstlang1.sty 2019/02/27 1.8b listings language file 1655 | ) [5 1656 | 1657 | ] 1658 | 附录 B. 1659 | 1660 | LaTeX Warning: No positions in optional float specifier. 1661 | Default added (so using `tbp') on input line 242. 1662 | 1663 | Package atveryend Info: Empty hook `BeforeClearDocument' on input line 257. 1664 | [6 1665 | 1666 | ] 1667 | Package atveryend Info: Empty hook `AfterLastShipout' on input line 257. 1668 | (./report.aux) 1669 | Package atveryend Info: Empty hook `AtVeryEndDocument' on input line 257. 1670 | Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 257. 1671 | Package rerunfilecheck Info: File `report.out' has not changed. 1672 | (rerunfilecheck) Checksum: 195C7F119BBB47E10FFE038D74EBA921. 1673 | 1674 | 1675 | LaTeX Font Warning: Some font shapes were not available, defaults substituted. 1676 | 1677 | Package logreq Info: Writing requests to 'report.run.xml'. 1678 | \openout1 = `report.run.xml'. 1679 | 1680 | ) 1681 | Here is how much of TeX's memory you used: 1682 | 33917 strings out of 492922 1683 | 656751 string characters out of 6136750 1684 | 1140166 words of memory out of 5000000 1685 | 37530 multiletter control sequences out of 15000+600000 1686 | 544048 words of font info for 120 fonts, out of 8000000 for 9000 1687 | 1348 hyphenation exceptions out of 8191 1688 | 54i,11n,74p,823b,4728s stack positions out of 5000i,500n,10000p,200000b,80000s 1689 | 1690 | Output written on report.pdf (10 pages). 1691 | -------------------------------------------------------------------------------- /report_template/report.out: -------------------------------------------------------------------------------- 1 | \BOOKMARK [0][]{chapter.1}{\376\377\0001\000\040\213\376\172\013\164\006\211\343}{}% 1 2 | \BOOKMARK [1][]{section.1.1}{\376\377\0001\000.\0001\000\040\133\236\232\214\166\356\166\204}{chapter.1}% 2 3 | \BOOKMARK [0][]{chapter.2}{\376\377\0002\000\040\167\345\213\306\160\271\140\073\176\323}{}% 3 4 | \BOOKMARK [1][]{section.2.1}{\376\377\0002\000.\0001\000\040\172\172\225\364\143\317\217\360\116\016\123\330\143\142}{chapter.2}% 4 5 | \BOOKMARK [0][]{chapter.3}{\376\377\0003\000\040\140\073\176\323\116\016\134\125\147\033}{}% 5 6 | \BOOKMARK [1][]{section.3.1}{\376\377\0003\000.\0001\000\040\155\361\136\246\133\146\116\140\145\271\154\325\127\050\147\072\150\260\201\302\143\247\122\066\116\055\166\204\136\224\165\050}{chapter.3}% 6 7 | \BOOKMARK [0][]{appendix.A}{\376\377\000A\000\040\173\054\116\000\220\350\122\006}{}% 7 8 | \BOOKMARK [0][]{appendix.B}{\376\377\000B\000\040\173\054\116\214\220\350\122\006}{}% 8 9 | -------------------------------------------------------------------------------- /report_template/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zshicode/LaTeX-Beamer-Nankai/f555b81691867581b7069e2c1192a258813a3938/report_template/report.pdf -------------------------------------------------------------------------------- /report_template/report.run.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 23 | 28 | 33 | 36 | 39 | 42 | ]> 43 | 44 | 45 | latex 46 | 47 | report.bcf 48 | 49 | 50 | report.bbl 51 | 52 | 53 | blx-dm.def 54 | blx-unicode.def 55 | blx-compat.def 56 | biblatex.def 57 | standard.bbx 58 | numeric.bbx 59 | numeric-comp.bbx 60 | gb7714-2015.bbx 61 | numeric-comp.cbx 62 | gb7714-2015.cbx 63 | biblatex.cfg 64 | english.lbx 65 | 66 | 67 | 68 | biber 69 | 70 | biber 71 | report 72 | 73 | 74 | report.bcf 75 | 76 | 77 | report.bbl 78 | 79 | 80 | report.bbl 81 | 82 | 83 | report.bcf 84 | 85 | 86 | reference.bib 87 | 88 | 89 | 90 | -------------------------------------------------------------------------------- /report_template/report.tex: -------------------------------------------------------------------------------- 1 | \documentclass[a4paper,12pt]{report} 2 | \usepackage[margin=1in]{geometry} % to change the page dimensions 3 | \usepackage{ctex} 4 | \usepackage{xeCJK} 5 | \usepackage{comment} 6 | %\usepackage{times} 7 | \usepackage{setspace} 8 | % \usepackage{lastpage} 9 | \usepackage{fancyhdr} 10 | \usepackage{graphicx} 11 | %\graphicspath{{fig/}} 12 | \usepackage{wrapfig} 13 | \usepackage{subfigure} 14 | \usepackage{array} 15 | % \usepackage{fontspec,xunicode,xltxtra} 16 | % \renewcommand{\sfdefault}{cmr} 17 | \usepackage{titlesec} 18 | \usepackage{titletoc} 19 | \usepackage[titletoc]{appendix} 20 | %\usepackage[top=30mm,bottom=30mm,left=20mm,right=20mm]{geometry} 21 | %\usepackage{cite} 22 | \usepackage[backend = biber, style = gb7714-2015, defernumbers=true]{biblatex} 23 | \renewcommand*{\bibfont}{\small} 24 | \addbibresource{reference.bib} 25 | %\usepackage{courier} 26 | \setmonofont{Courier New} 27 | \usepackage{listings} 28 | \lstset{tabsize=4, keepspaces=true, 29 | xleftmargin=2em,xrightmargin=0em, aboveskip=1em, 30 | %backgroundcolor=\color{gray!20}, % 定义背景颜色 31 | frame=none, % 表示不要边框 32 | extendedchars=false, % 解决代码跨页时,章节标题,页眉等汉字不显示的问题 33 | numberstyle=\ttfamily, 34 | basicstyle=\ttfamily, 35 | keywordstyle=\color{blue}\bfseries, 36 | breakindent=10pt, 37 | identifierstyle=, % nothing happens 38 | commentstyle=\color{green}\small, % 注释的设置 39 | morecomment=[l][\color{green}]{\#}, 40 | numbers=left,stepnumber=1,numberstyle=\scriptsize, 41 | showstringspaces=false, 42 | showspaces=false, 43 | flexiblecolumns=true, 44 | breaklines=true, breakautoindent=true,breakindent=4em, 45 | escapeinside={/*@}{@*/}, 46 | } 47 | \usepackage{amsmath} 48 | \usepackage{amsthm} 49 | \newtheorem{theorem}{定理} 50 | \newtheorem{definition}{定义} 51 | \newtheorem{corollary}{推论} 52 | \newtheorem{example}{例} 53 | \usepackage{amsfonts} 54 | %\usepackage{bm} 55 | \usepackage{booktabs} % for much better looking tables 56 | \usepackage{paralist} % very flexible & customisable lists (eg. enumerate/itemize, etc.) 57 | \usepackage{verbatim} % adds environment for commenting out blocks of text & for better verbatim 58 | \usepackage{subfigure} % make it possible to include more than one captioned figure/table in a single float 59 | % These packages are all incorporated in the memoir class to one degree or another... 60 | \usepackage{cases} %equation set 61 | \usepackage{multirow} %use table 62 | \usepackage{algorithm} 63 | \usepackage{algorithmic} 64 | \usepackage{hyperref} 65 | \hypersetup{colorlinks,linkcolor=black,anchorcolor=black,citecolor=black, pdfstartview=FitH,bookmarksnumbered=true,bookmarksopen=true,} % set href in tex & pdf 66 | %\usepackage[framed,numbered,autolinebreaks,useliterate]{mcode} % 插入matlab代码 67 | \XeTeXlinebreaklocale "zh" 68 | \XeTeXlinebreakskip = 0pt plus 1pt minus 0.1pt 69 | 70 | %--------------------------------------------------------------------- 71 | % 页眉页脚设置 72 | %--------------------------------------------------------------------- 73 | \fancypagestyle{plain}{ 74 | \pagestyle{fancy} %改变章节首页页眉 75 | } 76 | 77 | \pagestyle{fancy} 78 | \lhead{\kaishu~课程报告~} 79 | \rhead{\kaishu~xxx} 80 | \cfoot{\thepage} 81 | \titleformat{\chapter}{\centering\zihao{2}\heiti}{第\chinese{chapter}章}{1em}{} 82 | % \titleformat{\chapter*}{\centering\zihao{-1}\heiti} 83 | \begin{comment} 84 | %--------------------------------------------------------------------- 85 | % 章节标题设置 86 | %--------------------------------------------------------------------- 87 | \titleformat{\chapter}{\centering\zihao{-1}\heiti}{实验\chinese{chapter}}{1em}{} 88 | \titlespacing{\chapter}{0pt}{*0}{*6} 89 | \end{comment} 90 | %--------------------------------------------------------------------- 91 | % 摘要标题设置 92 | %--------------------------------------------------------------------- 93 | %\renewcommand{\abstractname}{摘要} 94 | \renewcommand{\figurename}{图} 95 | \renewcommand{\tablename}{表} 96 | 97 | %--------------------------------------------------------------------- 98 | % 参考文献设置 99 | %--------------------------------------------------------------------- 100 | %\renewcommand{\bibname}{\zihao{2}{\hspace{\fill}参\hspace{0.5em}考\hspace{0.5em}文\hspace{0.5em}献\hspace{\fill}}} 101 | \renewcommand{\bibname}{参考文献} 102 | \begin{comment} 103 | %--------------------------------------------------------------------- 104 | % 引用文献设置为上标 105 | %--------------------------------------------------------------------- 106 | \makeatletter 107 | \def\@cite#1#2{\textsuperscript{[{#1\if@tempswa , #2\fi}]}} 108 | \makeatother 109 | \end{comment} 110 | %--------------------------------------------------------------------- 111 | % 目录页设置 112 | %--------------------------------------------------------------------- 113 | %\renewcommand{\contentsname}{\zihao{-3} 目\quad 录} 114 | \renewcommand{\contentsname}{目录} 115 | \titlecontents{chapter}[0em]{\songti\zihao{-4}}{\thecontentslabel\ }{} 116 | {\hspace{.5em}\titlerule*[4pt]{$\cdot$}\contentspage} 117 | \titlecontents{section}[2em]{\vspace{0.1\baselineskip}\songti\zihao{-4}}{\thecontentslabel\ }{} 118 | {\hspace{.5em}\titlerule*[4pt]{$\cdot$}\contentspage} 119 | \titlecontents{subsection}[4em]{\vspace{0.1\baselineskip}\songti\zihao{-4}}{\thecontentslabel\ }{} 120 | {\hspace{.5em}\titlerule*[4pt]{$\cdot$}\contentspage} 121 | 122 | \begin{document} 123 | %--------------------------------------------------------------------- 124 | % 封面设置 125 | %--------------------------------------------------------------------- 126 | \begin{titlepage} 127 | \begin{center} 128 | 129 | \includegraphics[width=0.60\textwidth]{nk_logo.png}\\ 130 | \vspace{10mm} 131 | \textbf{\zihao{1}{\heiti{南开大学XX学院}}}\\[0.8cm] 132 | \textbf{\zihao{1}{\heiti{《XX学》课程报告}}}\\[3cm] 133 | \includegraphics[width=0.20\textwidth]{head.jpg}\\%这里是你的照片 134 | \vspace{\fill} 135 | 136 | \setlength{\extrarowheight}{3mm} 137 | {\songti\zihao{3} 138 | \begin{tabular}{rl} 139 | 140 | {\makebox[4\ccwd][s]{学\qquad 号:}} & ~\kaishu xxxx \\ 141 | {\makebox[4\ccwd][s]{姓\qquad 名:}} & ~\kaishu xxx \\ 142 | {\makebox[4\ccwd][s]{年\qquad 级:}} & ~\kaishu 2019级 \\ 143 | {\makebox[4\ccwd][s]{专\qquad 业:}} & ~\kaishu xxxx \\ 144 | {\makebox[4\ccwd][s]{授课教师:}} & ~\kaishu xxx~教授\\ 145 | {\makebox[4\ccwd][s]{课程助教:}} & ~\kaishu xxx~xxx \\ 146 | {\makebox[4\ccwd][s]{完成日期:}} & ~\kaishu 2019年12月19日\\ 147 | 148 | \end{tabular} 149 | }\\[2cm] 150 | %\vspace{\fill} 151 | %\zihao{4} 152 | %使用\LaTeX 撰写于\today 153 | \end{center} 154 | \end{titlepage} 155 | 156 | %--------------------------------------------------------------------- 157 | % 摘要页 158 | %--------------------------------------------------------------------- 159 | \chapter*{摘要} 160 | 161 | 这里是摘要。 162 | 163 | \textbf{关键词:}总结,理解,思考 164 | 165 | \chapter*{Abstract} 166 | 167 | This is abstract. 168 | 169 | \textbf{Keywords } summary, comprehension, thinking 170 | 171 | %--------------------------------------------------------------------- 172 | % 目录页 173 | %--------------------------------------------------------------------- 174 | \tableofcontents % 生成目录 175 | 176 | %--------------------------------------------------------------------- 177 | % 绪论 178 | %--------------------------------------------------------------------- 179 | \chapter{课程理解} 180 | \setcounter{page}{1} 181 | 182 | \section{实验目的} 183 | 184 | \begin{itemize} 185 | \item 熟悉、剖析、设计、实现直升机实验系统,获得对智能系统的基本结构及其各个组成单元的基本认识。 186 | \item 掌握状态反馈、观测器设计等现代控制理论。 187 | \item 学会运用MATLAB/Simulink 来搭建系统仿真,并在Simulink环境下实现实时控制。 188 | \item 学会将仿真结果与实验相结合,了解仿真和实际系统的区别与联系。 189 | \item 运用Word或\LaTeX 完成基本的科技报告撰写。 190 | \end{itemize} 191 | 192 | %--------------------------------------------------------------------- 193 | % 极点配置 194 | %--------------------------------------------------------------------- 195 | \chapter{知识点总结} 196 | 197 | \section{空间描述与变换} 198 | 199 | \begin{definition}[位姿] 200 | 位姿是两坐标系间的相互关系,可以等价地用一个位置矢量和一个旋转矩阵来描述:$\left\{ B \right\} = \left\{ {{}_B^AR,{}^A{P_{BORG}}} \right\}$ 201 | \end{definition} 202 | 203 | \begin{equation} 204 | F=ma 205 | \end{equation} 206 | 207 | %--------------------------------------------------------------------- 208 | % 分离原则 209 | %--------------------------------------------------------------------- 210 | \chapter{总结与展望} 211 | 212 | \section{深度学习方法在机械臂控制中的应用} 213 | 214 | \cite{wilson2019learning}采用了sim-to-real learning的架构。 215 | 216 | %--------------------------------------------------------------------- 217 | % 实验总结 218 | %--------------------------------------------------------------------- 219 | %\titleformat{\chapter}{\centering\zihao{-1}\heiti}{}{1em}{} 220 | 221 | %--------------------------------------------------------------------- 222 | % 参考文献设置 223 | %--------------------------------------------------------------------- 224 | %\addcontentsline{toc}{chapter}{参考文献} 225 | 226 | \printbibliography 227 | 228 | \titleformat{\chapter}{\centering\zihao{2}\heiti}{附录~\Alph{chapter}}{1em}{} 229 | 230 | \begin{appendix} 231 | 232 | \chapter{第一部分} 233 | 234 | \begin{lstlisting}[language=python] 235 | print('hello world') 236 | \end{lstlisting} 237 | 238 | \chapter{第二部分} 239 | 240 | % Please add the following required packages to your document preamble: 241 | % \usepackage{booktabs} 242 | \begin{table}[] 243 | \centering 244 | \caption{测试结果} 245 | \label{tab:my-table} 246 | \begin{tabular}{@{}cc@{}} 247 | \toprule 248 | 算法 & 准确率 \\ \midrule 249 | I & 0.7684 \\ 250 | II & 0.7865 \\ 251 | III & 0.7655 \\ \bottomrule 252 | \end{tabular} 253 | \end{table} 254 | 255 | \end{appendix} 256 | 257 | \end{document} -------------------------------------------------------------------------------- /report_template/report.toc: -------------------------------------------------------------------------------- 1 | \boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax 2 | \defcounter {refsection}{0}\relax 3 | \contentsline {chapter}{\numberline {1}课程理解}{1}{chapter.1}% 4 | \defcounter {refsection}{0}\relax 5 | \contentsline {section}{\numberline {1.1}实验目的}{1}{section.1.1}% 6 | \defcounter {refsection}{0}\relax 7 | \contentsline {chapter}{\numberline {2}知识点总结}{2}{chapter.2}% 8 | \defcounter {refsection}{0}\relax 9 | \contentsline {section}{\numberline {2.1}空间描述与变换}{2}{section.2.1}% 10 | \defcounter {refsection}{0}\relax 11 | \contentsline {chapter}{\numberline {3}总结与展望}{3}{chapter.3}% 12 | \defcounter {refsection}{0}\relax 13 | \contentsline {section}{\numberline {3.1}深度学习方法在机械臂控制中的应用}{3}{section.3.1}% 14 | \defcounter {refsection}{0}\relax 15 | \contentsline {chapter}{\numberline {A}第一部分}{5}{appendix.A}% 16 | \defcounter {refsection}{0}\relax 17 | \contentsline {chapter}{\numberline {B}第二部分}{6}{appendix.B}% 18 | \contentsfinish 19 | -------------------------------------------------------------------------------- /report_template/texput.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019/W32TeX) (preloaded format=xelatex 2019.11.29) 17 DEC 2019 22:48 2 | entering extended mode 3 | restricted \write18 enabled. 4 | %&-line parsing enabled. 5 | **main 6 | 7 | ! Emergency stop. 8 | <*> main 9 | 10 | Here is how much of TeX's memory you used: 11 | 2 strings out of 492922 12 | 14 string characters out of 6136750 13 | 64272 words of memory out of 5000000 14 | 4153 multiletter control sequences out of 15000+600000 15 | 3640 words of font info for 14 fonts, out of 8000000 for 9000 16 | 1348 hyphenation exceptions out of 8191 17 | 0i,0n,0p,1b,6s stack positions out of 5000i,500n,10000p,200000b,80000s 18 | 19 | No pages of output. 20 | -------------------------------------------------------------------------------- /single_file_model/deepblue.sty: -------------------------------------------------------------------------------- 1 | %-------------------------------------------------------- 2 | % NOTE: 1) This is an UNOFFICIAL LaTeX beamer style for 3 | % Nankai University. 4 | % 2) This is not exactly a beamer style, rather 5 | % it contains two LaTeX files to be inserted 6 | % in the slides' source file. 7 | % 3) These files are based on Edward Hartley's work 8 | % 9 | % 4) Complaints or suggestions are always welcome. 10 | % 11 | %-------------------------------------------------------- 12 | 13 | %-------------------------------------------------------- 14 | % Require tikz to do some text positioning 15 | %-------------------------------------------------------- 16 | \usepackage{tikz} 17 | 18 | %-------------------------------------------------------- 19 | % Use Helvetica rather than Computer Modern Sans Serif 20 | % Comment this out if you prefer Computer Modern 21 | %\usepackage{times} 22 | %-------------------------------------------------------- 23 | %\usepackage{helvet} 24 | 25 | \usepackage{comment} 26 | 27 | %-------------------------------------------------------- 28 | % If you wish to use Arial, and have the winfonts package 29 | % correctly installed uncomment the following to make the 30 | % default sans serif font Arial 31 | %-------------------------------------------------------- 32 | %\usepackage{winfonts} 33 | %\usepackage[T1]{fontenc} 34 | %\renewcommand{\sfdefault}{cmr} 35 | %-------------------------------------------------------- 36 | 37 | %-------------------------------------------------------- 38 | % Get rid of the navigation bar 39 | %-------------------------------------------------------- 40 | \beamertemplatenavigationsymbolsempty 41 | 42 | %-------------------------------------------------------- 43 | % Define how the page counter will be displayed on slides 44 | %-------------------------------------------------------- 45 | \newcommand{\footlinepagecounter}% 46 | {\insertframenumber{}/\inserttotalframenumber} 47 | %-------------------------------------------------------- 48 | 49 | % Layout scheme for outer elements: split(give ALL section & subsection) or infolines(give CURRENT section & subsection) 50 | %\useoutertheme{infolines} 51 | \useoutertheme[subsection=false]{miniframes} 52 | 53 | % Color scheme for outer elements: use background colors 54 | \usecolortheme{whale} 55 | 56 | % Layout scheme for inner elements: rounded elements 57 | %\useinnertheme[shadow]{rounded} 58 | \useinnertheme{rounded} 59 | 60 | % Color scheme for inner elements: use foreground colors 61 | \usecolortheme{orchid} 62 | 63 | % Itemize items: default (triangle), circle, square, ball 64 | \setbeamertemplate{itemize items}[default] 65 | 66 | % Enumerate items: default, circle, square, ball 67 | \setbeamertemplate{enumerate items}[circle] 68 | 69 | % Outline: default, sections numbered, subsections numbered, circle, square, ball, ball unnumbered 70 | % symbol in outline 71 | \setbeamertemplate{sections/subsections in toc}[square] 72 | 73 | % list the outline at the beginning of each section 74 | \AtBeginSection[] % Do nothing for \subsection* 75 | { 76 | \begin{frame} 77 | \frametitle{目录} 78 | \tableofcontents[currentsection] 79 | \end{frame} 80 | } 81 | 82 | \setbeamertemplate{caption}[numbered] 83 | 84 | \setbeamertemplate{theorems}[numbered] 85 | 86 | % General blocks: 87 | \setbeamertemplate{blocks}[rounded][shadow=true] 88 | 89 | % Background 90 | %\pgfdeclareimage[width=\paperwidth,height=0.95\paperheight]{bg}{nkbackground.png} 91 | %\setbeamertemplate{background}{\pgfuseimage{bg}} 92 | 93 | %-------------------------------------------------------- 94 | % Set up some lengths 95 | %-------------------------------------------------------- 96 | % A paper width for the footline 97 | \newlength{\halfpaperwidth} 98 | 99 | % The left margin 100 | \newlength{\headingleftmargin} 101 | % Paper width minus margins 102 | \newlength{\headingwidthminusmargins} 103 | % Height of the heading block 104 | \newlength{\headingheight} 105 | % Height of the footer block 106 | \newlength{\footerheight} 107 | 108 | % The height for the titlepageheader in the title page 109 | \newlength{\titlepageheaderheight} 110 | % The height for the footer in the title page 111 | \newlength{\titlepagefooterheight} 112 | % The height for the main title block 113 | \newlength{\titlepagemaintitleblockheight} 114 | % The height for the subtitle block 115 | \newlength{\titlepagesubtitleblockheight} 116 | % The height for the name and date block 117 | \newlength{\titlepagenamedateblockheight} 118 | % The height for the institution block 119 | %\newlength{\titlepageinstitutionheight} 120 | 121 | % The lengths for spacing between name and date 122 | \newlength{\titlepagespaceundername} 123 | \newlength{\titlepagespaceunderdate} 124 | 125 | % The length for the light thin bar 126 | 127 | 128 | \setlength{\headingleftmargin}{0.05573\paperwidth} 129 | \setlength{\headingwidthminusmargins}{\paperwidth} 130 | \addtolength{\headingwidthminusmargins}{-\headingleftmargin} 131 | \setlength{\headingheight}{0.1\paperheight} 132 | \setlength{\footerheight}{0.09017\paperheight} 133 | 134 | \setlength{\titlepageheaderheight}{0.1261\paperheight} 135 | \setlength{\titlepagefooterheight}{0.0\paperheight} 136 | \setlength{\titlepagemaintitleblockheight}{0.1761\paperheight} 137 | \setlength{\titlepagesubtitleblockheight}{0.1\paperheight} 138 | \setlength{\titlepagenamedateblockheight}{0.4261\paperheight} 139 | %\setlength{\titlepageinstitutionheight}{0.95cm} 140 | 141 | \setlength{\titlepagespaceundername}{16pt} 142 | \setlength{\titlepagespaceunderdate}{5pt} 143 | 144 | %-------------------------------------------------------- 145 | 146 | %-------------------------------------------------------- 147 | % Set up the scheme for use 148 | % with beamer 149 | %-------------------------------------------------------- 150 | 151 | % Define colour names 152 | \definecolor{nkpurple}{rgb}{0.44140 0.10156 0.37109} %#(113,26,95) 153 | \definecolor{deepblue}{rgb}{0 0 0.6} 154 | %\definecolor{deepblue}{rgb}{0.1 0.01 0.6} % 155 | %\setbeamercolor{nktitle}{bg=white,fg=nkpurple} 156 | %\setbeamertemplate{title page}[default][colsep=-4bp,rounded=true] 157 | % Set element colours 158 | \setbeamercolor{title}{bg=black!5!white, fg=deepblue} 159 | \setbeamercolor{subtitle}{bg=white, fg=deepblue} 160 | \setbeamercolor{titlepageheader}{bg=white,fg=black} 161 | \setbeamercolor{titlepagefooter}{bg=white,fg=black} 162 | \setbeamercolor{block title}{fg=white,bg=deepblue} 163 | \setbeamercolor{block body}{fg=black,bg=deepblue!10!white} 164 | \setbeamercolor{structure}{bg=white, fg=deepblue} 165 | % \setbeamercolor{alerted text}{fg=darkOrange} 166 | 167 | %-------------------------------------------------------- 168 | % Set font sizes 169 | %-------------------------------------------------------- 170 | \setbeamerfont{frametitle}{size=\large,series=\bfseries} 171 | \setbeamerfont{title}{size=\Large,series=\bfseries} 172 | \setbeamerfont{author}{size=\normalsize} 173 | \setbeamerfont{date}{size=\scriptsize} 174 | \setbeamerfont{subtitle}{size=\footnotesize,series=\bfseries} 175 | \setbeamerfont{block title}{size=\normalsize} 176 | \setbeamerfont{structure}{size=\normalsize,series=\bfseries} 177 | 178 | \setbeamertemplate{itemize item}{\scriptsize\raise1.25pt\hbox{\textbullet}} 179 | \setbeamertemplate{itemize subitem}{\scriptsize\raise1.25pt\hbox{\textbullet}} 180 | \setbeamertemplate{itemize subsubitem}{\scriptsize\raise1.25pt\hbox{\textbullet}} 181 | 182 | %----------------------------------------------------- 183 | % Define title page 184 | %----------------------------------------------------- 185 | 186 | \setbeamertemplate{title page} 187 | {% 188 | \begin{beamercolorbox}[sep=0cm,right,wd=\paperwidth,ht=\titlepageheaderheight,rightskip=\headingleftmargin]{titlepageheader} 189 | %\includegraphics[width=0.2720\paperwidth]{nk_logo.png} 190 | \vskip0.0361\titlepageheaderheight 191 | \end{beamercolorbox} 192 | \begin{beamercolorbox}[center,wd=0.87\paperwidth,ht=\titlepagemaintitleblockheight,rounded=true,shadow=true]{title} 193 | \usebeamerfont{title}\inserttitle\\ 194 | \vskip\titlepagespaceunderdate% 195 | \usebeamerfont{subtitle}\insertsubtitle 196 | \vskip\titlepagespaceunderdate% 197 | \end{beamercolorbox} 198 | %\nointerlineskip% 199 | %\vskip-1pt% 200 | \begin{beamercolorbox}[center,wd=\paperwidth,ht=\titlepagenamedateblockheight]{white} 201 | \usebeamerfont{author}\insertauthor\\ 202 | \vskip\titlepagespaceunderdate% 203 | \usebeamerfont{institute}\insertinstitute\\ 204 | \vskip\titlepagespaceunderdate% 205 | \usebeamerfont{date}\insertdate 206 | \vskip\titlepagespaceunderdate% 207 | \end{beamercolorbox}% 208 | \begin{beamercolorbox}[center,wd=\paperwidth,ht=\titlepagefooterheight]{titlepagefooter} 209 | \end{beamercolorbox} 210 | } 211 | \begin{comment} 212 | \begin{beamercolorbox}[center,wd=0.92\paperwidth,ht=\titlepagemaintitleblockheight,rounded=true,shadow=true]{title} 213 | \usebeamerfont{title}\inserttitle\\ 214 | \vskip\titlepagespaceunderdate% 215 | \usebeamerfont{subtitle}\insertsubtitle 216 | \vskip\titlepagespaceunderdate% 217 | \end{beamercolorbox}% 218 | \nointerlineskip% 219 | \vskip-1pt% 220 | \begin{beamercolorbox}[center,wd=\paperwidth,ht=\titlepagesubtitleblockheight]{white} 221 | %\tikz{\node[inner sep=0cm, text width=\paperwidth, minimum height=\titlepagesubtitleblockheight]{ 222 | \usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle 223 | \end{beamercolorbox}% 224 | \end{comment} 225 | 226 | % Footline: AUTHOR | TITLE | DATE FRAMENUMBER 227 | \defbeamertemplate*{footline}{ru theme}{% 228 | \leavevmode% 229 | \hbox{% 230 | \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% 231 | \usebeamerfont{author in head/foot}\insertshortauthor~~(\insertshortinstitute) 232 | \end{beamercolorbox}% 233 | \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}% 234 | \usebeamerfont{title in head/foot}\insertshorttitle 235 | \end{beamercolorbox}% 236 | \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}% 237 | \usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em} 238 | \insertframenumber{} / \inserttotalframenumber\hspace*{2ex} 239 | \end{beamercolorbox}}% 240 | \vskip0pt% 241 | } 242 | 243 | \pgfdeclarehorizontalshading[frametitle.bg,frametitle right.bg]{beamer@frametitleshade}{\paperheight}{% 244 | color(0pt)=(frametitle.bg); 245 | color(\paperwidth)=(frametitle right.bg)} 246 | 247 | \defbeamertemplate*{frametitle}{ru theme}{% 248 | \nointerlineskip% 249 | %\vskip-2pt% 250 | \hbox{\leavevmode 251 | \advance\beamer@leftmargin by -12bp% 252 | \advance\beamer@rightmargin by -12bp% 253 | \beamer@tempdim=\textwidth% 254 | \advance\beamer@tempdim by \beamer@leftmargin% 255 | \advance\beamer@tempdim by \beamer@rightmargin% 256 | \hskip-\Gm@lmargin\hbox{% 257 | \setbox\beamer@tempbox=\hbox{\begin{minipage}[b]{\paperwidth}% 258 | \vbox{}\vskip-.75ex% 259 | \leftskip0.3cm% 260 | \rightskip0.3cm plus1fil\leavevmode 261 | \usebeamerfont*{frametitle}\insertframetitle% 262 | \ifx\insertframesubtitle\@empty% 263 | \strut\par% 264 | \else 265 | \par{\usebeamerfont*{framesubtitle}{\usebeamercolor[fg]{framesubtitle}\insertframesubtitle}\strut\par}% 266 | \fi% 267 | \nointerlineskip 268 | \vbox{}% 269 | \end{minipage}}% 270 | \beamer@tempdim=\ht\beamer@tempbox% 271 | \advance\beamer@tempdim by 2pt% 272 | \begin{pgfpicture}{0.1mm}{0pt}{1.01\paperwidth}{\beamer@tempdim} 273 | \usebeamercolor{frametitle right} 274 | \pgfpathrectangle{\pgfpointorigin}{\pgfpoint{\paperwidth}{\beamer@tempdim}} 275 | \pgfusepath{clip} 276 | \pgftext[left,base]{\pgfuseshading{beamer@frametitleshade}} 277 | \end{pgfpicture} 278 | \hskip-\paperwidth% 279 | \box\beamer@tempbox% 280 | }% 281 | \hskip-\Gm@rmargin% 282 | }% 283 | % \nointerlineskip 284 | % \vskip-0.2pt 285 | % \hbox to\textwidth{\hskip-\Gm@lmargin\pgfuseshading{beamer@topshade}\hskip-\Gm@rmargin} 286 | % \vskip-2pt 287 | } 288 | \setbeamercolor{frametitle}{bg=black!5!white,fg=deepblue} 289 | -------------------------------------------------------------------------------- /single_file_model/document_model.tex: -------------------------------------------------------------------------------- 1 | \documentclass[hyperref,UTF8,12px,a4paper]{ctexart} % use larger type; default would be 10pt 2 | %a4paper: width = 17cm 3 | 4 | % \usepackage[utf8]{inputenc} % set input encoding (not needed with XeLaTeX) 5 | 6 | %%% PAGE DIMENSIONS 7 | \usepackage[margin=1in]{geometry} % to change the page dimensions 8 | %\geometry{a4paper} or letterpaper (US) or a5paper or.... 9 | % \geometry{margin=2in} % for example, change the margins to 2 inches all round 10 | % \geometry{landscape} % set up the page for landscape 11 | % read geometry.pdf for detailed page layout information 12 | \usepackage{xeCJK} 13 | \usepackage{graphicx} % support the \includegraphics command and options 14 | 15 | % \usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent 16 | 17 | %%% PACKAGES 18 | \usepackage{abstract} % for abstract 19 | \usepackage{amsmath} 20 | \usepackage{booktabs} % for much better looking tables 21 | \usepackage{cite} % reference 22 | \usepackage{array} % for better arrays (eg matrices) in maths 23 | \usepackage{paralist} % very flexible & customisable lists (eg. enumerate/itemize, etc.) 24 | \usepackage{verbatim} % adds environment for commenting out blocks of text & for better verbatim 25 | \usepackage{subfigure} % make it possible to include more than one captioned figure/table in a single float 26 | % These packages are all incorporated in the memoir class to one degree or another... 27 | \usepackage{cases} %equation set 28 | \usepackage{multirow} %use table 29 | \usepackage{lastpage} %get the total page 30 | \usepackage{algorithm} 31 | \usepackage{algorithmic} 32 | \usepackage{enumerate} 33 | \usepackage{wrapfig} 34 | \usepackage{comment} % comment for more than one line 35 | \usepackage{hyperref} 36 | \hypersetup{colorlinks,linkcolor=black,anchorcolor=black,citecolor=black, 37 | pdfstartview=FitH,bookmarksnumbered=true,bookmarksopen=true,} % set href in tex & pdf 38 | 39 | %%% HEADERS & FOOTERS 40 | \usepackage{fancyhdr} % This should be set AFTER setting up the page geometry 41 | \pagestyle{fancy} % options: empty , plain , fancy 42 | \fancyhf{} 43 | \renewcommand{\headrulewidth}{0.5pt} % customise the layout... 44 | \renewcommand{\footrulewidth}{0.5pt} 45 | \lhead{}\chead{学号:xxx\quad 姓名:yyy}\rhead{} 46 | \lfoot{}\cfoot{第 \thepage 页,共 \pageref{LastPage} 页}\rfoot{} 47 | 48 | %%% SECTION TITLE APPEARANCE 49 | \usepackage{sectsty} 50 | \allsectionsfont{\sffamily\mdseries\upshape} % (See the fntguide.pdf for font help) 51 | % (This matches ConTeXt defaults) 52 | \usepackage{indentfirst} 53 | \setlength{\parindent}{2em} 54 | \numberwithin{equation}{section} %formed the equation number as (1.1)... 55 | \renewcommand\contentsname{\heiti 目录} 56 | \renewcommand\refname{\heiti 参考文献} 57 | %%% ToC (table of contents) APPEARANCE 58 | \usepackage[notlot,notlof]{tocbibind} % Put the bibliography in the ToC 59 | \usepackage[titles,subfigure]{tocloft} % Alter the style of the Table of Contents 60 | %\renewcommand{\cftsecfont}{\rmfamily\mdseries\upshape} 61 | %\renewcommand{\cftsecpagefont}{\rmfamily\mdseries\upshape} % No bold! 62 | 63 | %%% END Article customizations 64 | 65 | %%% The "real" document content comes below... 66 | 67 | \title{作业} 68 | \author{first\\ 69 | second} 70 | %\date{} Activate to display a given date or no date (if empty), 71 | % otherwise the current date is printed 72 | 73 | \begin{document} 74 | \maketitle 75 | \begin{figure}[!htb] 76 | \centering 77 | \includegraphics[width=4.5cm,height=7.5cm]{nkbackground.png} 78 | \end{figure} 79 | \thispagestyle{fancy} % set the page style of the first page 80 | 81 | {\noindent \Large \heiti 摘要}\\ 82 | % Chinese abstract 83 | \par 84 | {\noindent \Large \textbf{Abstract}}\\ 85 | % English abstract 86 | \par 87 | {\noindent \Large \heiti 关键词}\\ 88 | % Chinese keywords 89 | \par 90 | {\noindent \Large \textbf{Keywords}}\\ 91 | % English keywords 92 | \section{第一章} 93 | \subsection{第一节} 94 | % \tableofcontents 95 | \newpage 96 | \begin{figure}[!htb] 97 | \centering 98 | \includegraphics[width=12cm]{nkbackground.png} 99 | \caption{设计草图 by xxx} 100 | \end{figure} 101 | 102 | \begin{description} 103 | \item[抗摔耐用] 1m抗摔,在精度前提下考虑防护 104 | \item[两次注胶] 对模具不仅进行初注胶,而且进行重复加工软注胶 105 | \item[精度更强] 全铝合金传感器,并进行黑体校准 106 | \item[蜂鸣报警] 超过量程时进行蜂鸣报警 107 | \item[屏幕显示] 我们可以显示最大值(MAX),最小值(MIN),最多存储数据(STO),高温预警(HAL),低温预警(LAL),发射率设置(EMS),平均值(AVG),基本满足民用需求 108 | \end{description} 109 | 110 | \newpage 111 | \begin{figure}[!htb] 112 | \centering 113 | \includegraphics[width=15cm]{nkbackground.png} 114 | \caption{设计草图 by yyy} 115 | \end{figure} 116 | 117 | \newpage 118 | \begin{figure}[!htb] 119 | \centering 120 | \includegraphics[width=15cm]{nkbackground.png} 121 | \caption{设计草图 by zzz} 122 | \end{figure} 123 | 124 | \begin{comment} 125 | \begin{itemize} 126 | \item 加入激光指示,远距离自动放大激光点大小 127 | \item 握柄采用流线型设计 128 | \item 过一段时间后可以自动关机 129 | \end{itemize} 130 | \end{comment} 131 | \end{document} 132 | -------------------------------------------------------------------------------- /single_file_model/recent.bib: -------------------------------------------------------------------------------- 1 | @inproceedings{sdcn2020, 2 | author = {Bo, Deyu and Wang, Xiao and Shi, Chuan and Zhu, Meiqi and Lu, Emiao and Cui, Peng}, 3 | title = {Structural Deep Clustering Network}, 4 | year = {2020}, 5 | booktitle = {Proceedings of The Web Conference (WWW) 2020}, 6 | pages = {1400–1410}, 7 | } -------------------------------------------------------------------------------- /single_file_model/recent.tex: -------------------------------------------------------------------------------- 1 | \documentclass[hyperref,UTF8,11px,a4paper]{article} % use larger type; default would be 10pt 2 | %a4paper: width = 17cm 3 | \usepackage{ctex} 4 | %\usepackage{xeCJK} 5 | %\usepackage[utf8]{inputenc}set input encoding (not needed with XeLaTeX) 6 | 7 | %%% PAGE DIMENSIONS 8 | \usepackage[margin=1in]{geometry} % to change the page dimensions 9 | %\geometry{a4paper} or letterpaper (US) or a5paper or.... 10 | % \geometry{margin=2in} % for example, change the margins to 2 inches all round 11 | % \geometry{landscape} % set up the page for landscape 12 | % read geometry.pdf for detailed page layout information 13 | \usepackage{color} 14 | \usepackage{graphicx} % support the \includegraphics command and options 15 | \graphicspath{{fig/}} % storage figure in a sub-folder 16 | % \usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent 17 | %\setmonofont{Courier New} 18 | %%% PACKAGES 19 | \usepackage{abstract} % for abstract 20 | \usepackage{amsmath} 21 | \usepackage{amsthm} 22 | \newtheorem{theorem}{定理} 23 | \newtheorem{defn}{定义} 24 | % \newtheorem{corollary}{推论} 25 | % \newtheorem{example}{例} 26 | \usepackage{amsfonts} 27 | %\usepackage[bb=boondox]{mathalfa} 28 | \usepackage{amssymb} 29 | %\usepackage{mathrsfs} 30 | \usepackage{url} 31 | \usepackage{hyperref} 32 | \hypersetup{%colorlinks,linkcolor=black,anchorcolor=black, 33 | citecolor=blue, 34 | pdfstartview=FitH,bookmarksnumbered=true,bookmarksopen=true,} % set href in tex & pdf 35 | \usepackage{booktabs} % for much better looking tables 36 | %\usepackage{cite} % reference 37 | \usepackage[authoryear,round]{natbib} 38 | \renewcommand{\bibsection}{References} 39 | % \usepackage[hyperref=true,backend=biber,style=authoryear]{biblatex} 40 | % \addbibresource{reference.bib} 41 | % \defbibheading{bibliography}[\refname]{\section*{参考文献}} 42 | \usepackage{array} % for better arrays (eg matrices) in maths 43 | \usepackage{paralist} % very flexible & customisable lists (eg. enumerate/itemize, etc.) 44 | \usepackage{verbatim} % adds environment for commenting out blocks of text & for better verbatim 45 | \usepackage{subfigure} % make it possible to include more than one captioned figure/table in a single float 46 | % These packages are all incorporated in the memoir class to one degree or another... 47 | \usepackage{cases} %equation set 48 | \usepackage{multirow} %use table 49 | \usepackage{lastpage} %get the total page 50 | \usepackage{algorithm} 51 | \usepackage{algorithmic} 52 | \renewcommand{\algorithmicrequire}{ \textbf{Input:}} %Use Input in the format of Algorithm 53 | \renewcommand{\algorithmicensure}{ \textbf{Output:}} %UseOutput in the format of Algorithm 54 | \usepackage{comment} % comment for more than one line 55 | \usepackage{listings} 56 | \lstset{tabsize=4, keepspaces=true, 57 | xleftmargin=2em,xrightmargin=0em, aboveskip=1em, 58 | %backgroundcolor=\color{gray!20}, % 定义背景颜色 59 | frame=none, % 表示不要边框 60 | extendedchars=false, % 解决代码跨页时,章节标题,页眉等汉字不显示的问题 61 | numberstyle=\ttfamily, 62 | basicstyle=\ttfamily, 63 | keywordstyle=\color{blue}\bfseries, 64 | breakindent=10pt, 65 | identifierstyle=, % nothing happens 66 | commentstyle=\color{green}\small, % 注释的设置 67 | morecomment=[l][\color{green}]{\#}, 68 | numbers=left,stepnumber=1,numberstyle=\scriptsize, 69 | showstringspaces=false, 70 | showspaces=false, 71 | flexiblecolumns=true, 72 | breaklines=true, breakautoindent=true,breakindent=4em, 73 | escapeinside={/*@}{@*/}, 74 | } 75 | 76 | 77 | %%% HEADERS & FOOTERS 78 | \usepackage{fancyhdr} % This should be set AFTER setting up the page geometry 79 | \pagestyle{fancy} % options: empty , plain , fancy 80 | \fancyhf{} 81 | %in xelatex use: 82 | %\lhead{\small{学号:2120190352}}\chead{ \quad }\rhead{\small{姓名:石壮威}} 83 | \lfoot{}\cfoot{\small{第 \thepage 页,共 \pageref{LastPage} 页}}\rfoot{} 84 | \renewcommand{\headrulewidth}{0.5pt} % customise the layout... 85 | \renewcommand{\footrulewidth}{0.5pt} 86 | %\usepackage{float} 87 | %%% SECTION TITLE APPEARANCE 88 | \usepackage{sectsty} 89 | \allsectionsfont{\sffamily\mdseries\upshape} % (See the fntguide.pdf for font help) 90 | % (This matches ConTeXt defaults) 91 | \usepackage{indentfirst} 92 | \setlength{\parindent}{2em} 93 | %\numberwithin{equation}{section} %formed the equation number as (1.1)... 94 | 95 | %%% ToC (table of contents) APPEARANCE 96 | \usepackage[notlot,notlof]{tocbibind} % Put the bibliography in the ToC 97 | \usepackage[titles,subfigure]{tocloft} % Alter the style of the Table of Contents 98 | %\renewcommand{\cftsecfont}{\rmfamily\mdseries\upshape} 99 | %\renewcommand{\cftsecpagefont}{\rmfamily\mdseries\upshape} % No bold! 100 | 101 | %\renewcommend\tableofcontents{\heiti 目录} 102 | \renewcommand{\figurename}{图} 103 | \renewcommand{\tablename}{表} 104 | \renewcommand{\contentsname}{\heiti 目录} 105 | \renewcommand{\bibname}{\heiti 参考文献} 106 | %%% END Article customizations 107 | 108 | %%% The "real" document content comes below... 109 | 110 | \title{算法} 111 | \author{XXX} 112 | \date{2020年6月20日} 113 | %Activate to display a given date or no date (if empty), 114 | % otherwise the current date is printed 115 | 116 | \begin{document} 117 | \maketitle 118 | \thispagestyle{fancy} % set the page style of the first page 119 | 120 | \section{深度学习} 121 | 122 | \subsection{聚类} 123 | 124 | Clustering is a fundamental task in data analysis. Motivated by the great success of Graph Convolutional Network (GCN) in encoding the graph structure, \citet{sdcn2020} propose a {\color{red} Structural Deep Clustering Network} (SDCN) to integrate the structural information into deep clustering. 125 | 126 | 实验\footnote{代码见\url{https://github.com}},数据如表\ref{tab:gc}所示。 127 | 128 | \begin{table}[] 129 | \centering 130 | \caption{分类准确率} 131 | \label{tab:gc} 132 | \begin{tabular}{@{}ccccc@{}} 133 | \toprule 134 | & 训练集样本数 & 测试集样本数 & AUROC & AUPR \\ \midrule 135 | - & - & - & - & - \\ 136 | - & - & - & - & - \\ 137 | - & - & - & - & - \\ 138 | - & - & - & - & - \\ \bottomrule 139 | \end{tabular} 140 | \end{table} 141 | 142 | \texttt{Dataset} 143 | 144 | 写作 145 | \begin{equation} 146 | \begin{split} 147 | H&=W_1X\\ 148 | Y&=W_2H\\ 149 | Z&=W_3Y 150 | \end{split} 151 | \end{equation} 152 | 153 | \begin{align} 154 | L&=C_1\\ 155 | &=-C_2\\ 156 | &=-C_3 157 | \end{align} 158 | 159 | \begin{align} 160 | L=C_4 161 | \end{align} 162 | 163 | \bibliographystyle{plainnat} 164 | \bibliography{recent} 165 | 166 | \end{document} -------------------------------------------------------------------------------- /single_file_model/typora_monokai.css: -------------------------------------------------------------------------------- 1 | /* 2 | This is a CSS file using on the Markdown editor Typora, including the Monokai theme of code-blocks. 3 | Maybe it's not about the topic of this respository, however, I'd like to 4 | use this place as a copy of this CSS form. 5 | */ 6 | 7 | :root { 8 | --side-bar-bg-color: #fafafa; 9 | --control-text-color: #777; 10 | } 11 | 12 | /* 13 | These are font refer block from the GitHub theme on Typora, 14 | and I saved it here as a default. 15 | */ 16 | 17 | /* 18 | @include-when-export url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,700,400&subset=latin,latin-ext); 19 | @font-face { 20 | font-family: 'Open Sans'; 21 | font-style: normal; 22 | font-weight: normal; 23 | src: local('Open Sans Regular'),url('./github/400.woff') format('woff') 24 | } 25 | @font-face { 26 | font-family: 'Open Sans'; 27 | font-style: italic; 28 | font-weight: normal; 29 | src: local('Open Sans Italic'),url('./github/400i.woff') format('woff') 30 | } 31 | @font-face { 32 | font-family: 'Open Sans'; 33 | font-style: normal; 34 | font-weight: bold; 35 | src: local('Open Sans Bold'),url('./github/700.woff') format('woff') 36 | } 37 | @font-face { 38 | font-family: 'Open Sans'; 39 | font-style: italic; 40 | font-weight: bold; 41 | src: local('Open Sans Bold Italic'),url('./github/700i.woff') format('woff') 42 | } 43 | */ 44 | 45 | html { 46 | font-size: 16px; 47 | } 48 | 49 | body { 50 | font-family: "Cambria","Open Sans","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif; 51 | /* here we change the main font */ 52 | color: rgb(51, 51, 51); 53 | line-height: 1.6; 54 | } 55 | 56 | #write{ 57 | max-width: 860px; 58 | margin: 0 auto; 59 | padding: 20px 30px 40px 30px; 60 | padding-top: 20px; 61 | padding-bottom: 100px; 62 | } 63 | #write > ul:first-child, 64 | #write > ol:first-child{ 65 | margin-top: 30px; 66 | } 67 | 68 | body > *:first-child { 69 | margin-top: 0 !important; 70 | } 71 | body > *:last-child { 72 | margin-bottom: 0 !important; 73 | } 74 | a { 75 | color: #4183C4; 76 | } 77 | h1, 78 | h2, 79 | h3, 80 | h4, 81 | h5, 82 | h6 { 83 | position: relative; 84 | margin-top: 1rem; 85 | margin-bottom: 1rem; 86 | font-weight: bold; 87 | line-height: 1.4; 88 | cursor: text; 89 | } 90 | h1:hover a.anchor, 91 | h2:hover a.anchor, 92 | h3:hover a.anchor, 93 | h4:hover a.anchor, 94 | h5:hover a.anchor, 95 | h6:hover a.anchor { 96 | /*background: url("../../images/modules/styleguide/para.png") no-repeat 10px center;*/ 97 | text-decoration: none; 98 | } 99 | h1 tt, 100 | h1 code { 101 | font-size: inherit; 102 | } 103 | h2 tt, 104 | h2 code { 105 | font-size: inherit; 106 | } 107 | h3 tt, 108 | h3 code { 109 | font-size: inherit; 110 | } 111 | h4 tt, 112 | h4 code { 113 | font-size: inherit; 114 | } 115 | h5 tt, 116 | h5 code { 117 | font-size: inherit; 118 | } 119 | h6 tt, 120 | h6 code { 121 | font-size: inherit; 122 | } 123 | h1 { 124 | padding-bottom: .3em; 125 | font-size: 2.25em; 126 | line-height: 1.2; 127 | border-bottom: 1px solid #eee; 128 | } 129 | h2 { 130 | padding-bottom: .3em; 131 | font-size: 1.75em; 132 | line-height: 1.225; 133 | border-bottom: 1px solid #eee; 134 | } 135 | h3 { 136 | font-size: 1.5em; 137 | line-height: 1.43; 138 | } 139 | h4 { 140 | font-size: 1.25em; 141 | } 142 | h5 { 143 | font-size: 1em; 144 | } 145 | h6 { 146 | font-size: 1em; 147 | color: #777; 148 | } 149 | p, 150 | blockquote, 151 | ul, 152 | ol, 153 | dl, 154 | table{ 155 | margin: 0.8em 0; 156 | } 157 | li>ol, 158 | li>ul { 159 | margin: 0 0; 160 | } 161 | hr { 162 | height: 4px; 163 | padding: 0; 164 | margin: 16px 0; 165 | background-color: #e7e7e7; 166 | border: 0 none; 167 | overflow: hidden; 168 | box-sizing: content-box; 169 | border-bottom: 1px solid #ddd; 170 | } 171 | 172 | body > h2:first-child { 173 | margin-top: 0; 174 | padding-top: 0; 175 | } 176 | body > h1:first-child { 177 | margin-top: 0; 178 | padding-top: 0; 179 | } 180 | body > h1:first-child + h2 { 181 | margin-top: 0; 182 | padding-top: 0; 183 | } 184 | body > h3:first-child, 185 | body > h4:first-child, 186 | body > h5:first-child, 187 | body > h6:first-child { 188 | margin-top: 0; 189 | padding-top: 0; 190 | } 191 | a:first-child h1, 192 | a:first-child h2, 193 | a:first-child h3, 194 | a:first-child h4, 195 | a:first-child h5, 196 | a:first-child h6 { 197 | margin-top: 0; 198 | padding-top: 0; 199 | } 200 | h1 p, 201 | h2 p, 202 | h3 p, 203 | h4 p, 204 | h5 p, 205 | h6 p { 206 | margin-top: 0; 207 | } 208 | li p.first { 209 | display: inline-block; 210 | } 211 | ul, 212 | ol { 213 | padding-left: 30px; 214 | } 215 | ul:first-child, 216 | ol:first-child { 217 | margin-top: 0; 218 | } 219 | ul:last-child, 220 | ol:last-child { 221 | margin-bottom: 0; 222 | } 223 | blockquote { 224 | font-family: "Cambria", "Kaiti"; /* a change of blockquote font */ 225 | border-left: 4px solid #dddddd; 226 | padding: 0 15px; 227 | color: #777777; 228 | } 229 | blockquote blockquote { 230 | padding-right: 0; 231 | } 232 | table { 233 | padding: 0; 234 | word-break: initial; 235 | } 236 | table tr { 237 | border-top: 1px solid #cccccc; 238 | margin: 0; 239 | padding: 0; 240 | } 241 | table tr:nth-child(2n) { 242 | background-color: #f8f8f8; 243 | } 244 | table tr th { 245 | font-weight: bold; 246 | border: 1px solid #cccccc; 247 | text-align: left; 248 | margin: 0; 249 | padding: 6px 13px; 250 | } 251 | table tr td { 252 | border: 1px solid #cccccc; 253 | text-align: left; 254 | margin: 0; 255 | padding: 6px 13px; 256 | } 257 | table tr th:first-child, 258 | table tr td:first-child { 259 | margin-top: 0; 260 | } 261 | table tr th:last-child, 262 | table tr td:last-child { 263 | margin-bottom: 0; 264 | } 265 | 266 | .CodeMirror-gutters { 267 | border-right: 1px solid #ddd; 268 | } 269 | 270 | .md-fences, 271 | code, 272 | tt { 273 | border: 1px solid #ddd; 274 | background-color: #f8f8f8; 275 | border-radius: 3px; 276 | padding: 0; 277 | font-family: Consolas, "Liberation Mono", Courier, monospace; 278 | padding: 2px 4px 0px 4px; 279 | font-size: 0.9em; 280 | } 281 | 282 | .md-fences { 283 | margin-bottom: 15px; 284 | margin-top: 15px; 285 | padding: 0.2em 1em; 286 | padding-top: 8px; 287 | padding-bottom: 6px; 288 | } 289 | .task-list{ 290 | padding-left: 0; 291 | } 292 | 293 | .task-list-item { 294 | padding-left:32px; 295 | } 296 | 297 | .task-list-item input { 298 | top: 3px; 299 | left: 8px; 300 | } 301 | 302 | @media screen and (min-width: 914px) { 303 | /*body { 304 | width: 854px; 305 | margin: 0 auto; 306 | }*/ 307 | } 308 | @media print { 309 | html { 310 | font-size: 13px; 311 | } 312 | table, 313 | pre { 314 | page-break-inside: avoid; 315 | } 316 | pre { 317 | word-wrap: break-word; 318 | } 319 | } 320 | 321 | /* default .md-fences 322 | .md-fences { 323 | background-color: #f8f8f8; 324 | } 325 | */ 326 | 327 | /* and in monokai it's replaced by */ 328 | .md-fences { 329 | background-color: #272822; 330 | color: #f8f8f2; 331 | border: none; 332 | } 333 | 334 | #write pre.md-meta-block { 335 | padding: 1rem; 336 | font-size: 85%; 337 | line-height: 1.45; 338 | background-color: #f7f7f7; 339 | border: 0; 340 | border-radius: 3px; 341 | color: #777777; 342 | margin-top: 0 !important; 343 | } 344 | 345 | .mathjax-block>.code-tooltip { 346 | bottom: .375rem; 347 | } 348 | 349 | #write>h3.md-focus:before{ 350 | left: -1.5625rem; 351 | top: .375rem; 352 | } 353 | #write>h4.md-focus:before{ 354 | left: -1.5625rem; 355 | top: .285714286rem; 356 | } 357 | #write>h5.md-focus:before{ 358 | left: -1.5625rem; 359 | top: .285714286rem; 360 | } 361 | #write>h6.md-focus:before{ 362 | left: -1.5625rem; 363 | top: .285714286rem; 364 | } 365 | .md-image>.md-meta { 366 | border: 1px solid #ddd; 367 | border-radius: 3px; 368 | font-family: Consolas, "Liberation Mono", Courier, monospace; 369 | padding: 2px 4px 0px 4px; 370 | font-size: 0.9em; 371 | color: inherit; 372 | } 373 | 374 | .md-tag{ 375 | color: inherit; 376 | } 377 | 378 | .md-toc { 379 | margin-top:20px; 380 | padding-bottom:20px; 381 | } 382 | 383 | .sidebar-tabs { 384 | border-bottom: none; 385 | } 386 | 387 | #typora-quick-open { 388 | border: 1px solid #ddd; 389 | background-color: #f8f8f8; 390 | } 391 | 392 | #typora-quick-open-item { 393 | background-color: #FAFAFA; 394 | border-color: #FEFEFE #e5e5e5 #e5e5e5 #eee; 395 | border-style: solid; 396 | border-width: 1px; 397 | } 398 | 399 | #md-notification:before { 400 | top: 10px; 401 | } 402 | 403 | 404 | 405 | /** focus mode */ 406 | .on-focus-mode blockquote { 407 | border-left-color: rgba(85, 85, 85, 0.12); 408 | } 409 | 410 | header, .context-menu, .megamenu-content, footer{ 411 | font-family: "Segoe UI", "Arial", sans-serif; 412 | } 413 | 414 | .file-node-content:hover .file-node-icon, 415 | .file-node-content:hover .file-node-open-state{ 416 | visibility: visible; 417 | } 418 | 419 | .mac-seamless-mode #typora-sidebar { 420 | background-color: #fafafa; 421 | background-color: var(--side-bar-bg-color); 422 | } 423 | 424 | .md-lang { 425 | color: #b4654d; 426 | } 427 | 428 | /* Based on Sublime Text's Monokai theme */ 429 | 430 | .cm-s-inner.CodeMirror { background: #272822; color: #f8f8f2; } 431 | .cm-s-inner div.CodeMirror-selected { background: #49483E; } 432 | .cm-s-inner .CodeMirror-line::selection, .cm-s-inner .CodeMirror-line > span::selection, .cm-s-inner .CodeMirror-line > span > span::selection { background: rgba(73, 72, 62, .99); } 433 | .cm-s-inner .CodeMirror-line::-moz-selection, .cm-s-inner .CodeMirror-line > span::-moz-selection, .cm-s-inner .CodeMirror-line > span > span::-moz-selection { background: rgba(73, 72, 62, .99); } 434 | .cm-s-inner .CodeMirror-gutters { background: #272822; border-right: 0px; } 435 | .cm-s-inner .CodeMirror-guttermarker { color: white; } 436 | .cm-s-inner .CodeMirror-guttermarker-subtle { color: #d0d0d0; } 437 | .cm-s-inner .CodeMirror-linenumber { color: #d0d0d0; } 438 | .cm-s-inner .CodeMirror-cursor { border-left: 1px solid #f8f8f0; } 439 | 440 | .cm-s-inner span.cm-comment { color: #75715e; } 441 | .cm-s-inner span.cm-atom { color: #ae81ff; } 442 | .cm-s-inner span.cm-number { color: #ae81ff; } 443 | 444 | .cm-s-inner span.cm-property, .cm-s-inner span.cm-attribute { color: #a6e22e; } 445 | .cm-s-inner span.cm-keyword { color: #f92672; } 446 | .cm-s-inner span.cm-builtin { color: #66d9ef; } 447 | .cm-s-inner span.cm-string { color: #e6db74; } 448 | 449 | .cm-s-inner span.cm-variable { color: #f8f8f2; } 450 | .cm-s-inner span.cm-variable-2 { color: #9effff; } 451 | .cm-s-inner span.cm-variable-3, .cm-s-inner span.cm-type { color: #66d9ef; } 452 | .cm-s-inner span.cm-def { color: #fd971f; } 453 | .cm-s-inner span.cm-bracket { color: #f8f8f2; } 454 | .cm-s-inner span.cm-tag { color: #f92672; } 455 | .cm-s-inner span.cm-header { color: #ae81ff; } 456 | .cm-s-inner span.cm-link { color: #ae81ff; } 457 | .cm-s-inner span.cm-error { background: #f92672; color: #f8f8f0; } 458 | 459 | .cm-s-inner .CodeMirror-activeline-background { background: #373831; } 460 | .cm-s-inner .CodeMirror-matchingbracket { 461 | text-decoration: underline; 462 | color: white !important; 463 | } 464 | 465 | .md-fences .code-tooltip { 466 | background-color: #272822; 467 | } 468 | 469 | .CodeMirror-selectedtext { 470 | background: #4a89dc; 471 | color: #fff !important; 472 | text-shadow: none; 473 | } 474 | -------------------------------------------------------------------------------- /single_file_model/warsaw_beamer_model.tex: -------------------------------------------------------------------------------- 1 | % !TEX TS-program = xelatex 2 | % !TEX encoding = UTF-8 Unicode 3 | 4 | % This file is a template using the "beamer" package to create slides for a talk or presentation 5 | % - Talk at a conference/colloquium. 6 | % - Talk length is about 20min. 7 | % - Style is ornate. 8 | 9 | % MODIFIED by Jonathan Kew, 2008-07-06 10 | % The header comments and encoding in this file were modified for inclusion with TeXworks. 11 | % The content is otherwise unchanged from the original distributed with the beamer package. 12 | 13 | \documentclass{beamer} 14 | \usepackage{ctex} 15 | \usefonttheme{professionalfonts} 16 | % Copyright 2004 by Till Tantau . 17 | % 18 | % In principle, this file can be redistributed and/or modified under 19 | % the terms of the GNU Public License, version 2. 20 | % 21 | % However, this file is supposed to be a template to be modified 22 | % for your own needs. For this reason, if you use this file as a 23 | % template and not specifically distribute it as part of a another 24 | % package/program, I grant the extra permission to freely copy and 25 | % modify this file as you see fit and even to delete this copyright 26 | % notice. 27 | \usepackage{xeCJK} 28 | \usepackage{graphicx} % support the \includegraphics command and options 29 | \graphicspath{{fig/}} % to storage figure in a sub-folder 30 | % \usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent 31 | 32 | %%% PACKAGES 33 | \usepackage{amsmath} 34 | \usepackage{booktabs} % for much better looking tables 35 | \usepackage{cite} % reference 36 | \usepackage{array} % for better arrays (eg matrices) in maths 37 | \usepackage{paralist} % very flexible & customisable lists (eg. enumerate/itemize, etc.) 38 | \usepackage{verbatim} % adds environment for commenting out blocks of text & for better verbatim 39 | \usepackage{subfig} % make it possible to include more than one captioned figure/table in a single float 40 | % These packages are all incorporated in the memoir class to one degree or another... 41 | \usepackage{cases} %equation set 42 | \usepackage{multirow} %use table 43 | \usepackage{lastpage} %get the total page 44 | \usepackage{algorithm} 45 | \usepackage{algorithmic} 46 | \usepackage{comment} % comment for more than one line 47 | \hypersetup{colorlinks,linkcolor=black,anchorcolor=black,citecolor=black, 48 | pdfstartview=FitH,bookmarksnumbered=true,bookmarksopen=true,} % set href in tex & pdf 49 | 50 | \mode 51 | { 52 | \usetheme{Warsaw} 53 | % or ... 54 | 55 | \setbeamercovered{transparent} 56 | % or whatever (possibly just delete it) 57 | } 58 | 59 | 60 | \usepackage[english]{babel} 61 | % or whatever 62 | 63 | \usepackage[utf8]{inputenc} 64 | % or whatever 65 | 66 | \usepackage{times} 67 | \usepackage[T1]{fontenc} 68 | % Or whatever. Note that the encoding and the font should match. If T1 69 | % does not look nice, try deleting the line with the fontenc. 70 | 71 | 72 | \title[机械] % (optional, use only with long paper titles) 73 | {Title As It Is In the Proceedings} 74 | 75 | \subtitle 76 | {Include Only If Paper Has a Subtitle} 77 | 78 | \author[Author, Another] % (optional, use only with lots of authors) 79 | {F.~Author\inst{1} \and S.~Another\inst{2}} 80 | % - Give the names in the same order as the appear in the paper. 81 | % - Use the \inst{?} command only if the authors have different 82 | % affiliation. 83 | 84 | \institute[Universities of Somewhere and Elsewhere] % (optional, but mostly needed) 85 | { 86 | \inst{1}% 87 | Department of Computer Science\\ 88 | University of Somewhere 89 | \and 90 | \inst{2}% 91 | Department of Theoretical Philosophy\\ 92 | University of Elsewhere} 93 | % - Use the \inst command only if there are several affiliations. 94 | % - Keep it simple, no one is interested in your street address. 95 | 96 | \date[CFP 2003] % (optional, should be abbreviation of conference name) 97 | {Conference on Fabulous Presentations, 2003} 98 | % - Either use conference name or its abbreviation. 99 | % - Not really informative to the audience, more for people (including 100 | % yourself) who are reading the slides online 101 | 102 | \subject{Theoretical Computer Science} 103 | % This is only inserted into the PDF information catalog. Can be left 104 | % out. 105 | 106 | 107 | 108 | % If you have a file called "university-logo-filename.xxx", where xxx 109 | % is a graphic format that can be processed by latex or pdflatex, 110 | % resp., then you can add a logo as follows: 111 | 112 | % \pgfdeclareimage[height=0.5cm]{university-logo}{university-logo-filename} 113 | % \logo{\pgfuseimage{university-logo}} 114 | 115 | 116 | 117 | % Delete this, if you do not want the table of contents to pop up at 118 | % the beginning of each subsection: 119 | \AtBeginSubsection[] 120 | { 121 | \begin{frame}{Outline} 122 | \tableofcontents[currentsection,currentsubsection] 123 | \end{frame} 124 | } 125 | 126 | 127 | % If you wish to uncover everything in a step-wise fashion, uncomment 128 | % the following command: 129 | 130 | %\beamerdefaultoverlayspecification{<+->} 131 | 132 | 133 | \begin{document} 134 | 135 | \begin{frame} 136 | \titlepage 137 | \end{frame} 138 | 139 | \begin{frame}{Outline} 140 | \tableofcontents 141 | % You might wish to add the option [pausesections] 142 | \end{frame} 143 | 144 | 145 | % Structuring a talk is a difficult task and the following structure 146 | % may not be suitable. Here are some rules that apply for this 147 | % solution: 148 | 149 | % - Exactly two or three sections (other than the summary). 150 | % - At *most* three subsections per section. 151 | % - Talk about 30s to 2min per frame. So there should be between about 152 | % 15 and 30 frames, all told. 153 | 154 | % - A conference audience is likely to know very little of what you 155 | % are going to talk about. So *simplify*! 156 | % - In a 20min talk, getting the main ideas across is hard 157 | % enough. Leave out details, even if it means being less precise than 158 | % you think necessary. 159 | % - If you omit details that are vital to the proof/implementation, 160 | % just say so once. Everybody will be happy with that. 161 | 162 | \section{Motivation} 163 | 164 | \subsection{The Basic Problem That We Studied} 165 | 166 | \begin{frame}{Make Titles Informative. Use Uppercase Letters.}{Subtitles are optional.} 167 | % - A title should summarize the slide in an understandable fashion 168 | % for anyone how does not follow everything on the slide itself. 169 | 170 | \begin{itemize} 171 | \item 172 | Use \texttt{itemize} a lot. 173 | \item 174 | Use very short sentences or short phrases. 175 | \end{itemize} 176 | \end{frame} 177 | 178 | \begin{frame}{Make Titles Informative.} 179 | 180 | You can create overlays\dots 181 | \begin{itemize} 182 | \item using the \texttt{pause} command: 183 | \begin{itemize} 184 | \item 185 | First item. 186 | \pause 187 | \item 188 | Second item. 189 | \end{itemize} 190 | \item 191 | using overlay specifications: 192 | \begin{itemize} 193 | \item<3-> 194 | First item. 195 | \item<4-> 196 | Second item. 197 | \end{itemize} 198 | \item 199 | using the general \texttt{uncover} command: 200 | \begin{itemize} 201 | \uncover<5->{\item 202 | First item.} 203 | \uncover<6->{\item 204 | Second item.} 205 | \end{itemize} 206 | \end{itemize} 207 | \end{frame} 208 | 209 | 210 | \subsection{Previous Work} 211 | 212 | \begin{frame}{Make Titles Informative.} 213 | 通常用分度圆\emph{circle}上的螺旋角$\beta$进行\underline{几何尺寸}的计算\cite{wang},一般有$\beta=8 \sim 20^{\circ}$,尺寸计算如表\ref{tab1}\\ 214 | \begin{table}[!hbp] 215 | \centering 216 | \begin{tabular}{c|c} 217 | \hline 218 | 名称 & 公式\\ 219 | \hline 220 | 分度圆直径 & $d=m_n\times z/\cos \beta$\\ 221 | 齿顶圆直径 & $d_a=m_n\times (z/\cos \beta+2)$\\ 222 | 齿根圆直径 & $d_f=d_a-4.5\times m_n$\\ 223 | \hline 224 | \end{tabular} 225 | \caption{齿轮参数的计算} 226 | \label{tab1} 227 | \end{table} 228 | 利用单圆弧绘法,即三点圆弧近似的方法计算齿轮参数\\ 229 | 230 | \end{frame} 231 | 232 | \begin{frame}{Make Titles Informative.} 233 | \begin{figure}[htb] 234 | \includegraphics[width=5cm,height=3cm]{cilun.png} 235 | \caption{齿轮计算方法示意图} 236 | \label{fig1} 237 | \end{figure} 238 | 在图\ref{fig1}中以齿轮轴孔为中心建立坐标系XOY,设圆周方程为:\\ 239 | \begin{equation} 240 | (x-x_c)^2+(y-y_c)^2=r_c^2 241 | \end{equation}\\ 242 | \end{frame} 243 | 244 | 245 | 246 | \section{Our Results/Contribution} 247 | 248 | \subsection{Main Results} 249 | 250 | \begin{frame}{Make Titles Informative.} 251 | \end{frame} 252 | 253 | \begin{frame}{Make Titles Informative.} 254 | \end{frame} 255 | 256 | \begin{frame}{Make Titles Informative.} 257 | \end{frame} 258 | 259 | 260 | \subsection{Basic Ideas for Proofs/扩展} 261 | 262 | \begin{frame}{Make Titles Informative.} 263 | \end{frame} 264 | 265 | \begin{frame}{Make Titles Informative.} 266 | \end{frame} 267 | 268 | \begin{frame}{Make Titles Informative.} 269 | \end{frame} 270 | 271 | 272 | 273 | \section*{Summary} 274 | 275 | \begin{frame}{Summary} 276 | 277 | % Keep the summary *very short*. 278 | \begin{itemize} 279 | \item 280 | The \alert{first main message} of your talk in one or two lines. 281 | \item 282 | The \alert{second main message} of your talk in one or two lines. 283 | \item 284 | Perhaps a \alert{third message}, but not more than that. 285 | \end{itemize} 286 | 287 | % The following outlook is optional. 288 | \vskip0pt plus.5fill 289 | \begin{itemize} 290 | \item 291 | Outlook 292 | \begin{itemize} 293 | \item 294 | Something you haven't solved. 295 | \item 296 | Something else you haven't solved. 297 | \end{itemize} 298 | \end{itemize} 299 | \end{frame} 300 | 301 | 302 | 303 | % All of the following is optional and typically not needed. 304 | \appendix 305 | \section*{\appendixname} 306 | \subsection*{For Further Reading} 307 | 308 | \begin{frame}[allowframebreaks] 309 | \frametitle{For Further Reading} 310 | 311 | \begin{thebibliography}{10} 312 | 313 | \beamertemplatebookbibitems 314 | % Start with overview books. 315 | 316 | \bibitem{Author1990} 317 | A.~Author. 318 | \newblock {\em Handbook of Everything}. 319 | \newblock Some Press, 1990. 320 | 321 | 322 | \beamertemplatearticlebibitems 323 | % Followed by interesting articles. Keep the list short. 324 | 325 | \bibitem{Someone2000} 326 | S.~Someone. 327 | \newblock On this and that. 328 | \newblock {\em Journal of This and That}, 2(1):50--100, 329 | 2000. 330 | \end{thebibliography} 331 | \end{frame} 332 | 333 | \end{document} 334 | -------------------------------------------------------------------------------- /x.log: -------------------------------------------------------------------------------- 1 | This is XeTeX, Version 3.14159265-2.6-0.999991 (TeX Live 2019/W32TeX) (preloaded format=xelatex 2019.11.29) 17 DEC 2019 22:54 2 | entering extended mode 3 | restricted \write18 enabled. 4 | %&-line parsing enabled. 5 | **report 6 | (f:/texlive/2019/texmf-dist/tex/latex/tools/x.tex 7 | LaTeX2e <2018-12-01> 8 | 9 | ! . 10 | l.38 \batchmode \errmessage{} 11 | \csname @@end\endcsname \end 12 | This error message was generated by an \errmessage 13 | command, so I can't give any explicit help. 14 | Pretend that you're Hercule Poirot: Examine all clues, 15 | and deduce the truth by order and method. 16 | 17 | ) 18 | Here is how much of TeX's memory you used: 19 | 6 strings out of 492922 20 | 151 string characters out of 6136750 21 | 64272 words of memory out of 5000000 22 | 4153 multiletter control sequences out of 15000+600000 23 | 3640 words of font info for 14 fonts, out of 8000000 for 9000 24 | 1348 hyphenation exceptions out of 8191 25 | 4i,0n,1p,86b,8s stack positions out of 5000i,500n,10000p,200000b,80000s 26 | 27 | No pages of output. 28 | --------------------------------------------------------------------------------