概述
%
!TeX spellcheck = en_GB
%
WangSheying于2015/11/2整理,TJU北洋园校区
%
TeXLive2015+TeXstudio个人推荐,可在线升级usepackage,比较方便
%*****************************************************************************************
%
从这里开始到begin{document}是导言区,称之为preamble
documentclass[UTF8]{beamer}
usepackage{ctex}
%使用中文要添加,可解决中文文档输入
usepackage{newtxtext,newtxmath}
%字重齐全的高质量数学字体
usepackage{mathrsfs}
%大写ABC的花体使用命令是mathscr{}
usepackage{graphicx}
%添加图片
usepackage{bm}
%专门处理数学粗体的bm宏包,使用命令是bm{}
usepackage{extarrows}
%延长符号,可在=,->等符号加多个字母
%usepackage{amstext}
%它定义命令 text,可用于在数学公式中插入少量文本,并可调整上下标中文本字体的尺寸。
usepackage{amsthm}
%它定义了一个 proof 环境,用来排版定理和证明,能自动在最后添加证毕符号。它还提供一个命令:newtheorem{定理环境名}{标题}[计数器名],可自定义定理类 环境
usefonttheme{professionalfonts}
%这个更好看些,数学字体
usepackage{indentfirst}
%首行缩进
usepackage{amsmath}
usepackage{amsfonts}
usepackage{amssymb}
usepackage{xcolor}
usepackage{subfigure}
usepackage[english]{babel}
usepackage{algorithm}
usepackage{algorithmic}
usepackage{tikz}
setlength{parindent}{2em}
%首行缩进2字符
setbeamertemplate{theorems}[numbered]
setbeamertemplate{caption}[numbered]
%******************************************************************************************
%
以上是各种宏包
%******************************************************************************************
%下面是定理,定义,引言的声明,可自行添加
newtheorem{thm}{Theorem}
newtheorem{lem}[thm]{Lemma}
newtheorem{cor}[thm]{Corollary}
newtheorem{prop}[thm]{Proposition}
newtheorem{defi}[thm]{Definition}
newtheorem{remark}[thm]{Remark}
newtheorem{claim}[thm]{Claim}
newenvironment{proofnoqed}{begin{proof}<span style="background-color: rgb(255, 0, 0);">renewcommand{qedsymbol}{}
}{end{proof} }
%有的证明比较长,前面的应该没有证毕符号,只在最后一个用proof,其他应该用自定义的新环境proofnoqed
%
三种颜色
red
purple
magenta
%上面是定理,定义,引言的声明,可自行添加
%******************************************************************************************
%下面是beamer的主题设置,目录框架结构,其实就是标题,目录等在上下左右哪一个位置放置,以及目录怎么显示
usetheme{singapore}
% 幻灯片模板选择singapore
usecolortheme{sidebartab}
% 幻灯片模板的色彩sidebartab
AtBeginSection[]{
% 幻灯片框架% 在每个Section前都会加入的Frame,
begin{frame}[plain]
frametitle{Outline}
tableofcontents[sectionstyle=show/shaded,subsectionstyle=show/show/shaded]
end{frame}
}
%
tableofcontents[comma-separated option list]具体讲解见《The beamer class User Guide》,
%
http://texdoc.net/texmf-dist/doc/latex/beamer/doc/beameruserguide.pdf
See in section 10.5 Adding a table of contents.
%
section和subsection相互独立,显示效果互不相关,Allowed ⟨styles⟩ are show, shaded, and hide
%
sectionstyle=⟨style for current section⟩/⟨style for other sections⟩
%
subsectionstyle=⟨style for current subsection⟩/⟨style for other subsections in current section⟩/⟨style for subsections in other sections⟩
%
% 上面是beamer的主题设置,目录框架结构,其实就是标题,目录等在上下左右哪一个位置放置,以及目录怎么显示
%*******************************************************************************************
%
下面标题页的内容设置,根据实际情况修改即可
title{Standard Presentation Style}
% 幻灯片封面
author{Sheying Wang}
institute{Computer Science Department, Tianjin University}
date{November 2, 2015}%一般是today
%
上面标题页的内容设置根据实际情况修改即可
%*******************************************************************************************
%
begin{document}以上是导言区,称之为preamble
%*******************************************************************************************
begin{document}
begin{frame}[plain]
%plain格式使得一帧的最上面是白色的,没有plain,会有色彩
titlepage
end{frame}
begin{frame}[plain]
% 幻灯片目录
frametitle{Outline}
tableofcontents[sectionstyle=show/show,subsectionstyle=show/show/hide]
end{frame}
%The beamer class这本小册子有目录格式的讲解,sectionstyle,subsectionstyle都有,P100页
%User Guide for version 3.36. 文档可在google搜索The beamer class,即可得到
%
以上是标准的配置,还有最下面的一部分标准配置
%********************************************************************************************
%
一帧的具体格式样例参考
%section{节的名字}
%subsection{小节的名字}
%begin{frame}[plain,t]{节的名字} %也可以使用frametitle{节的名字}效果一样
% structure{小节的名字} \
vspace{2ex}
% 节的名字正上方居中,小节的名字紧下方居左。
%end{frame}
%*********************************************************************************************
%
下面就是正文,自己的内容
%*********************************************************************************************
begin{frame}[plain,t]{This ia an example!}
structure{}
vspace{2ex}
$(e^{i})^n==e^{i n} $
$sqrt[i]{i}$
end{frame}
%%=================================================================================================
begin{frame}[plain]
huge
vfill
centerline{ structure{Questions and Answers?} }
vfill
end{frame}
begin{frame}[plain]
huge
vfill
centerline{ structure{Questions and Answers?} }
vfill
Huge
centerline{alert{Thank You!} }
vfill
end{frame}
%**********************************************************************************************
%
上面就是正文,自己的内容
%
下面是标准的参考文献配置
%**********************************************************************************************
begin{frame}[plain, t, allowframebreaks]{References}
%
allowframebreaks,这个关键字可以使得参考文献自动断页,免得手动
%
plain格式使得一帧的最上面是白色的,没有plain,会有色彩,可以试试
%
t 使得正文不再是默认居中,而是在top,应该加上t,比较好看。
bibliographystyle{alpha}
%文献的格式apalike是[1],alpha是[Lam94]
%beamertemplatetextbibitems
%调整文献样式
%scriptsize
%文献多时调整字体大小
bibliography{math}
%自己的文献
end{frame}
end{document}
%**********************************************************************************************
%
上面是标准的参考文献配置
%
参考文献的主题选择apalike,见《LaTeX入门》作者:刘海洋P423页(6-1-13)说明
%
apalike文献格式,按照美国心理协会(APA)的格式,提供基本的作者年代引用方式
%
避免完全不直观的数学编号可能造成的问题。这是因为beamer的文献格式比较特殊造成的
%
实例如下:
%beamertemplatetextbibitems %该指令可使参考文献采用文字而不是图标的标注
%begin{frame}[plain, t, allowframebreaks]{References}
% scriptsize
% bibliographystyle{apalike}
% bibliography{ZhangXiao-Smoothed_Analysis_of_Tensor_Decompositions} %文献命名规范,不要怕长
%end{frame}
%**********************************************************************************************
%
学习LaTeX好的资料,有《LaTeX入门》《A Guide to LaTeX 4th Edition》 新浪微盘可下载
%
《一份不太简短的LATEX介绍 》,网址 CTAN:/tex-archive/info/lshort 可下载
,有中英文,每年更新
%
tex.stackexchange.com,一个美国的专业TeX问答网站,这个网站更灵活,受益匪浅
%
www.ctan.org
usepackage资料参考
%
www.texample.net
不常用,但是聚集了的专业绘图的LaTeX代码,比如画一个probability tree,
%
遇到问题,先百度Google,90%问题可解决,不行再上知乎提问,刘海洋老师,LaTeX专家,
%
可在 tex.stackexchange.com
同时提问,最基础的是读读上面的两本书,学会自己看文档
%
论文《Type setting mathematics for science and technology according to ISO 31/XI》
%
介绍排版中数学字体的选择
%***********************************************************************************************
最后
以上就是天真导师为你收集整理的报告模板LaTex的全部内容,希望文章能够帮你解决报告模板LaTex所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复