可以在载入
ctex
宏包时加上
noindent
选项,取消段落的缩进
在WinEdt编辑器中,对中文默认不是
UTF8
编码,需要在新建文件后,在第一行写上
% -*- coding: utf-8 -*-
,保存并关闭文件,再打开文件
幻灯片主体结构:
1 2 3 4 5 6 7
|
\section{章名} \subsection{节名} \begin{frame}[选项] \frametitle{幻灯片标题} 幻灯片内容 \end{frame}
|
在Beamer的每张幻灯片中,正文内容(不包括幻灯片标题)默认为“竖直居中”的
t
:竖直居上(top)
c
:竖直居中(center)
b
:竖直居下(bottom)
1 2 3 4 5 6 7
|
\documentclass[t]{beamer}
\begin{frame}[b] 幻灯片内容 \end{frame}
|
Beamer主题Gallery
theme name
可以在
https://deic-web.uab.cat/~iblanes/beamer_gallery/index_by_theme.html
上查看各主题风格预览,选择你想要的主题名称填入
theme name
带顶部&底部导航栏
AnnArbor
、
Berlin
、
CambridgeUS
、
Copenhagen
、
Dresden
、
Ilmenau
、
Luebeck
、
Malmoe
、
Szeged
、
Warsaw
Berkeley
、
Goettingen
、
Hannover
、
Marburg
、
PaloAlto
设置幻灯片各部分、各结构、各元素的配色
Beamer color theme gallery
(预览各颜色主题样式)
1
|
\usecolortheme{color theme name}
|
color theme name
1 2 3 4 5 6 7 8 9 10
|
\setbeamercolor{Beamer_element}{color}
\setbeamercolor{frametitle}{fg=blue,bg=yellow} \setbeamercolor*{item projected}{fg=white, bg=itemizecolor} \setbeamercolor{itemize item}{fg=itemizecolor} \setbeamercolor{enumerate item}{fg=itemizecolor} \setbeamercolor{description item}{fg=itemizecolor} \setbeamercolor{section in toc}{fg=black}
|
设置幻灯片的字体
Beamer font theme gallery
(预览各字体主题样式)
1
|
\usefonttheme{font theme name}
|
font theme name
HitSzBeamer
Beamer演示学习笔记
Beamer v3.0 指南