latex beamer技巧
%章节标题
\section{Related work(LSH)}
%开始一页ppt
\begin{frame}{Related work}{} \partitle{Locality-Sensitive Hashing, LSH} \\ \vspace{1ex} \qquad LSH reduces the dimensionality of \alert{high-dimensional data}. LSH hashes input items so that similar items map to the same “buckets” with high probability. \footnote{Locality-Sensitive Hashing, LSH. Wikipedia} \vspace{2ex}
%插入图片
\begin{figure}[H]
\includegraphics[width=6cm,height=3cm]{2}
\hspace{3ex}
\includegraphics[width=4cm,height=3cm]{3}
\end{figure} \end{frame}
下面是整个ppt的模板
\documentclass[10pt, aspectratio=43]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{verbatim}
\usepackage{amsmath, amsfonts, amssymb, amsthm, bm}
\usepackage{graphicx, tikz, pgfplots}
\usepackage{times, courier, verbatim}
\usepackage{multicol, multirow}
\usepackage{booktabs}
\usepackage{caption}
%\usepackage[UTF8,noindent]{ctexcap}
\usetheme{CambridgeUS}
\usecolortheme{seahorse}
%主题:AnnArbor Antibes Bergen Berkeley Berlin Boadilla boxes CambridgeUS Copenhagen Darmstadt default Dresden Frankfurt Goettingen Hannover Ilmenau JuanLesPinsLuebeck Madrid Malmoe Marburg Montpellier PaloAlto Pittsburgh Rochester Singapore Szeged Warsaw
%颜色:albatross beaver beetle crane default dolphin dove fly lily orchid rose seagull seahorse sidebartab structure whale wolverine
\defbeamertemplate*{footline}{myfootline}
{%
\leavevmode%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.5ex,dp=1.125ex,center]{author in head/foot} Shan Yiran %
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.5ex,dp=1.125ex,center]{subsection in head/foot} Group\_meeting %
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.5ex,dp=1.125ex,center]{time in head/foot}
\usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em}
\insertframenumber{} / \inserttotalframenumber\hspace*{2ex}
\end{beamercolorbox}%
\vskip0pt%
}
\newcommand{\partitle}[1]{\underline{\textbf{\large#1}}}
\setlength{\columnsep}{2ex}
\setbeamertemplate{items}[ball]
%\renewcommand\thesection{\arabic{section}}
%\renewcommand\thesubsection{\thesection.\arabic{subsection}}
\begin{document}
\setbeamertemplate{footline}{}
\bibliographystyle{unsrt}
\title{Graph Neural Networks}
\subtitle {A review of Methods and Applications}
\author{Shan Yiran}
\institute {BNRIST Bioinformatics Division\\ Department of Automation \\Tsinghua University,Beijing 100084, China
}
\date{\today}
\setbeamercovered{invisible}
\setbeamertemplate{navigation symbols}{}
%第一页ppt
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\begin{center}
\includegraphics[width=1\linewidth]{1}
\end{center}
\end{frame}
%测试ppt
\begin{frame}
\frametitle{Frame title}
\begin{block}{Observation 1}
Simmons Hall is composed of metal and concrete.
\end{block}
\begin{exampleblock}{Observation 2}
Simmons Dormitory is composed of brick.
\end{exampleblock}
\begin{alertblock}{Conclusion}
Simmons Hall $\not=$ Simmons Dormitory.
\end{alertblock}
\end{frame}
%第二页ppt
\begin{frame}
\frametitle{Frame title}
\begin{block}{Observation 1}
Simmons Hall is composed of metal and concrete.
\end{block}
\begin{exampleblock}{Observation 2}
Simmons Dormitory is composed of brick.
\end{exampleblock}
\begin{alertblock}{Conclusion}
Simmons Hall $\not=$ Simmons Dormitory.
\end{alertblock}
\end{frame}
\setbeamertemplate{footline}[myfootline]
\begin{frame}{Content}
\setbeamertemplate{section in toc}[]
\tableofcontents[]
\end{frame}
\AtBeginSection[] {
\begin{frame}<beamer>
\frametitle{Content}
\tableofcontents[currentsection]
\end{frame}
}
\section{The fundamental computing problem}
\begin{frame}{The fundamental computing problem}{}
\partitle{The query of High dimension data} \\ \vspace{1ex}
\qquad \alert{Large-scale} and \alert{high dimension data} attracts more and more attention.
\vspace{2ex}
The specific application:
\begin{itemize}
\item Duplicate checking
\item Identifying similar images in a database
\item Identifying similar documentson the web
\item Image retrieval
\item Music retrieval
\item Fingerprint matching
\end{itemize}
\vspace{1ex}
\end{frame}
\section{Related work(LSH)}
\begin{frame}{Related work}{}
\partitle{Locality-Sensitive Hashing, LSH} \\ \vspace{1ex}
\qquad LSH reduces the dimensionality of \alert{high-dimensional data}. LSH hashes input items so that similar items map to the same “buckets” with high probability. \footnote{Locality-Sensitive Hashing, LSH. Wikipedia}
\vspace{2ex}
\end{frame}
\section{The fly algorithm }
\begin{frame}{The fly algorithm}{based on the fly olfactory circuit}
\partitle{The fly algorithm principle} \\ \vspace{1ex}
\qquad The fly circuit assigns
\alert{similar neural activity patterns} to similar odors, so that behaviors learned from one odor can
be applied when a similar odor is experienced.
\vspace{2ex}
\end{frame}
\section{Differences between Fly \& LSH}
\begin{frame}{Differences between Fly \& LSH}{}
\partitle{The fly algorithm principle} \\ \vspace{1ex}
\begin{itemize}
\item Sparse, binary random projections VS Dense,
Gaussian random projections
\item Expands the dimensionality VS Reduces
the dimensionality
\item The higher-dimensionality representation
VS A dense representation.
\end{itemize}
\vspace{2ex}
\end{frame}
\section{Result}
\begin{frame}{Result\&Conclusion}{}
\partitle{Overall comparison between the fly algorithm and LSH.} \\ \vspace{1ex}
\partitle{Conclussion: AI already has olfactory systems...}
\end{frame}
\begin{frame}{}{}
{\centering\begin{center}
\bf \Huge Thanks!
\end{center} }
\end{frame}
\end{document}
编译器的设置:

下面是具体的一些小贴士和实现效果,持续更新中...
1.-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
文字加入边框:(exampleblock)
\begin{frame}
\frametitle{Frame title}
\begin{block}{Observation 1}
Simmons Hall is composed of metal and concrete.
\end{block}
\begin{exampleblock}{Observation 2}
Simmons Dormitory is composed of brick.
\end{exampleblock}
\begin{alertblock}{Conclusion}
Simmons Hall $\not=$ Simmons Dormitory.
\end{alertblock}
\end{frame}
效果

2.-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
举例
\begin{frame}
\begin{enumerate}
\item haha
\textbf{PGF}: dd
\textbf{TikZ}: dd
\item dd: dd(dd、2-dd-dd)
\item dd:dd
\end{enumerate}
\end{frame}
效果

3.-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
双栏
\begin{frame}[t]{Main Title}{Subtitle}
\begin{columns}
\begin{column}[T]{0.5\textwidth}
\includegraphics[width=\textwidth]{1}
\end{column}
\begin{column}[T]{0.5\textwidth}
blah, blah, blah...
\end{column}
\end{columns}
\end{frame}

latex beamer技巧的更多相关文章
- 使用Markdown+Pandoc+LaTex+Beamer制作幻灯片
概述 为什么使用markdown? mardown是一种轻量级的标记语言,语法简单,可读性好,并且容易转化成其他格式的文档, 在技术文档撰写中得到越来越广泛的应用.相信大家对markdown都有一定了 ...
- Latex小技巧
最近由于离散数学课程作业的需要, 使用$\LaTeX$写pdf报告, 积累了一些$\LaTeX$小技巧, 以后还会陆续补充. 1. 查看某个包的使用手册, 在命令行中输入texdoc XXX, 其中X ...
- [整理][LaTex]小技巧之——首行缩进
0. 简介 在LaTex编辑时,有时会遇到这样一个有关于首行缩进的问题.在汉语环境的编辑下,习惯上每段会进行一个两个字的缩进.但是在默认编辑模式下,一个章节下的首段是没有首行缩进的,本文的目的主要是解 ...
- LaTex 小技巧
首行缩进 参考:小技巧之--首行缩进 %-------------------------------------------------------------------------------- ...
- Latex beamer
使用明体(gbsn)和楷体(gkai)两种字型.以下的编程是一开始的宣告,并自动生成第一张封面投影片. \documentclass[cjk]{beamer}\usepackage{CJKutf8}\ ...
- LaTeX使用技巧
使用LaTex的方法: (1)推荐一个手写公式.自动生成LaTex的网站——Web Equation. (2)如果会LaTex,可以直接用在线LaTex编辑 (3)从mathtype转换: 首先打开文 ...
- LaTeX小技巧——File ended while scanning use of \@writefile错误的
早上在修改编译论文时发现了这个问题,仔细检查代码并没发现错误,一时也找不到具体的解决办法.我一直以为是因为runaway argument的错误提示,可实际上就是因为aux文件没有完整输入,导致上次编 ...
- latex beamer 插入代码
有网友在beamer中使用mcode也就是 listings 输出源代码时遇到如下错误: Runaway argument?! Paragraph ended before \lst@next was ...
- Latex 文本编辑技巧
临时取消首行缩进 \noindent 生成随机文本 \usepackage{lipsum} \begin{document} \lipsum \end{document} 多栏模式 \usepacka ...
随机推荐
- 100+ Python挑战性编程练习(1)
目前,这个项目已经获得了7.1k Stars,4.1k Forks. 初级水平是指刚刚通过Python入门课程的人.他可以用1或2个Python类或函数来解决一些问题.通常,答案可以直接在教科书中找 ...
- 小记---------Hadoop的MapReduce基础知识
MapReduce是一种分布式计算模型,主要用于搜索领域,解决海量数据的计算问题 MR由两个阶段组成:Map和Reduce,用户只需要实现map()和reduce()两个函数,即可实现分布式计算. 两 ...
- Java学生成绩绩点管理系统
一.考试要求: 1.按照测试内容要求完成程序的设计与编程: 2.建立学号姓名文件夹,如:“信 1805-1 班 20180001 XXX”,将源程序文件保存在文件夹中,压缩成 rar 文件提交. 3. ...
- [题解][洛谷]_U75702/P5462_X龙珠_论何为字典序
赛时嫌麻烦,没写 赛后自闭了,写了一下午 题目描述 “X龙珠”是一款益智小游戏.游戏中有 n(2|n)n(2∣n) 个编号互不相同龙珠按照给定的顺序排成一个队列,每个龙珠上面都有一个编号.每次操作时, ...
- C++中组合和继承的概念及意义
1,继承在面向对象中具有举足轻重的地位,面向对象当中的很多高级技术都和继承是息息相关的,比如面向对象的高端课程<设计模式>中的每一种技术都和继承有关,因此我们非常有必要在学习 C++ 时, ...
- 函数进阶装B操作
三元表达式 条件成立时的返回值 if 条件 else 条件不成立时的返回值 x = 10 y = 20 print(f"x if x > y else y: {x if x > ...
- hadoop-mapreduce 详解
mapreduce 完整流程解析 1. 在客户端启动一个 job: hadoop jar share/hadoop/tools/lib/hadoop-streaming-2.6.5.jar -file ...
- java 线程池 - ThreadPoolExecutor
1. 为什么要用线程池 减少资源的开销 减少了每次创建线程.销毁线程的开销. 提高响应速度 ,每次请求到来时,由于线程的创建已经完成,故可以直接执行任务,因此提高了响应速度. 提高线程的可管理性 ,线 ...
- 一个php文件就可以把数据库的数据导出Excel表格
数据库内容太多,复制粘贴太麻烦?那就用代码实现把,把代码写好了,导出还不容易吗,访问即可导出. excel.php <?php error_reporting(E_ALL ^ E_DEPRECA ...
- windows 2008 创建域服务器问题 账户密码不符合要求
windows 2008新建域时,本地administrator账户将成域Administrator账户.无法新建域,因为本地administrator账户密码不符合要求.*解决办法:很多人都会想到在 ...