Beamer加中文
- \documentclass{beamer}
- \mode<presentation>
- {
- \usetheme{CambridgeUS} % or try Darmstadt, Madrid, Warsaw, ...
- % \usecolortheme{default} % or try albatross, beaver, crane, ...
- % \usefonttheme{default} % or try serif, structurebold, ...
- \setbeamertemplate{navigation symbols}{}
- \setbeamertemplate{caption}[numbered]
- }
- \usepackage{graphicx} % Allows including images
- \usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables
- \usepackage{fontspec}
- \setsansfont{Hiragino Sans GB} % font name is case-sensitive
- \title[你好]{你好啊} % The short title appears at the bottom of every slide, the full title is only on the title page
- \author{黄世宇} % Your name
- \institute[THU] % Your institution as it will appear on the bottom of every slide, may be shorthand to save space
- {
- 清华大学计算机科学与技术系 \\ % Your institution for the title page
- \medskip
- \textit{huangsy13@gmail.com} % Your email address
- }
- \date{\today} % Date, can be changed to a custom date
- \begin{document}
- \begin{frame}
- \titlepage % Print the title page as the first slide
- \end{frame}
- \begin{frame}
- \frametitle{Overview} % Table of contents slide, comment this block out to remove it
- \tableofcontents % Throughout your presentation, if you choose to use \section{} and \subsection{} commands, these will automatically be printed on this slide as an overview of your presentation
- \end{frame}
- %----------------------------------------------------------------------------------------
- % PRESENTATION SLIDES
- %----------------------------------------------------------------------------------------
- %------------------------------------------------
- \section{背景介绍} % Sections can be created in order to organize your presentation into discrete blocks, all sections and subsections are automatically printed in the table of contents as an overview of the talk
- %------------------------------------------------
- \subsection{主要应用} % A subsection can be created just before a set of slides with a common theme to further break down your presentation into chunks
- \begin{frame}
- \frametitle{Paragraphs of Text}
- Sed iaculis dapibus gravida. Morbi sed tortor erat, nec interdum arcu. Sed id lorem lectus. Quisque viverra augue id sem ornare non aliquam nibh tristique. Aenean in ligula nisl. Nulla sed tellus ipsum. Donec vestibulum ligula non lorem vulputate fermentum accumsan neque mollis.\\~\\
- Sed diam enim, sagittis nec condimentum sit amet, ullamcorper sit amet libero. Aliquam vel dui orci, a porta odio. Nullam id suscipit ipsum. Aenean lobortis commodo sem, ut commodo leo gravida vitae. Pellentesque vehicula ante iaculis arcu pretium rutrum eget sit amet purus. Integer ornare nulla quis neque ultrices lobortis. Vestibulum ultrices tincidunt libero, quis commodo erat ullamcorper id.
- \end{frame}
- %------------------------------------------------
- \begin{frame}
- \frametitle{Bullet Points}
- \begin{itemize}
- \item Lorem ipsum dolor sit amet, consectetur adipiscing elit
- \item Aliquam blandit faucibus nisi, sit amet dapibus enim tempus eu
- \item Nulla commodo, erat quis gravida posuere, elit lacus lobortis est, quis porttitor odio mauris at libero
- \item Nam cursus est eget velit posuere pellentesque
- \item Vestibulum faucibus velit a augue condimentum quis convallis nulla gravida
- \end{itemize}
- \end{frame}
- %------------------------------------------------
- \begin{frame}
- \frametitle{Blocks of Highlighted Text}
- \begin{block}{Block }
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lectus nisl, ultricies in feugiat rutrum, porttitor sit amet augue. Aliquam ut tortor mauris. Sed volutpat ante purus, quis accumsan dolor.
- \end{block}
- \begin{block}{Block }
- Pellentesque sed tellus purus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Vestibulum quis magna at risus dictum tempor eu vitae velit.
- \end{block}
- \begin{block}{Block }
- Suspendisse tincidunt sagittis gravida. Curabitur condimentum, enim sed venenatis rutrum, ipsum neque consectetur orci, sed blandit justo nisi ac lacus.
- \end{block}
- \end{frame}
- %------------------------------------------------
- \begin{frame}
- \frametitle{Multiple Columns}
- \begin{columns}[c] % The "c" option specifies centered vertical alignment while the "t" option is used for top vertical alignment
- \column{.\textwidth} % Left column and width
- \textbf{Heading}
- \begin{enumerate}
- \item Statement
- \item Explanation
- \item Example
- \end{enumerate}
- \column{.\textwidth} % Right column and width
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lectus nisl, ultricies in feugiat rutrum, porttitor sit amet augue. Aliquam ut tortor mauris. Sed volutpat ante purus, quis accumsan dolor.
- \end{columns}
- \end{frame}
- %------------------------------------------------
- \section{Second Section}
- %------------------------------------------------
- \begin{frame}
- \frametitle{Table}
- \begin{table}
- \begin{tabular}{l l l}
- \toprule
- \textbf{Treatments} & \textbf{Response } & \textbf{Response }\\
- \midrule
- Treatment & 0.0003262 & 0.562 \\
- Treatment & 0.0015681 & 0.910 \\
- Treatment & 0.0009271 & 0.296 \\
- \bottomrule
- \end{tabular}
- \caption{Table caption}
- \end{table}
- \end{frame}
- %------------------------------------------------
- \begin{frame}
- \frametitle{Theorem}
- \begin{theorem}[Mass energy equivalence]
- $E = mc^$
- \end{theorem}
- \end{frame}
- %------------------------------------------------
- \begin{frame}[fragile] % Need to use the fragile option when verbatim is used in the slide
- \frametitle{Verbatim}
- \begin{example}[Theorem Slide Code]
- \begin{verbatim}
- \begin{frame}
- \frametitle{Theorem}
- \begin{theorem}[Mass--energy equivalence]
- $E = mc^$
- \end{theorem}
- \end{frame}\end{verbatim}
- \end{example}
- \end{frame}
- %------------------------------------------------
- \begin{frame}
- \frametitle{Figure}
- Uncomment the code on this slide to include your own image from the same directory as the template .TeX file.
- %\begin{figure}
- %\includegraphics[width=0.8\linewidth]{test}
- %\end{figure}
- \end{frame}
- %------------------------------------------------
- \begin{frame}[fragile] % Need to use the fragile option when verbatim is used in the slide
- \frametitle{Citation}
- An example of the \verb|\cite| command to cite within the presentation:\\~
- This statement requires citation \cite{p1}.
- \end{frame}
- %------------------------------------------------
- \begin{frame}
- \frametitle{References}
- \footnotesize{
- \begin{thebibliography}{} % Beamer does not support BibTeX so references must be inserted manually as below
- \bibitem[Smith, ]{p1} John Smith ()
- \newblock Title of the publication
- \newblock \emph{Journal Name} (), -- .
- \end{thebibliography}
- }
- \end{frame}
- %------------------------------------------------
- \begin{frame}
- \Huge{\centerline{The End}}
- \end{frame}
- %----------------------------------------------------------------------------------------
- \end{document}
Beamer加中文的更多相关文章
- Arch-Linux-添加中文字体
代码下载: Arch-Linux-添加中文字体.txt
- Delphi中 为DBNavigator的按钮加中文
Delphi中 为DBNavigator的按钮加中文 /*Delphi中数据库控件DBNavigator使用起来不错,但是按钮上“+”.“-”等含义对于中国的用户不习惯,甚至不知道是什么含义.改成相应 ...
- tensorboard可视化节点却没有显示图像的解决方法---注意路径问题加中文文件名
问题:完成graph中的算子,并执行tf.Session后,用tensorboard可视化节点时,没有显示图像 1. tensorboard 1.10 我是将log文件存储在E盘下面的,所以直接在E盘 ...
- 有时候,Visual C++代码中加中文注释会导致错误!
今天做题发现了个奇葩错误,以此警戒自己. 张某,做的一道题. --------------------------------------------------------------------- ...
- python opencv3 给图片加中文
转自:https://www.cnblogs.com/arkenstone/p/6961453.html opencv3.2将中文输出到图片上 opencv自带的putText函数无法输出utf8类型 ...
- easyui------添加中文文件
添加中文文件: 官网地址:http://www.jeasyui.net/download/去jquery-easyui官网下载的文件里面找到easyui-lang-zh_CN.js文件,添加入代码里面 ...
- url取值乱码问题,url加中文导致页面不能加载问题 js unicode转码,以及解码
很多时候写H5或其他适配时,打不开url.很多原因是因为浏览器不支持中文url,从url拿 出来的中文值也会乱码,这时候就必须把中文转化成Unicode值,去进行页面传值 中文转Unicode fun ...
- 为DBNavigator的按钮加中文
转自:http://hi.baidu.com/debiansir/item/0699f5b6bb4d99f063388e71 /*Delphi中数据库控件DBNavigator使用起来不错,但是按钮上 ...
- 【Lucene3.6.2入门系列】第14节_SolrJ操作索引和搜索文档以及整合中文分词
package com.jadyer.solrj; import java.util.ArrayList; import java.util.List; import org.apache.solr. ...
随机推荐
- Linux内核分析(九)——总结篇
序:写在前面的话 本次内容作为Linux内核的总结内容,主要涉及对Linux系统的总体的一些理解,同时将之前的一些总结贴出来作为大家的一个索引,希望笔者的博客能对和笔者一样的菜鸟有一些帮 ...
- Linux下sqlite3编程
---------------------------------------------------------------------------------------------------- ...
- Webpack安装和配置
一.安装和配置webpack 1.全局安装webpack 这样就安装好了webpack,可以再全局通过webpack -v来查看是否安装成功. 2.先创建项目目录结构,根目录是mywebpack.进入 ...
- solr6.6 solrJ索引富文本(word/pdf)文件
1.文件配置 在core下面新建lib文件夹,存放相关的jar包,如图所示: 修改solrconfig.xml <lib dir="${solr.install.dir:../../. ...
- PHP微信墙制作
微信墙 PHP 注意:由于微信官网不定时会更新,其中模拟登陆以及爬取数据的方式可能会失效,最近这12个月里,就有两次更新导致此功能需要重写. 服务端源码->github地址传送门 思路 其实实现 ...
- docker入门——镜像简介
什么是docker镜像 Docker镜像是由文件系统叠加而成. 最底端是一个引导文件系统,即bootfs: 这很像典型的Linux/Unix的引导文件系统.Docker用户几乎永远不会和引导文件系统有 ...
- Spring事务的传播行为 @Transactional
Spring事务的传播行为http://blog.csdn.net/cuker919/article/details/5957209 在service类前加上@Transactional,声明这个se ...
- JS的同步加载、异步加载
在使用js展开式菜单时,发现只有加载完页面包含的js文件时,展开菜单才能折叠起来. 查找了一下原因:是因为js页面加载使用的是同步模式,又称阻塞模式,会阻止浏览器的后续处理,停止后续的解析,只有当当前 ...
- RabbitMQ 学习笔记(一)特点
RabbitMQ 的具体特点 可靠性: RabbitMQ 使用一些机制来保证可靠性, 如持久化.传输确认及发布确认等. 令灵活的路由: 在消息进入队列之前,通过交换器来路由消息.对于典型的路由功能,R ...
- webpack 通用环境快速搭建
能用babel编译es2015 . 能热编译.能加载静态资源(js/css/font/image).是一个很通用的开发环境,虽然不智能.但很好扩展 npm 安装列表: # webpack 核心 npm ...