├── .gitignore ├── README.md ├── preview ├── style1.svg └── style2.svg ├── style 1 ├── HUST-Beamer.pdf ├── HUST-Beamer.tex ├── cnlogo.sty ├── cnlogo │ └── hustc.tex ├── figures │ ├── google.png │ └── logo.jpg ├── matnoble-beamer-1.sty ├── mequation.sty └── res │ ├── hust_background.png │ ├── hust_background1.png │ ├── hust_title.png │ └── logo.png └── style 2 ├── HUST-Beamer.pdf ├── HUST-Beamer.tex ├── cnlogo.sty ├── cnlogo └── hustc.tex ├── figures ├── google.png └── logo.jpg ├── matnoble-beamer-2.sty ├── mequation.sty └── res ├── hust_background.png ├── hust_background1.png ├── hust_title.png └── logo.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.aux 2 | *.log 3 | *.nav 4 | *.out 5 | *.snm 6 | *.toc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 华中科技大学 Beamer 模板 2 | 3 | ### 预览 4 | 5 | - style 1 6 | 7 | style1 8 | 9 | - style 2 10 | 11 | style1 12 | 13 | 14 | 联系我[hustmatnoble@gmail.com](mailto:hustmatnoble@gmail.com) 15 | -------------------------------------------------------------------------------- /style 1/HUST-Beamer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 1/HUST-Beamer.pdf -------------------------------------------------------------------------------- /style 1/HUST-Beamer.tex: -------------------------------------------------------------------------------- 1 | % # -*- coding:utf-8 -*- 2 | % xelatex 3 | 4 | \documentclass[10pt,aspectratio=43,serif]{beamer} 5 | % 设置为 Beamer 文档类型,设置字体为 10pt,长宽比为4:3(16:9),字体为 serif 风格 6 | \usepackage[hustc]{cnlogo} 7 | \usepackage{matnoble-beamer-1} %导入 matnoble 模板宏包 8 | 9 | %%%%----首页信息设置----%%%% 10 | \title[ XX答辩 ]{华中科技大学 Beamer 模板} 11 | \subtitle{——这里是副标题} 12 | %%%%----标题设置 13 | 14 | \author[MatNoble(HUST)]{\href{https://matnoble.me/about/}{MatNoble}} 15 | \institute[HUST]{\normalsize 数学与统计学院, 华中科技大学} 16 | \date[July 21, 2020]{\today} 17 | 18 | \logo{\hustclogo[0.1]} 19 | 20 | \begin{document} 21 | 22 | \begin{frame} 23 | \titlepage 24 | \end{frame} %生成标题页 25 | 26 | \section{提纲} 27 | \begin{frame} 28 | \frametitle{提纲} 29 | \tableofcontents 30 | \end{frame} %生成提纲页 31 | 32 | \section{介绍} 33 | \begin{frame} 34 | \frametitle{介绍} 35 | 36 | \begin{itemize} 37 | \item {编译方式} \vskip0.5em 38 | \begin{itemize} 39 | \item 推荐安装完整版的 TeXLive 40 | \item 使用 \XeLaTeX 编译 41 | \end{itemize} 42 | \vskip0.5em 43 | \item 请参考 \LaTeX 和 Beamer 用户文档 \vskip1em 44 | \item 行内数学公式示例 $\sin^2 \theta + \cos^2 \theta = 1$ 45 | \vskip1em 46 | \item {行间数学公式示例 47 | \begin{equation} 48 | y_{1}=\int \sin x\, \dif x 49 | \end{equation} } 50 | \item 下载地址: 51 | \href{https://github.com/MatNoble/HUSTMatNobleBeamer}{github.com/MatNoble} 52 | \end{itemize} 53 | \end{frame} 54 | 55 | \section{内置环境} 56 | \begin{frame} 57 | \frametitle{内置环境} 58 | \begin{block}{Slides with \LaTeX} 59 | Beamer offers a lot of functions to create nice slides using 60 | \LaTeX. 61 | \end{block} 62 | 63 | \begin{block}{The basis} 64 | 内部使用以下主题 65 | \begin{itemize} 66 | \item split 67 | \item whale 68 | \item rounded 69 | \item orchid 70 | \end{itemize} 71 | \end{block} 72 | \end{frame} 73 | 74 | \begin{frame} 75 | \frametitle{带数字列表} 76 | \begin{enumerate} 77 | \item This just shows the effect of the style 78 | \item It is not a Beamer tutorial 79 | \item Read the Beamer manual for more help 80 | \item Contact me only concerning the style file 81 | \end{enumerate} 82 | \end{frame} 83 | 84 | \begin{frame} 85 | \frametitle{图片} 86 | \begin{figure} 87 | \includegraphics[height=6cm]{figures/logo.jpg} 88 | \caption{欢迎扫码关注} 89 | \end{figure} 90 | \end{frame} 91 | 92 | \begin{frame} 93 | \frametitle{图片} 94 | \begin{figure}[H] 95 | \centering 96 | \begin{subfigure}{.48\textwidth} 97 | \centering 98 | % include first image 99 | \includegraphics[width=.6\linewidth]{logo} 100 | \caption{\em 子图 1} 101 | \label{fig:v21} 102 | \end{subfigure} 103 | \begin{subfigure}{.48\textwidth} 104 | \centering 105 | % include second image 106 | \includegraphics[width=.6\linewidth]{google} 107 | \caption{\em 子图 2} 108 | \label{fig:v22} 109 | \end{subfigure} 110 | \caption{\em 并列两张图} 111 | \label{fig:v2} 112 | \end{figure} 113 | \end{frame} 114 | 115 | \begin{frame} 116 | \frametitle{表格} 117 | \begin{table}[ht] 118 | \centering 119 | \caption{\em 这是表格} 120 | \vskip 0.1in 121 | \label{table} 122 | \begin{tabular}{c|cccc} 123 | \hline 124 | \hline 125 | \rule{0pt}{3ex} 126 | 序号 & 姓名 & 年龄 & 学号 & 性别 127 | \rule[-1.2ex]{0pt}{0pt} \\\hline 128 | 001 & * & * & * & * \\ 129 | 002 & * & * & * & * \\ 130 | 003 & * & * & * & * \\ 131 | 004 & * & * & * & * \\ 132 | \hline 133 | \hline 134 | \end{tabular} 135 | \end{table} 136 | \end{frame} 137 | 138 | \section{结论} 139 | \begin{frame} 140 | \frametitle{结论} 141 | 142 | \begin{itemize} 143 | \item Easy to use 144 | \item Good results 145 | \end{itemize} 146 | \end{frame} 147 | 148 | \section{参考文献} 149 | \begin{frame}{参考文献} 150 | \begin{thebibliography}{99} 151 | \bibitem{zhao1} Yi~Zhao, {\sl An introduction to X}, Sep.~15, 152 | 2015 153 | \bibitem{qian2} Er~Qian, San~Sun, Phys.\ Lett.\ A {\bf xx}, 154 | 2xx (20xx) 155 | \bibitem{li4} Si~Li, Phys.\ Rev.\ C {\bf xx}, 5xx (20xx) 156 | \end{thebibliography} 157 | \end{frame} 158 | 159 | \section{提问} 160 | \begin{frame}{致谢} 161 | \begin{center} 162 | \begin{tikzpicture} 163 | \node[above,xscale=1.2,yscale=1.4]{\Huge\bfseries 欢迎各位 164 | 老师批评指正!}; \node[xscale=1.2,above,yscale=-1.4,scope 165 | fading=south,opacity=0.2]{\Huge\bfseries 欢迎各位老师批评指 166 | 正!}; 167 | \end{tikzpicture} 168 | \end{center} 169 | \end{frame} 170 | 171 | \end{document} 172 | -------------------------------------------------------------------------------- /style 1/cnlogo.sty: -------------------------------------------------------------------------------- 1 | %cnlogo.sty 2 | %designed for producing logos of Chinese Colleges 3 | %author Yu Xiang(ustc) 4 | %Welcome to visit my bolg: yuxtech.github.io 5 | 6 | \ProvidesPackage{cnlogo}[2019/6/16 v1.0] 7 | \RequirePackage{tikz} 8 | \RequirePackage{xparse} 9 | \DeclareOption{ustc}{% 10 | \input{cnlogo/ustc} 11 | } 12 | \DeclareOption{fdu}{% 13 | \input{cnlogo/fdu} 14 | } 15 | \DeclareOption{zju}{% 16 | \input{cnlogo/zju} 17 | } 18 | \DeclareOption{xmu}{% 19 | \input{cnlogo/xmu} 20 | } 21 | \DeclareOption{pku}{% 22 | \input{cnlogo/pku} 23 | } 24 | \DeclareOption{whu}{% 25 | \input{cnlogo/whu} 26 | } 27 | \DeclareOption{thu}{% 28 | \input{cnlogo/thu} 29 | } 30 | \DeclareOption{sustc}{% 31 | \input{cnlogo/sustc} 32 | } 33 | \DeclareOption{stju}{% 34 | \input{cnlogo/stju} 35 | } 36 | \DeclareOption{xjtu}{% 37 | \input{cnlogo/xjtu} 38 | } 39 | \DeclareOption{hustc}{% 40 | \input{cnlogo/hustc} 41 | } 42 | \DeclareOption{tju}{% 43 | \input{cnlogo/tju} 44 | } 45 | \DeclareOption{bjtu}{% 46 | \input{cnlogo/bjtu} 47 | } 48 | \DeclareOption{hnnu}{% 49 | \input{cnlogo/hnnu} 50 | } 51 | \DeclareOption{gnu}{% 52 | \input{cnlogo/gnu} 53 | } 54 | \DeclareOption{cupsl}{% 55 | \input{cnlogo/cupsl} 56 | } 57 | \DeclareOption{hznu}{% 58 | \input{cnlogo/hznu} 59 | } 60 | \DeclareOption{scu}{% 61 | \input{cnlogo/scu} 62 | } 63 | \DeclareOption{sdu}{% 64 | \input{cnlogo/sdu} 65 | } 66 | \DeclareOption{jlu}{% 67 | \input{cnlogo/jlu} 68 | } 69 | \DeclareOption{sysu}{% 70 | \input{cnlogo/sysu} 71 | } 72 | \DeclareOption{shu}{% 73 | \input{cnlogo/shu} 74 | } 75 | \DeclareOption{jnu}{% 76 | \input{cnlogo/jnu} 77 | } 78 | \DeclareOption{szu}{% 79 | \input{cnlogo/szu} 80 | } 81 | \DeclareOption{hnu}{% 82 | \input{cnlogo/hnu} 83 | } 84 | \DeclareOption{ckyu}{% 85 | \input{cnlogo/ckyu} 86 | } 87 | \DeclareOption{xdu}{% 88 | \input{cnlogo/xdu} 89 | } 90 | \DeclareOption{wzu}{% 91 | \input{cnlogo/wzu} 92 | } 93 | \DeclareOption{swau}{% 94 | \input{cnlogo/swau} 95 | } 96 | \DeclareOption{tju}{% 97 | \input{cnlogo/tju} 98 | } 99 | \DeclareOption{gufs}{% 100 | \input{cnlogo/gufs} 101 | } 102 | \DeclareOption{ustb}{% 103 | \input{cnlogo/ustb} 104 | } 105 | \DeclareOption{ruc}{% 106 | \input{cnlogo/ruc} 107 | } 108 | \DeclareOption{hbu}{% 109 | \input{cnlogo/hbu} 110 | } 111 | \DeclareOption{chu}{% 112 | \input{cnlogo/chu} 113 | } 114 | \DeclareOption{swcnu}{% 115 | \input{cnlogo/swcnu} 116 | } 117 | \DeclareOption{neu}{% 118 | \input{cnlogo/neu} 119 | } 120 | \DeclareOption{nku}{% 121 | \input{cnlogo/nku} 122 | } 123 | \DeclareOption{nju}{% 124 | \input{cnlogo/nju} 125 | } 126 | \DeclareOption{njust}{% 127 | \input{cnlogo/njust} 128 | } 129 | \DeclareOption{dbcju}{% 130 | \input{cnlogo/dbcju} 131 | } 132 | \DeclareOption{ju}{% 133 | \input{cnlogo/ju} 134 | } 135 | \DeclareOption{cug}{% 136 | \input{cnlogo/cug} 137 | } 138 | \DeclareOption{muc}{% 139 | \input{cnlogo/muc} 140 | } 141 | \DeclareOption{dllgu}{% 142 | \input{cnlogo/dllgu} 143 | } 144 | \DeclareOption{hhu}{% 145 | \input{cnlogo/hhu} 146 | } 147 | \DeclareOption{hdzfu}{% 148 | \input{cnlogo/hdzfu} 149 | } 150 | \DeclareOption{znyu}{% 151 | \input{cnlogo/znyu} 152 | } 153 | \DeclareOption{sdcju}{% 154 | \input{cnlogo/sdcju} 155 | } 156 | \DeclareOption{yzu}{% 157 | \input{cnlogo/yzu} 158 | } 159 | \DeclareOption{bnu}{% 160 | \input{cnlogo/bnu} 161 | } 162 | \DeclareOption{zzu}{% 163 | \input{cnlogo/zzu} 164 | } 165 | \DeclareOption{bjydu}{% 166 | \input{cnlogo/bjydu} 167 | } 168 | \DeclareOption{ncu}{% 169 | \input{cnlogo/ncu} 170 | } 171 | \DeclareOption{bhu}{% 172 | \input{cnlogo/bhu} 173 | } 174 | \DeclareOption{hdsfu}{% 175 | \input{cnlogo/hdsfu} 176 | } 177 | \DeclareOption{zhyu}{% 178 | \input{cnlogo/zhyu} 179 | } 180 | \DeclareOption{csu}{% 181 | \input{cnlogo/csu} 182 | } 183 | \DeclareOption{lzu}{% 184 | \input{cnlogo/lzu} 185 | } 186 | \DeclareOption{hnlgu}{% 187 | \input{cnlogo/hnlgu} 188 | } 189 | \DeclareOption{xbnlkju}{% 190 | \input{cnlogo/xbnlkju} 191 | } 192 | \DeclareOption{ahu}{% 193 | \input{cnlogo/ahu} 194 | } 195 | \DeclareOption{whlgu}{% 196 | \input{cnlogo/whlgu} 197 | } 198 | \DeclareOption{zcmu}{% 199 | \input{cnlogo/zcmu} 200 | } 201 | \DeclareOption{hit}{% 202 | \input{cnlogo/hit} 203 | } 204 | \DeclareOption{tjuu}{% 205 | \input{cnlogo/tjuu} 206 | } 207 | \DeclareOption{zky}{% 208 | \input{cnlogo/zky} 209 | } 210 | \ProcessOptions\relax 211 | 212 | %\input{cnlogo/fdu} 213 | %\input{cnlogo/zju} 214 | %\input{cnlogo/xmu} 215 | %\input{cnlogo/pku} 216 | %\input{cnlogo/whu} 217 | %\input{cnlogo/sustc} 218 | %\input{cnlogo/thu} 219 | %\input{cnlogo/stju} 220 | %\input{cnlogo/xjtu} 221 | -------------------------------------------------------------------------------- /style 1/figures/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 1/figures/google.png -------------------------------------------------------------------------------- /style 1/figures/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 1/figures/logo.jpg -------------------------------------------------------------------------------- /style 1/matnoble-beamer-1.sty: -------------------------------------------------------------------------------- 1 | %% FileName : matnoble-beamer-1.sty 2 | %% Author : MatNoble 3 | %% Description : Beamer for HUST 4 | %% Time-stamp : <2018-07-13 09:00> 5 | %% w 公 众 号 : 数系家园 6 | %% site : https://matnoble.me 7 | %% GitHub : https://github.com/MatNoble/HUSTMatNobleBeamer 8 | 9 | \NeedsTeXFormat{LaTeX2e} 10 | \ProvidesPackage{matnoble-beamer-1}[2020/07/22 v2.0 updated by MatNoble] 11 | 12 | \usepackage{fontspec} 13 | \usepackage[T1]{fontenc} 14 | \usepackage[BoldFont,SlantFont,CJKchecksingle]{xeCJK} 15 | \usepackage{mequation} 16 | 17 | %================================== 设置中文字体 ================================% 18 | \setCJKmainfont[Mapping = fullwidth-stop]{Source Han Sans SC}%---------------设置正文为黑体 19 | \setCJKmonofont{Source Han Serif SC} %---------------设置等距字体 20 | % \setCJKsansfont{KaiTi} %---------------设置无衬线字体 21 | \setCJKfamilyfont{zxzt}{FZShouJinShu-S10S} 22 | \setCJKfamilyfont{FZDH}{FZDaHei-B02S} 23 | %================================== 设置中文字体 ================================% 24 | 25 | %================================== 设置英文字体 ================================% 26 | \setmainfont[Mapping=tex-text]{Helvetica} %--------------------------------英文衬线字体 27 | \setsansfont[Mapping=tex-text]{Trebuchet MS}%------------------------------------英文无衬线字体 28 | \setmonofont[Mapping=tex-text]{Courier New} %-------------------------------------英文等宽字体 29 | \newfontfamily\Arial{Arial} 30 | % ================================== 设置英文字体 ================================% 31 | 32 | \usepackage{amsthm,amsmath,amsfonts,amssymb,bm} % 导入数学公式所需宏包 33 | \usepackage{helvet} 34 | \usepackage{color} % 字体颜色支持 35 | \usepackage{graphicx,hyperref,url} 36 | %\hypersetup{colorlinks,linkcolor=red} 37 | \usepackage{metalogo} % 非必须 38 | \usepackage{tikz} 39 | \usetikzlibrary{positioning,backgrounds} 40 | \usetikzlibrary{fadings} 41 | \usetikzlibrary{patterns} 42 | \usetikzlibrary{calc} 43 | \usetikzlibrary{shadings} 44 | \usepackage{tabularx,multirow,multicol,longtable} 45 | \usepackage{tabu} 46 | \usepackage{subcaption} 47 | \setbeamertemplate{caption}[numbered] 48 | \setbeamerfont{caption}{size=\small} 49 | 50 | % 关于图片 graphicx 51 | % 如果图片没有指定后缀, 依次按下列顺序搜索 52 | \DeclareGraphicsExtensions{.eps,.pdf,.jpg,.png} 53 | % 设置图表搜索路径, 可以给图表文件夹取如下名字 54 | \graphicspath{{figures/}{figure/}{pictures/}% 55 | {picture/}{pic/}{pics/}{image/}{images/}} 56 | 57 | %% 上文引用的包可按实际情况自行增删 58 | %%%%%%%%%%%%%%%%%% 59 | 60 | \beamertemplateballitem %设置 Beamer 主题 61 | %%% 62 | %%% Inherit definitions from existing themes (DO NOT MODIFY THESE) 63 | %%% 64 | 65 | % Layout scheme for outer elements: split header and footer 66 | \useoutertheme{split} 67 | 68 | % Color scheme for outer elements: use background colors 69 | \usecolortheme{whale} 70 | 71 | % Layout scheme for inner elements: rounded elements 72 | \useinnertheme{rounded} 73 | 74 | % Color scheme for inner elements: use foreground colors 75 | \usecolortheme{orchid} 76 | 77 | 78 | %%% 79 | %%% Tweak definitions of inner theme to match personal preferences (MODIFY THESE) 80 | %%% 81 | 82 | % Itemize items: default (triangle), circle, square, ball 83 | \setbeamertemplate{itemize items}[circle] 84 | 85 | % Enumerate items: default, circle, square, ball 86 | \setbeamertemplate{enumerate items}[circle] 87 | 88 | % Outline: default, sections numbered, subsections numbered, circle, square, ball, ball unnumbered 89 | \setbeamertemplate{sections/subsections in toc}[default] 90 | 91 | % General blocks: 92 | \setbeamertemplate{blocks}[rounded] 93 | 94 | % Title page: 95 | \setbeamertemplate{title page}[default][colsep=-4bp,rounded=true] 96 | 97 | % Part page: 98 | \setbeamertemplate{part page}[default][colsep=-4bp,rounded=true] 99 | 100 | % Navigation symbols: 101 | % \setbeamertemplate{navigation symbols}{} 102 | 103 | 104 | %%% 105 | %%% Tweak definitions of outer theme to match Radboud (website) style 106 | %%% 107 | 108 | % Background 109 | \pgfdeclareimage[width=\paperwidth,height=\paperheight]{bg}{res/hust_background1} 110 | \setbeamertemplate{background}{\pgfuseimage{bg}} 111 | 112 | % Colors 113 | % \usecolortheme[RGB={0,78,153}]{structure} % 蓝色 114 | \usecolortheme[RGB={37,85,122}]{structure} % 华科蓝 115 | %\usecolortheme[RGB={96,15,15}]{structure} % 红色 116 | 117 | \setbeamercolor{frametitle}{parent=subsection in head/foot} 118 | \setbeamercolor{frametitle right}{parent=section in head/foot} 119 | 120 | \pgfdeclarehorizontalshading[frametitle.bg,frametitle right.bg]{beamer@frametitleshade}{\paperheight}{% 121 | color(0pt)=(frametitle.bg); 122 | color(\paperwidth)=(frametitle right.bg)} 123 | 124 | \AtBeginDocument{ 125 | \pgfdeclareverticalshading{beamer@topshade}{\paperwidth}{% 126 | color(0pt)=(bg); 127 | color(4pt)=(black!50!bg)} 128 | } 129 | 130 | % Footline: AUTHOR | TITLE | DATE FRAMENUMBER 131 | 132 | \defbeamertemplate*{footline}{matnoble theme}{% 133 | \leavevmode% 134 | \hbox{% 135 | \begin{beamercolorbox}[wd=.25\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% 136 | \usebeamerfont{author in head/foot}\insertshortauthor 137 | \end{beamercolorbox}% 138 | \begin{beamercolorbox}[wd=.25\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% 139 | \usebeamerfont{author in head/foot}\insertshortdate 140 | \end{beamercolorbox}% 141 | \begin{beamercolorbox}[wd=.435\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}% 142 | \usebeamerfont{title in head/foot}\insertshorttitle 143 | \end{beamercolorbox}% 144 | \begin{beamercolorbox}[wd=0.065\paperwidth,ht=2.25ex,dp=1ex,right]{title in head/foot}% 145 | \insertframenumber{} / \inserttotalframenumber\hspace*{2ex} 146 | \end{beamercolorbox}}% 147 | \vskip0pt% 148 | } 149 | 150 | \defbeamertemplate*{headline}{matnoble theme}{% 151 | \leavevmode% 152 | \@tempdimb=6.4375ex% 153 | %\multiply\@tempdimb by\beamer@sectionmax% 154 | \pgfdeclareimage[height=.1\@tempdimb]{logo}{res/logo1.png}% 155 | \pgfdeclareimage[height=.7\@tempdimb]{title_logo}{res/hust_title.png}% 156 | \logo{\pgfuseimage{logo}}% 157 | \ifdim\@tempdimb>0pt% 158 | \advance\@tempdimb by 1.125ex% 159 | \begin{beamercolorbox}[wd=.84\paperwidth,ht=\@tempdimb]{section in head/foot}% 160 | \vbox to\@tempdimb{\vfil\insertsectionnavigationhorizontal{.5\textwidth}{\hskip0pt plus1filll}{}\vfil}% 161 | \end{beamercolorbox}% 162 | %% \begin{beamercolorbox}[wd=.4\paperwidth,ht=\@tempdimb,center]{subsection in head/foot}% 163 | %% \vbox to\@tempdimb{\vfil\textbf{\footnotesize\insertshortinstitute~~}\vfil}% 164 | %% \end{beamercolorbox}% 165 | \begin{beamercolorbox}[wd=.16\paperwidth,ht=\@tempdimb,center]{subsection in head/foot}% 166 | \vbox to\@tempdimb{\vfil\pgfuseimage{title_logo}\vfil}% 167 | \end{beamercolorbox}% 168 | \begin{beamercolorbox}[wd=.1\paperwidth,ht=\@tempdimb,center]{subsection in head/foot}% 169 | \vbox to\@tempdimb{\vfil\insertlogo\vfil\vfil}% 170 | \end{beamercolorbox}% 171 | \fi% 172 | } 173 | 174 | \defbeamertemplate*{frametitle}{matnoble theme}{% 175 | \nointerlineskip% 176 | %\vskip-2pt% 177 | \hbox{\leavevmode 178 | \advance\beamer@leftmargin by -12bp% 179 | \advance\beamer@rightmargin by -12bp% 180 | \beamer@tempdim=\textwidth% 181 | \advance\beamer@tempdim by \beamer@leftmargin% 182 | \advance\beamer@tempdim by \beamer@rightmargin% 183 | \hskip-\Gm@lmargin\hbox{% 184 | \setbox\beamer@tempbox=\hbox{\begin{minipage}[b]{\paperwidth}% 185 | \vbox{}\vskip-.75ex% 186 | \leftskip0.3cm% 187 | \rightskip0.3cm plus1fil\leavevmode 188 | \insertframetitle% 189 | \ifx\insertframesubtitle\@empty% 190 | \strut\par% 191 | \else 192 | \par{\usebeamerfont*{framesubtitle}{\usebeamercolor[fg]{framesubtitle}\insertframesubtitle}\strut\par}% 193 | \fi% 194 | \nointerlineskip 195 | \vbox{}% 196 | \end{minipage}}% 197 | \beamer@tempdim=\ht\beamer@tempbox% 198 | \advance\beamer@tempdim by 2pt% 199 | \begin{pgfpicture}{0.1mm}{0pt}{1.01\paperwidth}{\beamer@tempdim} 200 | \usebeamercolor{frametitle right} 201 | \pgfpathrectangle{\pgfpointorigin}{\pgfpoint{\paperwidth}{\beamer@tempdim}} 202 | \pgfusepath{clip} 203 | \pgftext[left,base]{\pgfuseshading{beamer@frametitleshade}} 204 | \end{pgfpicture} 205 | \hskip-\paperwidth% 206 | \box\beamer@tempbox% 207 | }% 208 | \hskip-\Gm@rmargin% 209 | }% 210 | % \nointerlineskip 211 | % \vskip-0.2pt 212 | % \hbox to\textwidth{\hskip-\Gm@lmargin\pgfuseshading{beamer@topshade}\hskip-\Gm@rmargin} 213 | % \vskip-2pt 214 | } 215 | -------------------------------------------------------------------------------- /style 1/mequation.sty: -------------------------------------------------------------------------------- 1 | 2 | \RequirePackage{accents} 3 | \newcommand{\dbtilde}[1]{\accentset{\approx}{#1}} 4 | \newcommand{\Cdot}{\boldsymbol{\cdot}} 5 | 6 | % equation 7 | \newcommand*{\dif}{\mathop{}\!\mathrm{d}} 8 | 9 | % mathbb 10 | \newcommand{\bba}{\mathbb{a}} 11 | \newcommand{\bbb}{\mathbb{b}} 12 | \newcommand{\bbc}{\mathbb{c}} 13 | \newcommand{\bbd}{\mathbb{d}} 14 | \newcommand{\bbe}{\mathbb{e}} 15 | \newcommand{\bbf}{\mathbb{f}} 16 | \newcommand{\bbg}{\mathbb{g}} 17 | \newcommand{\bbh}{\mathbb{h}} 18 | \newcommand{\bbi}{\mathbb{i}} 19 | \newcommand{\bbj}{\mathbb{j}} 20 | \newcommand{\bbk}{\mathbb{k}} 21 | \newcommand{\bbl}{\mathbb{l}} 22 | \newcommand{\bbm}{\mathbb{m}} 23 | \newcommand{\bbn}{\mathbb{n}} 24 | \newcommand{\bbo}{\mathbb{o}} 25 | \newcommand{\bbp}{\mathbb{p}} 26 | \newcommand{\bbq}{\mathbb{q}} 27 | \newcommand{\bbr}{\mathbb{r}} 28 | \newcommand{\bbs}{\mathbb{s}} 29 | \newcommand{\bbt}{\mathbb{t}} 30 | \newcommand{\bbu}{\mathbb{u}} 31 | \newcommand{\bbv}{\mathbb{v}} 32 | \newcommand{\bbw}{\mathbb{w}} 33 | \newcommand{\bbx}{\mathbb{x}} 34 | \newcommand{\bby}{\mathbb{y}} 35 | \newcommand{\bbz}{\mathbb{z}} 36 | \newcommand{\bbA}{\mathbb{A}} 37 | \newcommand{\bbB}{\mathbb{B}} 38 | \newcommand{\bbC}{\mathbb{C}} 39 | \newcommand{\bbD}{\mathbb{D}} 40 | \newcommand{\bbE}{\mathbb{E}} 41 | \newcommand{\bbF}{\mathbb{F}} 42 | \newcommand{\bbG}{\mathbb{G}} 43 | \newcommand{\bbH}{\mathbb{H}} 44 | \newcommand{\bbI}{\mathbb{I}} 45 | \newcommand{\bbJ}{\mathbb{J}} 46 | \newcommand{\bbK}{\mathbb{K}} 47 | \newcommand{\bbL}{\mathbb{L}} 48 | \newcommand{\bbM}{\mathbb{M}} 49 | \newcommand{\bbN}{\mathbb{N}} 50 | \newcommand{\bbO}{\mathbb{O}} 51 | \newcommand{\bbP}{\mathbb{P}} 52 | \newcommand{\bbQ}{\mathbb{Q}} 53 | \newcommand{\bbR}{\mathbb{R}} 54 | \newcommand{\bbS}{\mathbb{S}} 55 | \newcommand{\bbT}{\mathbb{T}} 56 | \newcommand{\bbU}{\mathbb{U}} 57 | \newcommand{\bbV}{\mathbb{V}} 58 | \newcommand{\bbW}{\mathbb{W}} 59 | \newcommand{\bbX}{\mathbb{X}} 60 | \newcommand{\bbY}{\mathbb{Y}} 61 | \newcommand{\bbZ}{\mathbb{Z}} 62 | 63 | % mathbf 64 | \newcommand{\bfa}{\mathbf{a}} 65 | \newcommand{\bfb}{\mathbf{b}} 66 | \newcommand{\bfc}{\mathbf{c}} 67 | \newcommand{\bfd}{\mathbf{d}} 68 | \newcommand{\bfe}{\mathbf{e}} 69 | \newcommand{\bff}{\mathbf{f}} 70 | \newcommand{\bfg}{\mathbf{g}} 71 | \newcommand{\bfh}{\mathbf{h}} 72 | \newcommand{\bfi}{\mathbf{i}} 73 | \newcommand{\bfj}{\mathbf{j}} 74 | \newcommand{\bfk}{\mathbf{k}} 75 | \newcommand{\bfl}{\mathbf{l}} 76 | \newcommand{\bfm}{\mathbf{m}} 77 | \newcommand{\bfn}{\mathbf{n}} 78 | \newcommand{\bfo}{\mathbf{o}} 79 | \newcommand{\bfp}{\mathbf{p}} 80 | \newcommand{\bfq}{\mathbf{q}} 81 | \newcommand{\bfr}{\mathbf{r}} 82 | \newcommand{\bfs}{\mathbf{s}} 83 | \newcommand{\bft}{\mathbf{t}} 84 | \newcommand{\bfu}{\mathbf{u}} 85 | \newcommand{\bfv}{\mathbf{v}} 86 | \newcommand{\bfw}{\mathbf{w}} 87 | \newcommand{\bfx}{\mathbf{x}} 88 | \newcommand{\bfy}{\mathbf{y}} 89 | \newcommand{\bfz}{\mathbf{z}} 90 | \newcommand{\bfA}{\mathbf{A}} 91 | \newcommand{\bfB}{\mathbf{B}} 92 | \newcommand{\bfC}{\mathbf{C}} 93 | \newcommand{\bfD}{\mathbf{D}} 94 | \newcommand{\bfE}{\mathbf{E}} 95 | \newcommand{\bfF}{\mathbf{F}} 96 | \newcommand{\bfG}{\mathbf{G}} 97 | \newcommand{\bfH}{\mathbf{H}} 98 | \newcommand{\bfI}{\mathbf{I}} 99 | \newcommand{\bfJ}{\mathbf{J}} 100 | \newcommand{\bfK}{\mathbf{K}} 101 | \newcommand{\bfL}{\mathbf{L}} 102 | \newcommand{\bfM}{\mathbf{M}} 103 | \newcommand{\bfN}{\mathbf{N}} 104 | \newcommand{\bfO}{\mathbf{O}} 105 | \newcommand{\bfP}{\mathbf{P}} 106 | \newcommand{\bfQ}{\mathbf{Q}} 107 | \newcommand{\bfR}{\mathbf{R}} 108 | \newcommand{\bfS}{\mathbf{S}} 109 | \newcommand{\bfT}{\mathbf{T}} 110 | \newcommand{\bfU}{\mathbf{U}} 111 | \newcommand{\bfV}{\mathbf{V}} 112 | \newcommand{\bfW}{\mathbf{W}} 113 | \newcommand{\bfX}{\mathbf{X}} 114 | \newcommand{\bfY}{\mathbf{Y}} 115 | \newcommand{\bfZ}{\mathbf{Z}} 116 | 117 | % mathbfit (bm) 118 | \newcommand{\bma}{\bm{a}} 119 | \newcommand{\bmb}{\bm{b}} 120 | \newcommand{\bmc}{\bm{c}} 121 | \newcommand{\bmd}{\bm{d}} 122 | \newcommand{\bme}{\bm{e}} 123 | \newcommand{\bmf}{\bm{f}} 124 | \newcommand{\bmg}{\bm{g}} 125 | \newcommand{\bmh}{\bm{h}} 126 | \newcommand{\bmi}{\bm{i}} 127 | \newcommand{\bmj}{\bm{j}} 128 | \newcommand{\bmk}{\bm{k}} 129 | \newcommand{\bml}{\bm{l}} 130 | \newcommand{\bmm}{\bm{m}} 131 | \newcommand{\bmn}{\bm{n}} 132 | \newcommand{\bmo}{\bm{o}} 133 | \newcommand{\bmp}{\bm{p}} 134 | \newcommand{\bmq}{\bm{q}} 135 | \newcommand{\bmr}{\bm{r}} 136 | \newcommand{\bms}{\bm{s}} 137 | \newcommand{\bmt}{\bm{t}} 138 | \newcommand{\bmu}{\bm{u}} 139 | \newcommand{\bmv}{\bm{v}} 140 | \newcommand{\bmw}{\bm{w}} 141 | \newcommand{\bmx}{\bm{x}} 142 | \newcommand{\bmy}{\bm{y}} 143 | \newcommand{\bmz}{\bm{z}} 144 | \newcommand{\bmA}{\bm{A}} 145 | \newcommand{\bmB}{\bm{B}} 146 | \newcommand{\bmC}{\bm{C}} 147 | \newcommand{\bmD}{\bm{D}} 148 | \newcommand{\bmE}{\bm{E}} 149 | \newcommand{\bmF}{\bm{F}} 150 | \newcommand{\bmG}{\bm{G}} 151 | \newcommand{\bmH}{\bm{H}} 152 | \newcommand{\bmI}{\bm{I}} 153 | \newcommand{\bmJ}{\bm{J}} 154 | \newcommand{\bmK}{\bm{K}} 155 | \newcommand{\bmL}{\bm{L}} 156 | \newcommand{\bmM}{\bm{M}} 157 | \newcommand{\bmN}{\bm{N}} 158 | \newcommand{\bmO}{\bm{O}} 159 | \newcommand{\bmP}{\bm{P}} 160 | \newcommand{\bmQ}{\bm{Q}} 161 | \newcommand{\bmR}{\bm{R}} 162 | \newcommand{\bmS}{\bm{S}} 163 | \newcommand{\bmT}{\bm{T}} 164 | \newcommand{\bmU}{\bm{U}} 165 | \newcommand{\bmV}{\bm{V}} 166 | \newcommand{\bmW}{\bm{W}} 167 | \newcommand{\bmX}{\bm{X}} 168 | \newcommand{\bmY}{\bm{Y}} 169 | \newcommand{\bmZ}{\bm{Z}} 170 | 171 | % mathcal 172 | \newcommand{\calA}{\mathcal{A}} 173 | \newcommand{\calB}{\mathcal{B}} 174 | \newcommand{\calC}{\mathcal{C}} 175 | \newcommand{\calD}{\mathcal{D}} 176 | \newcommand{\calE}{\mathcal{E}} 177 | \newcommand{\calF}{\mathcal{F}} 178 | \newcommand{\calG}{\mathcal{G}} 179 | \newcommand{\calH}{\mathcal{H}} 180 | \newcommand{\calI}{\mathcal{I}} 181 | \newcommand{\calJ}{\mathcal{J}} 182 | \newcommand{\calK}{\mathcal{K}} 183 | \newcommand{\calL}{\mathcal{L}} 184 | \newcommand{\calM}{\mathcal{M}} 185 | \newcommand{\calN}{\mathcal{N}} 186 | \newcommand{\calO}{\mathcal{O}} 187 | \newcommand{\calP}{\mathcal{P}} 188 | \newcommand{\calQ}{\mathcal{Q}} 189 | \newcommand{\calR}{\mathcal{R}} 190 | \newcommand{\calS}{\mathcal{S}} 191 | \newcommand{\calT}{\mathcal{T}} 192 | \newcommand{\calU}{\mathcal{U}} 193 | \newcommand{\calV}{\mathcal{V}} 194 | \newcommand{\calW}{\mathcal{W}} 195 | \newcommand{\calX}{\mathcal{X}} 196 | \newcommand{\calY}{\mathcal{Y}} 197 | \newcommand{\calZ}{\mathcal{Z}} 198 | 199 | % mathfrak 200 | \newcommand{\fraka}{\mathfrak{a}} 201 | \newcommand{\frakb}{\mathfrak{b}} 202 | \newcommand{\frakc}{\mathfrak{c}} 203 | \newcommand{\frakd}{\mathfrak{d}} 204 | \newcommand{\frake}{\mathfrak{e}} 205 | \newcommand{\frakf}{\mathfrak{f}} 206 | \newcommand{\frakg}{\mathfrak{g}} 207 | \newcommand{\frakh}{\mathfrak{h}} 208 | \newcommand{\fraki}{\mathfrak{i}} 209 | \newcommand{\frakj}{\mathfrak{j}} 210 | \newcommand{\frakk}{\mathfrak{k}} 211 | \newcommand{\frakl}{\mathfrak{l}} 212 | \newcommand{\frakm}{\mathfrak{m}} 213 | \newcommand{\frakn}{\mathfrak{n}} 214 | \newcommand{\frako}{\mathfrak{o}} 215 | \newcommand{\frakp}{\mathfrak{p}} 216 | \newcommand{\frakq}{\mathfrak{q}} 217 | \newcommand{\frakr}{\mathfrak{r}} 218 | \newcommand{\fraks}{\mathfrak{s}} 219 | \newcommand{\frakt}{\mathfrak{t}} 220 | \newcommand{\fraku}{\mathfrak{u}} 221 | \newcommand{\frakv}{\mathfrak{v}} 222 | \newcommand{\frakw}{\mathfrak{w}} 223 | \newcommand{\frakx}{\mathfrak{x}} 224 | \newcommand{\fraky}{\mathfrak{y}} 225 | \newcommand{\frakz}{\mathfrak{z}} 226 | \newcommand{\frakA}{\mathfrak{A}} 227 | \newcommand{\frakB}{\mathfrak{B}} 228 | \newcommand{\frakC}{\mathfrak{C}} 229 | \newcommand{\frakD}{\mathfrak{D}} 230 | \newcommand{\frakE}{\mathfrak{E}} 231 | \newcommand{\frakF}{\mathfrak{F}} 232 | \newcommand{\frakG}{\mathfrak{G}} 233 | \newcommand{\frakH}{\mathfrak{H}} 234 | \newcommand{\frakI}{\mathfrak{I}} 235 | \newcommand{\frakJ}{\mathfrak{J}} 236 | \newcommand{\frakK}{\mathfrak{K}} 237 | \newcommand{\frakL}{\mathfrak{L}} 238 | \newcommand{\frakM}{\mathfrak{M}} 239 | \newcommand{\frakN}{\mathfrak{N}} 240 | \newcommand{\frakO}{\mathfrak{O}} 241 | \newcommand{\frakP}{\mathfrak{P}} 242 | \newcommand{\frakQ}{\mathfrak{Q}} 243 | \newcommand{\frakR}{\mathfrak{R}} 244 | \newcommand{\frakS}{\mathfrak{S}} 245 | \newcommand{\frakT}{\mathfrak{T}} 246 | \newcommand{\frakU}{\mathfrak{U}} 247 | \newcommand{\frakV}{\mathfrak{V}} 248 | \newcommand{\frakW}{\mathfrak{W}} 249 | \newcommand{\frakX}{\mathfrak{X}} 250 | \newcommand{\frakY}{\mathfrak{Y}} 251 | \newcommand{\frakZ}{\mathfrak{Z}} 252 | 253 | % mathrm 254 | \newcommand{\rma}{\mathrm{a}} 255 | \newcommand{\rmb}{\mathrm{b}} 256 | \newcommand{\rmc}{\mathrm{c}} 257 | \newcommand{\rmd}{\mathrm{d}} 258 | \newcommand{\rme}{\mathrm{e}} 259 | \newcommand{\rmf}{\mathrm{f}} 260 | \newcommand{\rmg}{\mathrm{g}} 261 | \newcommand{\rmh}{\mathrm{h}} 262 | \newcommand{\rmi}{\mathrm{i}} 263 | \newcommand{\rmj}{\mathrm{j}} 264 | \newcommand{\rmk}{\mathrm{k}} 265 | \newcommand{\rml}{\mathrm{l}} 266 | \newcommand{\rmm}{\mathrm{m}} 267 | \newcommand{\rmn}{\mathrm{n}} 268 | \newcommand{\rmo}{\mathrm{o}} 269 | \newcommand{\rmp}{\mathrm{p}} 270 | \newcommand{\rmq}{\mathrm{q}} 271 | \newcommand{\rmr}{\mathrm{r}} 272 | \newcommand{\rms}{\mathrm{s}} 273 | \newcommand{\rmt}{\mathrm{t}} 274 | \newcommand{\rmu}{\mathrm{u}} 275 | \newcommand{\rmv}{\mathrm{v}} 276 | \newcommand{\rmw}{\mathrm{w}} 277 | \newcommand{\rmx}{\mathrm{x}} 278 | \newcommand{\rmy}{\mathrm{y}} 279 | \newcommand{\rmz}{\mathrm{z}} 280 | \newcommand{\rmA}{\mathrm{A}} 281 | \newcommand{\rmB}{\mathrm{B}} 282 | \newcommand{\rmC}{\mathrm{C}} 283 | \newcommand{\rmD}{\mathrm{D}} 284 | \newcommand{\rmE}{\mathrm{E}} 285 | \newcommand{\rmF}{\mathrm{F}} 286 | \newcommand{\rmG}{\mathrm{G}} 287 | \newcommand{\rmH}{\mathrm{H}} 288 | \newcommand{\rmI}{\mathrm{I}} 289 | \newcommand{\rmJ}{\mathrm{J}} 290 | \newcommand{\rmK}{\mathrm{K}} 291 | \newcommand{\rmL}{\mathrm{L}} 292 | \newcommand{\rmM}{\mathrm{M}} 293 | \newcommand{\rmN}{\mathrm{N}} 294 | \newcommand{\rmO}{\mathrm{O}} 295 | \newcommand{\rmP}{\mathrm{P}} 296 | \newcommand{\rmQ}{\mathrm{Q}} 297 | \newcommand{\rmR}{\mathrm{R}} 298 | \newcommand{\rmS}{\mathrm{S}} 299 | \newcommand{\rmT}{\mathrm{T}} 300 | \newcommand{\rmU}{\mathrm{U}} 301 | \newcommand{\rmV}{\mathrm{V}} 302 | \newcommand{\rmW}{\mathrm{W}} 303 | \newcommand{\rmX}{\mathrm{X}} 304 | \newcommand{\rmY}{\mathrm{Y}} 305 | \newcommand{\rmZ}{\mathrm{Z}} -------------------------------------------------------------------------------- /style 1/res/hust_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 1/res/hust_background.png -------------------------------------------------------------------------------- /style 1/res/hust_background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 1/res/hust_background1.png -------------------------------------------------------------------------------- /style 1/res/hust_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 1/res/hust_title.png -------------------------------------------------------------------------------- /style 1/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 1/res/logo.png -------------------------------------------------------------------------------- /style 2/HUST-Beamer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 2/HUST-Beamer.pdf -------------------------------------------------------------------------------- /style 2/HUST-Beamer.tex: -------------------------------------------------------------------------------- 1 | %# -*- coding:utf-8 -*- 2 | \documentclass[10pt,aspectratio=43,serif]{beamer} 3 | % 设置为 Beamer 文档类型,设置字体为 10pt,长宽比为4:3(16:9),字体为 serif 风格 4 | \usepackage[hustc]{cnlogo} 5 | \usepackage{matnoble-beamer-2} %导入 matnoble 模板宏包 6 | 7 | %%%%----首页信息设置----%%%% 8 | \title[ XX答辩 ]{华中科技大学 Beamer 模板} 9 | \subtitle{——这里是副标题} 10 | %%%%----标题设置 11 | 12 | \author[MatNoble(HUST)]{\href{https://matnoble.me/about/}{MatNoble}} 13 | \institute[HUST]{\normalsize 数学与统计学院, 华中科技大学} 14 | \date[July 21, 2020]{\today} 15 | 16 | % \logo{\hustclogo[0.1]} 17 | 18 | \begin{document} 19 | 20 | \begin{frame} 21 | \titlepage 22 | \end{frame} %生成标题页 23 | 24 | \section{提纲} 25 | \begin{frame} 26 | \frametitle{提纲} 27 | \tableofcontents 28 | \end{frame} %生成提纲页 29 | 30 | \section{介绍} 31 | \begin{frame} 32 | \frametitle{介绍} 33 | \begin{itemize} 34 | \item {编译方式} \vskip0.5em 35 | \begin{itemize} 36 | \item 推荐安装完整版的 TeXLive 37 | \item 使用 \XeLaTeX 编译 38 | \end{itemize} 39 | \vskip0.5em 40 | \item 请参考 \LaTeX 和 Beamer 用户文档 \vskip1em 41 | \item 行内数学公式示例 $\sin^2 \theta + \cos^2 \theta = 1$ 42 | \vskip1em 43 | \item {行间数学公式示例 44 | \begin{equation} 45 | y_{1}=\int \sin x\, \dif x 46 | \end{equation} } 47 | \item 下载地址: 48 | \href{https://github.com/MatNoble/HUSTMatNobleBeamer}{github.com/MatNoble} 49 | \end{itemize} 50 | \end{frame} 51 | 52 | \section{内置环境} 53 | \begin{frame} 54 | \frametitle{内置环境} 55 | \begin{block}{Slides with \LaTeX} 56 | Beamer offers a lot of functions to create nice slides using 57 | \LaTeX. 58 | \end{block} 59 | 60 | \begin{block}{The basis} 61 | 内部使用以下主题 62 | \begin{itemize} 63 | \item split 64 | \item whale 65 | \item rounded 66 | \item orchid 67 | \end{itemize} 68 | \end{block} 69 | \end{frame} 70 | 71 | \begin{frame} 72 | \frametitle{带数字列表} 73 | \begin{enumerate} 74 | \item This just shows the effect of the style 75 | \item It is not a Beamer tutorial 76 | \item Read the Beamer manual for more help 77 | \item Contact me only concerning the style file 78 | \end{enumerate} 79 | \end{frame} 80 | 81 | \begin{frame} 82 | \frametitle{图片} 83 | \begin{figure} 84 | \includegraphics[height=6cm]{figures/logo.jpg} 85 | \caption{欢迎扫码关注} 86 | \end{figure} 87 | \end{frame} 88 | 89 | \begin{frame} 90 | \frametitle{图片} 91 | \begin{figure}[H] 92 | \centering 93 | \begin{subfigure}{.48\textwidth} 94 | \centering 95 | % include first image 96 | \includegraphics[width=.6\linewidth]{logo} 97 | \caption{\em 子图 1} 98 | \label{fig:v21} 99 | \end{subfigure} 100 | \begin{subfigure}{.48\textwidth} 101 | \centering 102 | % include second image 103 | \includegraphics[width=.6\linewidth]{google} 104 | \caption{\em 子图 2} 105 | \label{fig:v22} 106 | \end{subfigure} 107 | \caption{\em 并列两张图} 108 | \label{fig:v2} 109 | \end{figure} 110 | \end{frame} 111 | 112 | \begin{frame} 113 | \frametitle{表格} 114 | \begin{table}[ht] 115 | \centering 116 | \caption{\em 这是表格} 117 | \vskip 0.1in 118 | \label{table} 119 | \begin{tabular}{c|cccc} 120 | \hline 121 | \hline 122 | \rule{0pt}{3ex} 123 | 序号 & 姓名 & 年龄 & 学号 & 性别 124 | \rule[-1.2ex]{0pt}{0pt} \\\hline 125 | 001 & * & * & * & * \\ 126 | 002 & * & * & * & * \\ 127 | 003 & * & * & * & * \\ 128 | 004 & * & * & * & * \\ 129 | \hline 130 | \hline 131 | \end{tabular} 132 | \end{table} 133 | \end{frame} 134 | 135 | \section{结论} 136 | \begin{frame} 137 | \frametitle{结论} 138 | 139 | \begin{itemize} 140 | \item Easy to use 141 | \item Good results 142 | \end{itemize} 143 | \end{frame} 144 | 145 | \section{参考文献} 146 | \begin{frame}{参考文献} 147 | \begin{thebibliography}{99} 148 | \bibitem{zhao1} Yi~Zhao, {\sl An introduction to X}, Sep.~15, 149 | 2015 150 | \bibitem{qian2} Er~Qian, San~Sun, Phys.\ Lett.\ A {\bf xx}, 151 | 2xx (20xx) 152 | \bibitem{li4} Si~Li, Phys.\ Rev.\ C {\bf xx}, 5xx (20xx) 153 | \end{thebibliography} 154 | \end{frame} 155 | 156 | \section{提问} 157 | \begin{frame}{致谢} 158 | \begin{center} 159 | \begin{tikzpicture} 160 | \node[above,xscale=1.2,yscale=1.4]{\Huge\bfseries 欢迎各位 161 | 老师批评指正!}; \node[xscale=1.2,above,yscale=-1.4,scope 162 | fading=south,opacity=0.2]{\Huge\bfseries 欢迎各位老师批评指 163 | 正!}; 164 | \end{tikzpicture} 165 | \end{center} 166 | \end{frame} 167 | 168 | \end{document} 169 | -------------------------------------------------------------------------------- /style 2/cnlogo.sty: -------------------------------------------------------------------------------- 1 | %cnlogo.sty 2 | %designed for producing logos of Chinese Colleges 3 | %author Yu Xiang(ustc) 4 | %Welcome to visit my bolg: yuxtech.github.io 5 | 6 | \ProvidesPackage{cnlogo}[2019/6/16 v1.0] 7 | \RequirePackage{tikz} 8 | \RequirePackage{xparse} 9 | \DeclareOption{ustc}{% 10 | \input{cnlogo/ustc} 11 | } 12 | \DeclareOption{fdu}{% 13 | \input{cnlogo/fdu} 14 | } 15 | \DeclareOption{zju}{% 16 | \input{cnlogo/zju} 17 | } 18 | \DeclareOption{xmu}{% 19 | \input{cnlogo/xmu} 20 | } 21 | \DeclareOption{pku}{% 22 | \input{cnlogo/pku} 23 | } 24 | \DeclareOption{whu}{% 25 | \input{cnlogo/whu} 26 | } 27 | \DeclareOption{thu}{% 28 | \input{cnlogo/thu} 29 | } 30 | \DeclareOption{sustc}{% 31 | \input{cnlogo/sustc} 32 | } 33 | \DeclareOption{stju}{% 34 | \input{cnlogo/stju} 35 | } 36 | \DeclareOption{xjtu}{% 37 | \input{cnlogo/xjtu} 38 | } 39 | \DeclareOption{hustc}{% 40 | \input{cnlogo/hustc} 41 | } 42 | \DeclareOption{tju}{% 43 | \input{cnlogo/tju} 44 | } 45 | \DeclareOption{bjtu}{% 46 | \input{cnlogo/bjtu} 47 | } 48 | \DeclareOption{hnnu}{% 49 | \input{cnlogo/hnnu} 50 | } 51 | \DeclareOption{gnu}{% 52 | \input{cnlogo/gnu} 53 | } 54 | \DeclareOption{cupsl}{% 55 | \input{cnlogo/cupsl} 56 | } 57 | \DeclareOption{hznu}{% 58 | \input{cnlogo/hznu} 59 | } 60 | \DeclareOption{scu}{% 61 | \input{cnlogo/scu} 62 | } 63 | \DeclareOption{sdu}{% 64 | \input{cnlogo/sdu} 65 | } 66 | \DeclareOption{jlu}{% 67 | \input{cnlogo/jlu} 68 | } 69 | \DeclareOption{sysu}{% 70 | \input{cnlogo/sysu} 71 | } 72 | \DeclareOption{shu}{% 73 | \input{cnlogo/shu} 74 | } 75 | \DeclareOption{jnu}{% 76 | \input{cnlogo/jnu} 77 | } 78 | \DeclareOption{szu}{% 79 | \input{cnlogo/szu} 80 | } 81 | \DeclareOption{hnu}{% 82 | \input{cnlogo/hnu} 83 | } 84 | \DeclareOption{ckyu}{% 85 | \input{cnlogo/ckyu} 86 | } 87 | \DeclareOption{xdu}{% 88 | \input{cnlogo/xdu} 89 | } 90 | \DeclareOption{wzu}{% 91 | \input{cnlogo/wzu} 92 | } 93 | \DeclareOption{swau}{% 94 | \input{cnlogo/swau} 95 | } 96 | \DeclareOption{tju}{% 97 | \input{cnlogo/tju} 98 | } 99 | \DeclareOption{gufs}{% 100 | \input{cnlogo/gufs} 101 | } 102 | \DeclareOption{ustb}{% 103 | \input{cnlogo/ustb} 104 | } 105 | \DeclareOption{ruc}{% 106 | \input{cnlogo/ruc} 107 | } 108 | \DeclareOption{hbu}{% 109 | \input{cnlogo/hbu} 110 | } 111 | \DeclareOption{chu}{% 112 | \input{cnlogo/chu} 113 | } 114 | \DeclareOption{swcnu}{% 115 | \input{cnlogo/swcnu} 116 | } 117 | \DeclareOption{neu}{% 118 | \input{cnlogo/neu} 119 | } 120 | \DeclareOption{nku}{% 121 | \input{cnlogo/nku} 122 | } 123 | \DeclareOption{nju}{% 124 | \input{cnlogo/nju} 125 | } 126 | \DeclareOption{njust}{% 127 | \input{cnlogo/njust} 128 | } 129 | \DeclareOption{dbcju}{% 130 | \input{cnlogo/dbcju} 131 | } 132 | \DeclareOption{ju}{% 133 | \input{cnlogo/ju} 134 | } 135 | \DeclareOption{cug}{% 136 | \input{cnlogo/cug} 137 | } 138 | \DeclareOption{muc}{% 139 | \input{cnlogo/muc} 140 | } 141 | \DeclareOption{dllgu}{% 142 | \input{cnlogo/dllgu} 143 | } 144 | \DeclareOption{hhu}{% 145 | \input{cnlogo/hhu} 146 | } 147 | \DeclareOption{hdzfu}{% 148 | \input{cnlogo/hdzfu} 149 | } 150 | \DeclareOption{znyu}{% 151 | \input{cnlogo/znyu} 152 | } 153 | \DeclareOption{sdcju}{% 154 | \input{cnlogo/sdcju} 155 | } 156 | \DeclareOption{yzu}{% 157 | \input{cnlogo/yzu} 158 | } 159 | \DeclareOption{bnu}{% 160 | \input{cnlogo/bnu} 161 | } 162 | \DeclareOption{zzu}{% 163 | \input{cnlogo/zzu} 164 | } 165 | \DeclareOption{bjydu}{% 166 | \input{cnlogo/bjydu} 167 | } 168 | \DeclareOption{ncu}{% 169 | \input{cnlogo/ncu} 170 | } 171 | \DeclareOption{bhu}{% 172 | \input{cnlogo/bhu} 173 | } 174 | \DeclareOption{hdsfu}{% 175 | \input{cnlogo/hdsfu} 176 | } 177 | \DeclareOption{zhyu}{% 178 | \input{cnlogo/zhyu} 179 | } 180 | \DeclareOption{csu}{% 181 | \input{cnlogo/csu} 182 | } 183 | \DeclareOption{lzu}{% 184 | \input{cnlogo/lzu} 185 | } 186 | \DeclareOption{hnlgu}{% 187 | \input{cnlogo/hnlgu} 188 | } 189 | \DeclareOption{xbnlkju}{% 190 | \input{cnlogo/xbnlkju} 191 | } 192 | \DeclareOption{ahu}{% 193 | \input{cnlogo/ahu} 194 | } 195 | \DeclareOption{whlgu}{% 196 | \input{cnlogo/whlgu} 197 | } 198 | \DeclareOption{zcmu}{% 199 | \input{cnlogo/zcmu} 200 | } 201 | \DeclareOption{hit}{% 202 | \input{cnlogo/hit} 203 | } 204 | \DeclareOption{tjuu}{% 205 | \input{cnlogo/tjuu} 206 | } 207 | \DeclareOption{zky}{% 208 | \input{cnlogo/zky} 209 | } 210 | \ProcessOptions\relax 211 | 212 | %\input{cnlogo/fdu} 213 | %\input{cnlogo/zju} 214 | %\input{cnlogo/xmu} 215 | %\input{cnlogo/pku} 216 | %\input{cnlogo/whu} 217 | %\input{cnlogo/sustc} 218 | %\input{cnlogo/thu} 219 | %\input{cnlogo/stju} 220 | %\input{cnlogo/xjtu} 221 | -------------------------------------------------------------------------------- /style 2/figures/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 2/figures/google.png -------------------------------------------------------------------------------- /style 2/figures/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 2/figures/logo.jpg -------------------------------------------------------------------------------- /style 2/matnoble-beamer-2.sty: -------------------------------------------------------------------------------- 1 | %% FileName : matnoble-beamer-1.sty 2 | %% Author : MatNoble 3 | %% Description : Beamer for HUST 4 | %% Time-stamp : <2018-07-13 09:00> 5 | %% w 公 众 号 : 数系家园 6 | %% site : https://matnoble.me 7 | %% GitHub : https://github.com/MatNoble/HUSTMatNobleBeamer 8 | 9 | \NeedsTeXFormat{LaTeX2e} 10 | \ProvidesPackage{matnoble-beamer-2}[2020/07/22 v2.0 updated by MatNoble] 11 | 12 | \usepackage{fontspec} 13 | \usepackage[T1]{fontenc} 14 | \usepackage[BoldFont,SlantFont,CJKchecksingle]{xeCJK} 15 | \usepackage{mequation} 16 | 17 | %================================== 设置中文字体 ================================% 18 | \setCJKmainfont[Mapping = fullwidth-stop]{Source Han Sans SC}%---------------设置正文为黑体 19 | \setCJKmonofont{Source Han Serif SC} %---------------设置等距字体 20 | % \setCJKsansfont{KaiTi} %---------------设置无衬线字体 21 | \setCJKfamilyfont{zxzt}{FZShouJinShu-S10S} 22 | \setCJKfamilyfont{FZDH}{FZDaHei-B02S} 23 | %================================== 设置中文字体 ================================% 24 | 25 | %================================== 设置英文字体 ================================% 26 | \setmainfont[Mapping=tex-text]{Helvetica} %--------------------------------英文衬线字体 27 | \setsansfont[Mapping=tex-text]{Trebuchet MS}%------------------------------------英文无衬线字体 28 | \setmonofont[Mapping=tex-text]{Courier New} %-------------------------------------英文等宽字体 29 | \newfontfamily\Arial{Arial} 30 | % ================================== 设置英文字体 ================================% 31 | 32 | \usepackage{amsthm,amsmath,amsfonts,amssymb,bm} % 导入数学公式所需宏包 33 | \usepackage{helvet} 34 | \usepackage{color} % 字体颜色支持 35 | \usepackage{graphicx,hyperref,url} 36 | %\hypersetup{colorlinks,linkcolor=red} 37 | \usepackage{metalogo} % 非必须 38 | \usepackage{tikz} 39 | \usetikzlibrary{positioning,backgrounds} 40 | \usetikzlibrary{fadings} 41 | \usetikzlibrary{patterns} 42 | \usetikzlibrary{calc} 43 | \usetikzlibrary{shadings} 44 | \usepackage{tabularx,multirow,multicol,longtable} 45 | \usepackage{tabu} 46 | \usepackage{subcaption} 47 | \setbeamertemplate{caption}[numbered] 48 | \setbeamerfont{caption}{size=\small} 49 | 50 | % 关于图片 graphicx 51 | % 如果图片没有指定后缀, 依次按下列顺序搜索 52 | \DeclareGraphicsExtensions{.eps,.pdf,.jpg,.png} 53 | % 设置图表搜索路径, 可以给图表文件夹取如下名字 54 | \graphicspath{{figures/}{figure/}{pictures/}% 55 | {picture/}{pic/}{pics/}{image/}{images/}} 56 | 57 | %% 上文引用的包可按实际情况自行增删 58 | %%%%%%%%%%%%%%%%%% 59 | 60 | \beamertemplateballitem %设置 Beamer 主题 61 | %%% 62 | %%% Inherit definitions from existing themes (DO NOT MODIFY THESE) 63 | %%% 64 | 65 | % Layout scheme for outer elements: split header and footer 66 | \useoutertheme{split} 67 | 68 | % Color scheme for outer elements: use background colors 69 | \usecolortheme{whale} 70 | 71 | % Layout scheme for inner elements: rounded elements 72 | \useinnertheme{rounded} 73 | 74 | % Color scheme for inner elements: use foreground colors 75 | \usecolortheme{orchid} 76 | 77 | 78 | %%% 79 | %%% Tweak definitions of inner theme to match personal preferences (MODIFY THESE) 80 | %%% 81 | 82 | % Itemize items: default (triangle), circle, square, ball 83 | \setbeamertemplate{itemize items}[circle] 84 | 85 | % Enumerate items: default, circle, square, ball 86 | \setbeamertemplate{enumerate items}[circle] 87 | 88 | % Outline: default, sections numbered, subsections numbered, circle, square, ball, ball unnumbered 89 | \setbeamertemplate{sections/subsections in toc}[default] 90 | 91 | % General blocks: 92 | \setbeamertemplate{blocks}[rounded] 93 | 94 | % Title page: 95 | \setbeamertemplate{title page}[default][colsep=-4bp,rounded=true] 96 | 97 | % Part page: 98 | \setbeamertemplate{part page}[default][colsep=-4bp,rounded=true] 99 | 100 | % Navigation symbols: 101 | % \setbeamertemplate{navigation symbols}{} 102 | 103 | 104 | %%% 105 | %%% Tweak definitions of outer theme to match Radboud (website) style 106 | %%% 107 | 108 | % Background 109 | \pgfdeclareimage[width=\paperwidth,height=\paperheight]{bg}{res/hust_background} 110 | \setbeamertemplate{background}{\pgfuseimage{bg}} 111 | 112 | % Colors 113 | % \usecolortheme[RGB={0,78,153}]{structure} % 蓝色 114 | \usecolortheme[RGB={37,85,122}]{structure} % 华科蓝 115 | %\usecolortheme[RGB={96,15,15}]{structure} % 红色 116 | 117 | \setbeamercolor{frametitle}{parent=subsection in head/foot} 118 | \setbeamercolor{frametitle right}{parent=section in head/foot} 119 | 120 | \pgfdeclarehorizontalshading[frametitle.bg,frametitle right.bg]{beamer@frametitleshade}{\paperheight}{% 121 | color(0pt)=(frametitle.bg); 122 | color(\paperwidth)=(frametitle right.bg)} 123 | 124 | \AtBeginDocument{ 125 | \pgfdeclareverticalshading{beamer@topshade}{\paperwidth}{% 126 | color(0pt)=(bg); 127 | color(4pt)=(black!50!bg)} 128 | } 129 | 130 | % Footline: AUTHOR | TITLE | DATE FRAMENUMBER 131 | 132 | \defbeamertemplate*{footline}{matnoble theme}{% 133 | \leavevmode% 134 | \hbox{% 135 | \begin{beamercolorbox}[wd=.25\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% 136 | \usebeamerfont{author in head/foot}\insertshortauthor 137 | \end{beamercolorbox}% 138 | \begin{beamercolorbox}[wd=.25\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% 139 | \usebeamerfont{author in head/foot}\insertshortdate 140 | \end{beamercolorbox}% 141 | \begin{beamercolorbox}[wd=.435\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}% 142 | \usebeamerfont{title in head/foot}\insertshorttitle 143 | \end{beamercolorbox}% 144 | \begin{beamercolorbox}[wd=0.065\paperwidth,ht=2.25ex,dp=1ex,right]{title in head/foot}% 145 | \insertframenumber{} / \inserttotalframenumber\hspace*{2ex} 146 | \end{beamercolorbox}}% 147 | \vskip0pt% 148 | } 149 | 150 | \defbeamertemplate*{headline}{matnoble theme}{% 151 | \leavevmode% 152 | \@tempdimb=6.4375ex% 153 | %\multiply\@tempdimb by\beamer@sectionmax% 154 | \pgfdeclareimage[height=.1\@tempdimb]{logo}{res/logo1.png}% 155 | \pgfdeclareimage[height=.7\@tempdimb]{title_logo}{res/hust_title.png}% 156 | \logo{\pgfuseimage{logo}}% 157 | \ifdim\@tempdimb>0pt% 158 | \advance\@tempdimb by 1.125ex% 159 | \begin{beamercolorbox}[wd=\paperwidth,ht=\@tempdimb,center]{section in head/foot}% 160 | \vbox to\@tempdimb{\vfil\insertsectionnavigationhorizontal{.5\textwidth}{\hskip0pt plus1filll}{}\vfil}% 161 | \end{beamercolorbox}% 162 | \fi% 163 | } 164 | 165 | \defbeamertemplate*{frametitle}{matnoble theme}{% 166 | \nointerlineskip% 167 | %\vskip-2pt% 168 | \hbox{\leavevmode 169 | \advance\beamer@leftmargin by -12bp% 170 | \advance\beamer@rightmargin by -12bp% 171 | \beamer@tempdim=\textwidth% 172 | \advance\beamer@tempdim by \beamer@leftmargin% 173 | \advance\beamer@tempdim by \beamer@rightmargin% 174 | \hskip-\Gm@lmargin\hbox{% 175 | \setbox\beamer@tempbox=\hbox{\begin{minipage}[b]{\paperwidth}% 176 | \vbox{}\vskip-.75ex% 177 | \leftskip0.3cm% 178 | \rightskip0.3cm plus1fil\leavevmode 179 | \insertframetitle% 180 | \ifx\insertframesubtitle\@empty% 181 | \strut\par% 182 | \else 183 | \par{\usebeamerfont*{framesubtitle}{\usebeamercolor[fg]{framesubtitle}\insertframesubtitle}\strut\par}% 184 | \fi% 185 | \nointerlineskip 186 | \vbox{}% 187 | \end{minipage}}% 188 | \beamer@tempdim=\ht\beamer@tempbox% 189 | \advance\beamer@tempdim by 2pt% 190 | \begin{pgfpicture}{0.1mm}{0pt}{1.01\paperwidth}{\beamer@tempdim} 191 | \usebeamercolor{frametitle right} 192 | \pgfpathrectangle{\pgfpointorigin}{\pgfpoint{\paperwidth}{\beamer@tempdim}} 193 | \pgfusepath{clip} 194 | \pgftext[left,base]{\pgfuseshading{beamer@frametitleshade}} 195 | \end{pgfpicture} 196 | \hskip-\paperwidth% 197 | \box\beamer@tempbox% 198 | }% 199 | \hskip-\Gm@rmargin% 200 | }% 201 | } 202 | 203 | -------------------------------------------------------------------------------- /style 2/mequation.sty: -------------------------------------------------------------------------------- 1 | 2 | \RequirePackage{accents} 3 | \newcommand{\dbtilde}[1]{\accentset{\approx}{#1}} 4 | \newcommand{\Cdot}{\boldsymbol{\cdot}} 5 | 6 | % equation 7 | \newcommand*{\dif}{\mathop{}\!\mathrm{d}} 8 | 9 | % mathbb 10 | \newcommand{\bba}{\mathbb{a}} 11 | \newcommand{\bbb}{\mathbb{b}} 12 | \newcommand{\bbc}{\mathbb{c}} 13 | \newcommand{\bbd}{\mathbb{d}} 14 | \newcommand{\bbe}{\mathbb{e}} 15 | \newcommand{\bbf}{\mathbb{f}} 16 | \newcommand{\bbg}{\mathbb{g}} 17 | \newcommand{\bbh}{\mathbb{h}} 18 | \newcommand{\bbi}{\mathbb{i}} 19 | \newcommand{\bbj}{\mathbb{j}} 20 | \newcommand{\bbk}{\mathbb{k}} 21 | \newcommand{\bbl}{\mathbb{l}} 22 | \newcommand{\bbm}{\mathbb{m}} 23 | \newcommand{\bbn}{\mathbb{n}} 24 | \newcommand{\bbo}{\mathbb{o}} 25 | \newcommand{\bbp}{\mathbb{p}} 26 | \newcommand{\bbq}{\mathbb{q}} 27 | \newcommand{\bbr}{\mathbb{r}} 28 | \newcommand{\bbs}{\mathbb{s}} 29 | \newcommand{\bbt}{\mathbb{t}} 30 | \newcommand{\bbu}{\mathbb{u}} 31 | \newcommand{\bbv}{\mathbb{v}} 32 | \newcommand{\bbw}{\mathbb{w}} 33 | \newcommand{\bbx}{\mathbb{x}} 34 | \newcommand{\bby}{\mathbb{y}} 35 | \newcommand{\bbz}{\mathbb{z}} 36 | \newcommand{\bbA}{\mathbb{A}} 37 | \newcommand{\bbB}{\mathbb{B}} 38 | \newcommand{\bbC}{\mathbb{C}} 39 | \newcommand{\bbD}{\mathbb{D}} 40 | \newcommand{\bbE}{\mathbb{E}} 41 | \newcommand{\bbF}{\mathbb{F}} 42 | \newcommand{\bbG}{\mathbb{G}} 43 | \newcommand{\bbH}{\mathbb{H}} 44 | \newcommand{\bbI}{\mathbb{I}} 45 | \newcommand{\bbJ}{\mathbb{J}} 46 | \newcommand{\bbK}{\mathbb{K}} 47 | \newcommand{\bbL}{\mathbb{L}} 48 | \newcommand{\bbM}{\mathbb{M}} 49 | \newcommand{\bbN}{\mathbb{N}} 50 | \newcommand{\bbO}{\mathbb{O}} 51 | \newcommand{\bbP}{\mathbb{P}} 52 | \newcommand{\bbQ}{\mathbb{Q}} 53 | \newcommand{\bbR}{\mathbb{R}} 54 | \newcommand{\bbS}{\mathbb{S}} 55 | \newcommand{\bbT}{\mathbb{T}} 56 | \newcommand{\bbU}{\mathbb{U}} 57 | \newcommand{\bbV}{\mathbb{V}} 58 | \newcommand{\bbW}{\mathbb{W}} 59 | \newcommand{\bbX}{\mathbb{X}} 60 | \newcommand{\bbY}{\mathbb{Y}} 61 | \newcommand{\bbZ}{\mathbb{Z}} 62 | 63 | % mathbf 64 | \newcommand{\bfa}{\mathbf{a}} 65 | \newcommand{\bfb}{\mathbf{b}} 66 | \newcommand{\bfc}{\mathbf{c}} 67 | \newcommand{\bfd}{\mathbf{d}} 68 | \newcommand{\bfe}{\mathbf{e}} 69 | \newcommand{\bff}{\mathbf{f}} 70 | \newcommand{\bfg}{\mathbf{g}} 71 | \newcommand{\bfh}{\mathbf{h}} 72 | \newcommand{\bfi}{\mathbf{i}} 73 | \newcommand{\bfj}{\mathbf{j}} 74 | \newcommand{\bfk}{\mathbf{k}} 75 | \newcommand{\bfl}{\mathbf{l}} 76 | \newcommand{\bfm}{\mathbf{m}} 77 | \newcommand{\bfn}{\mathbf{n}} 78 | \newcommand{\bfo}{\mathbf{o}} 79 | \newcommand{\bfp}{\mathbf{p}} 80 | \newcommand{\bfq}{\mathbf{q}} 81 | \newcommand{\bfr}{\mathbf{r}} 82 | \newcommand{\bfs}{\mathbf{s}} 83 | \newcommand{\bft}{\mathbf{t}} 84 | \newcommand{\bfu}{\mathbf{u}} 85 | \newcommand{\bfv}{\mathbf{v}} 86 | \newcommand{\bfw}{\mathbf{w}} 87 | \newcommand{\bfx}{\mathbf{x}} 88 | \newcommand{\bfy}{\mathbf{y}} 89 | \newcommand{\bfz}{\mathbf{z}} 90 | \newcommand{\bfA}{\mathbf{A}} 91 | \newcommand{\bfB}{\mathbf{B}} 92 | \newcommand{\bfC}{\mathbf{C}} 93 | \newcommand{\bfD}{\mathbf{D}} 94 | \newcommand{\bfE}{\mathbf{E}} 95 | \newcommand{\bfF}{\mathbf{F}} 96 | \newcommand{\bfG}{\mathbf{G}} 97 | \newcommand{\bfH}{\mathbf{H}} 98 | \newcommand{\bfI}{\mathbf{I}} 99 | \newcommand{\bfJ}{\mathbf{J}} 100 | \newcommand{\bfK}{\mathbf{K}} 101 | \newcommand{\bfL}{\mathbf{L}} 102 | \newcommand{\bfM}{\mathbf{M}} 103 | \newcommand{\bfN}{\mathbf{N}} 104 | \newcommand{\bfO}{\mathbf{O}} 105 | \newcommand{\bfP}{\mathbf{P}} 106 | \newcommand{\bfQ}{\mathbf{Q}} 107 | \newcommand{\bfR}{\mathbf{R}} 108 | \newcommand{\bfS}{\mathbf{S}} 109 | \newcommand{\bfT}{\mathbf{T}} 110 | \newcommand{\bfU}{\mathbf{U}} 111 | \newcommand{\bfV}{\mathbf{V}} 112 | \newcommand{\bfW}{\mathbf{W}} 113 | \newcommand{\bfX}{\mathbf{X}} 114 | \newcommand{\bfY}{\mathbf{Y}} 115 | \newcommand{\bfZ}{\mathbf{Z}} 116 | 117 | % mathbfit (bm) 118 | \newcommand{\bma}{\bm{a}} 119 | \newcommand{\bmb}{\bm{b}} 120 | \newcommand{\bmc}{\bm{c}} 121 | \newcommand{\bmd}{\bm{d}} 122 | \newcommand{\bme}{\bm{e}} 123 | \newcommand{\bmf}{\bm{f}} 124 | \newcommand{\bmg}{\bm{g}} 125 | \newcommand{\bmh}{\bm{h}} 126 | \newcommand{\bmi}{\bm{i}} 127 | \newcommand{\bmj}{\bm{j}} 128 | \newcommand{\bmk}{\bm{k}} 129 | \newcommand{\bml}{\bm{l}} 130 | \newcommand{\bmm}{\bm{m}} 131 | \newcommand{\bmn}{\bm{n}} 132 | \newcommand{\bmo}{\bm{o}} 133 | \newcommand{\bmp}{\bm{p}} 134 | \newcommand{\bmq}{\bm{q}} 135 | \newcommand{\bmr}{\bm{r}} 136 | \newcommand{\bms}{\bm{s}} 137 | \newcommand{\bmt}{\bm{t}} 138 | \newcommand{\bmu}{\bm{u}} 139 | \newcommand{\bmv}{\bm{v}} 140 | \newcommand{\bmw}{\bm{w}} 141 | \newcommand{\bmx}{\bm{x}} 142 | \newcommand{\bmy}{\bm{y}} 143 | \newcommand{\bmz}{\bm{z}} 144 | \newcommand{\bmA}{\bm{A}} 145 | \newcommand{\bmB}{\bm{B}} 146 | \newcommand{\bmC}{\bm{C}} 147 | \newcommand{\bmD}{\bm{D}} 148 | \newcommand{\bmE}{\bm{E}} 149 | \newcommand{\bmF}{\bm{F}} 150 | \newcommand{\bmG}{\bm{G}} 151 | \newcommand{\bmH}{\bm{H}} 152 | \newcommand{\bmI}{\bm{I}} 153 | \newcommand{\bmJ}{\bm{J}} 154 | \newcommand{\bmK}{\bm{K}} 155 | \newcommand{\bmL}{\bm{L}} 156 | \newcommand{\bmM}{\bm{M}} 157 | \newcommand{\bmN}{\bm{N}} 158 | \newcommand{\bmO}{\bm{O}} 159 | \newcommand{\bmP}{\bm{P}} 160 | \newcommand{\bmQ}{\bm{Q}} 161 | \newcommand{\bmR}{\bm{R}} 162 | \newcommand{\bmS}{\bm{S}} 163 | \newcommand{\bmT}{\bm{T}} 164 | \newcommand{\bmU}{\bm{U}} 165 | \newcommand{\bmV}{\bm{V}} 166 | \newcommand{\bmW}{\bm{W}} 167 | \newcommand{\bmX}{\bm{X}} 168 | \newcommand{\bmY}{\bm{Y}} 169 | \newcommand{\bmZ}{\bm{Z}} 170 | 171 | % mathcal 172 | \newcommand{\calA}{\mathcal{A}} 173 | \newcommand{\calB}{\mathcal{B}} 174 | \newcommand{\calC}{\mathcal{C}} 175 | \newcommand{\calD}{\mathcal{D}} 176 | \newcommand{\calE}{\mathcal{E}} 177 | \newcommand{\calF}{\mathcal{F}} 178 | \newcommand{\calG}{\mathcal{G}} 179 | \newcommand{\calH}{\mathcal{H}} 180 | \newcommand{\calI}{\mathcal{I}} 181 | \newcommand{\calJ}{\mathcal{J}} 182 | \newcommand{\calK}{\mathcal{K}} 183 | \newcommand{\calL}{\mathcal{L}} 184 | \newcommand{\calM}{\mathcal{M}} 185 | \newcommand{\calN}{\mathcal{N}} 186 | \newcommand{\calO}{\mathcal{O}} 187 | \newcommand{\calP}{\mathcal{P}} 188 | \newcommand{\calQ}{\mathcal{Q}} 189 | \newcommand{\calR}{\mathcal{R}} 190 | \newcommand{\calS}{\mathcal{S}} 191 | \newcommand{\calT}{\mathcal{T}} 192 | \newcommand{\calU}{\mathcal{U}} 193 | \newcommand{\calV}{\mathcal{V}} 194 | \newcommand{\calW}{\mathcal{W}} 195 | \newcommand{\calX}{\mathcal{X}} 196 | \newcommand{\calY}{\mathcal{Y}} 197 | \newcommand{\calZ}{\mathcal{Z}} 198 | 199 | % mathfrak 200 | \newcommand{\fraka}{\mathfrak{a}} 201 | \newcommand{\frakb}{\mathfrak{b}} 202 | \newcommand{\frakc}{\mathfrak{c}} 203 | \newcommand{\frakd}{\mathfrak{d}} 204 | \newcommand{\frake}{\mathfrak{e}} 205 | \newcommand{\frakf}{\mathfrak{f}} 206 | \newcommand{\frakg}{\mathfrak{g}} 207 | \newcommand{\frakh}{\mathfrak{h}} 208 | \newcommand{\fraki}{\mathfrak{i}} 209 | \newcommand{\frakj}{\mathfrak{j}} 210 | \newcommand{\frakk}{\mathfrak{k}} 211 | \newcommand{\frakl}{\mathfrak{l}} 212 | \newcommand{\frakm}{\mathfrak{m}} 213 | \newcommand{\frakn}{\mathfrak{n}} 214 | \newcommand{\frako}{\mathfrak{o}} 215 | \newcommand{\frakp}{\mathfrak{p}} 216 | \newcommand{\frakq}{\mathfrak{q}} 217 | \newcommand{\frakr}{\mathfrak{r}} 218 | \newcommand{\fraks}{\mathfrak{s}} 219 | \newcommand{\frakt}{\mathfrak{t}} 220 | \newcommand{\fraku}{\mathfrak{u}} 221 | \newcommand{\frakv}{\mathfrak{v}} 222 | \newcommand{\frakw}{\mathfrak{w}} 223 | \newcommand{\frakx}{\mathfrak{x}} 224 | \newcommand{\fraky}{\mathfrak{y}} 225 | \newcommand{\frakz}{\mathfrak{z}} 226 | \newcommand{\frakA}{\mathfrak{A}} 227 | \newcommand{\frakB}{\mathfrak{B}} 228 | \newcommand{\frakC}{\mathfrak{C}} 229 | \newcommand{\frakD}{\mathfrak{D}} 230 | \newcommand{\frakE}{\mathfrak{E}} 231 | \newcommand{\frakF}{\mathfrak{F}} 232 | \newcommand{\frakG}{\mathfrak{G}} 233 | \newcommand{\frakH}{\mathfrak{H}} 234 | \newcommand{\frakI}{\mathfrak{I}} 235 | \newcommand{\frakJ}{\mathfrak{J}} 236 | \newcommand{\frakK}{\mathfrak{K}} 237 | \newcommand{\frakL}{\mathfrak{L}} 238 | \newcommand{\frakM}{\mathfrak{M}} 239 | \newcommand{\frakN}{\mathfrak{N}} 240 | \newcommand{\frakO}{\mathfrak{O}} 241 | \newcommand{\frakP}{\mathfrak{P}} 242 | \newcommand{\frakQ}{\mathfrak{Q}} 243 | \newcommand{\frakR}{\mathfrak{R}} 244 | \newcommand{\frakS}{\mathfrak{S}} 245 | \newcommand{\frakT}{\mathfrak{T}} 246 | \newcommand{\frakU}{\mathfrak{U}} 247 | \newcommand{\frakV}{\mathfrak{V}} 248 | \newcommand{\frakW}{\mathfrak{W}} 249 | \newcommand{\frakX}{\mathfrak{X}} 250 | \newcommand{\frakY}{\mathfrak{Y}} 251 | \newcommand{\frakZ}{\mathfrak{Z}} 252 | 253 | % mathrm 254 | \newcommand{\rma}{\mathrm{a}} 255 | \newcommand{\rmb}{\mathrm{b}} 256 | \newcommand{\rmc}{\mathrm{c}} 257 | \newcommand{\rmd}{\mathrm{d}} 258 | \newcommand{\rme}{\mathrm{e}} 259 | \newcommand{\rmf}{\mathrm{f}} 260 | \newcommand{\rmg}{\mathrm{g}} 261 | \newcommand{\rmh}{\mathrm{h}} 262 | \newcommand{\rmi}{\mathrm{i}} 263 | \newcommand{\rmj}{\mathrm{j}} 264 | \newcommand{\rmk}{\mathrm{k}} 265 | \newcommand{\rml}{\mathrm{l}} 266 | \newcommand{\rmm}{\mathrm{m}} 267 | \newcommand{\rmn}{\mathrm{n}} 268 | \newcommand{\rmo}{\mathrm{o}} 269 | \newcommand{\rmp}{\mathrm{p}} 270 | \newcommand{\rmq}{\mathrm{q}} 271 | \newcommand{\rmr}{\mathrm{r}} 272 | \newcommand{\rms}{\mathrm{s}} 273 | \newcommand{\rmt}{\mathrm{t}} 274 | \newcommand{\rmu}{\mathrm{u}} 275 | \newcommand{\rmv}{\mathrm{v}} 276 | \newcommand{\rmw}{\mathrm{w}} 277 | \newcommand{\rmx}{\mathrm{x}} 278 | \newcommand{\rmy}{\mathrm{y}} 279 | \newcommand{\rmz}{\mathrm{z}} 280 | \newcommand{\rmA}{\mathrm{A}} 281 | \newcommand{\rmB}{\mathrm{B}} 282 | \newcommand{\rmC}{\mathrm{C}} 283 | \newcommand{\rmD}{\mathrm{D}} 284 | \newcommand{\rmE}{\mathrm{E}} 285 | \newcommand{\rmF}{\mathrm{F}} 286 | \newcommand{\rmG}{\mathrm{G}} 287 | \newcommand{\rmH}{\mathrm{H}} 288 | \newcommand{\rmI}{\mathrm{I}} 289 | \newcommand{\rmJ}{\mathrm{J}} 290 | \newcommand{\rmK}{\mathrm{K}} 291 | \newcommand{\rmL}{\mathrm{L}} 292 | \newcommand{\rmM}{\mathrm{M}} 293 | \newcommand{\rmN}{\mathrm{N}} 294 | \newcommand{\rmO}{\mathrm{O}} 295 | \newcommand{\rmP}{\mathrm{P}} 296 | \newcommand{\rmQ}{\mathrm{Q}} 297 | \newcommand{\rmR}{\mathrm{R}} 298 | \newcommand{\rmS}{\mathrm{S}} 299 | \newcommand{\rmT}{\mathrm{T}} 300 | \newcommand{\rmU}{\mathrm{U}} 301 | \newcommand{\rmV}{\mathrm{V}} 302 | \newcommand{\rmW}{\mathrm{W}} 303 | \newcommand{\rmX}{\mathrm{X}} 304 | \newcommand{\rmY}{\mathrm{Y}} 305 | \newcommand{\rmZ}{\mathrm{Z}} -------------------------------------------------------------------------------- /style 2/res/hust_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 2/res/hust_background.png -------------------------------------------------------------------------------- /style 2/res/hust_background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 2/res/hust_background1.png -------------------------------------------------------------------------------- /style 2/res/hust_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 2/res/hust_title.png -------------------------------------------------------------------------------- /style 2/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatNoble/HUSTMatNobleBeamer/7472eb4bc6e0d2c45feeaccd9b4d4b7e5d180dd4/style 2/res/logo.png --------------------------------------------------------------------------------