使用Latex制作分享,演講,Presentation用的Slides,PPT——Beamer教程
1、什么是Beamer
什么是Slides?
Slides指的是幻燈片,常見的包括Microsoft 的PPT, macOS的Keynote,Google的Google Slides等。
什么是Beamer?
Beamer 是一個用于創建演示文稿 LaTeX 的文檔類。
作為LaTeX的一個文檔類,Beamer文檔和LaTeX文檔一樣都是純文本文件。且beamer兼容LaTeX常見的命令,擁有LaTeX所擁有的絕大多數優點,排版美觀,且能夠更加專注于編寫文檔時的思路。
因此Beamer經常被用于制作各種學術場合分享用的PPT。
2、如何使用Beamer
從一個簡易的模板開始
\documentclass{Beamer}聲明Beamer演示文稿
\begin{document} 前的區域為導言區
\document文檔
\frame頁面
單行內容\frame{xxx}
多行內容\begin{frame} xxx \end{frame}
\documentclass{beamer} \title{Sample title} \author{Anonymous} \institute{Overleaf} \date{2021} \begin{document} %標題頁 \frame{\titlepage} %slide頁面 \begin{frame} \frametitle{Sample frame title} This is some text in the first frame. This is some text in the first frame. This is some text in the first frame. \end{frame} \end{document}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
beamer內置有許多不同的主題可以使用
更多可以參考:https://blog.csdn.net/zhouxiaowei1120/article/details/82818295
通過\usetheme{xxx}指定使用的主題
\documentclass{beamer} \title{Sample title} \author{Anonymous} \institute{Overleaf} \date{2021} \usetheme{Madrid} \usecolortheme{beaver} %一個主題可以與一個顏色主題相結合,以改變不同元素使用的顏色 \begin{document} %標題頁 \frame{\titlepage} %slide頁面 \begin{frame} \frametitle{Sample frame title} This is some text in the first frame. This is some text in the first frame. This is some text in the first frame. \end{frame} \end{document}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
在frame中可以使用高亮
\documentclass{beamer} \title{Sample title} \author{Anonymous} \institute{Overleaf} \date{2021} \usetheme{Madrid} \usecolortheme{beaver} \begin{document} %標題頁 \frame{\titlepage} %slide頁面 \begin{frame} \frametitle{Sample frame title} This is some text in the first frame. This is some text in the first frame. This is some text in the first frame. \end{frame} %slide頁面2 \begin{frame} \frametitle{Sample frame title} In this slide, some important text will be \alert{highlighted} because it's important. Please, don't abuse it. \begin{block}{Remark} Sample text \end{block} \begin{alertblock}{Important theorem} Sample text in red box \end{alertblock} \begin{examples} Sample text in green box. The title of the block is ``Examples". \end{examples} \end{frame} \end{document}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
3、Beamer模板下載
一些有名的民間Github開源項目?
SJTU:https://github.com/sjtug/SJTUBeamer
PKU:https://github.com/inFaaa/PKU-Beamer-Theme
THU:https://github.com/YangLaTeX/thubeamer
ZJU:https://github.com/corenel/zju-beamer-theme
CQU:https://github.com/Wusir2018/CQU-Beamer-LaTex
CNNU:https://github.com/K-JW/CCNU_BeamerTemplate
SEU:https://github.com/TouchFishPioneer/SEU-Beamer-Slide
SYSU:https://github.com/yxnchen/sysu-beamer-template
RUC:https://github.com/andelf/ruc-beamer-template
Waseda:https://github.com/fuujiro/Waseda-Beamer-Slide
HUST:https://github.com/Urinx/LaTeX-PPT-Template
F、參考資料
一份其實很短的 LaTeX 入門文檔:https://liam.page/2014/09/08/latex-introduction/
LaTeX Beamer 筆記:https://blog.csdn.net/SmalOSnail/article/details/120649809
版權聲明:本文內容由網絡用戶投稿,版權歸原作者所有,本站不擁有其著作權,亦不承擔相應法律責任。如果您發現本站中有涉嫌抄襲或描述失實的內容,請聯系我們jiasou666@gmail.com 處理,核實后本網站將在24小時內刪除侵權內容。