latex latex中文beamer模板中不能插入mp4文件吗

LaTex Beamer做 演讲稿
已有 9603 次阅读
|个人分类:|系统分类:|关键词:LaTeX Beamer
这个也是挺简单的,虽然还不会插入图片和动画效果,不过也凑合用了。本文纯属用例子,无其他含义,谢谢。documentclass[xcolor=dvipsnames]{beamer}usepackage{graphicx,xcolor}usetheme{Berkeley}section{This is not the Title}usepackage{xcolor}setbeamercovered{transparent}&setbeamersize{text margin left=0.6cm, text margin right=0.6cm}&begin{document}title{How not to love your student?}author{color{green} West Charles }institute{E.L.Reed Her}date{}begin{frame}titlepageend{frame}section{I do not care my students}begin{frame}frametitle{the main thing is love yourself only}Do not be ashamed of yourself.alert{Money} is important!!I do not want to go back to the life of a west boy!It is really hard!Goodbye father!end{frame}section{I am &a poor man}begin{frame}frametitle{How much do you pay your student?}As low as you canCome on, do not be shy!begin{itemize}item 100?item 200?item 300?item &alert{Better not}end{itemize}end{frame}hypersetup{colorlinks=true,linkcolor=red}begin{frame}[label=intro]{what's my life?}I am a bad boy!I do know that, although my draughts were very thinWhile my wife only likes my alert{money}!where shall I go?People Everywhere hate me, they think I like alert{Money} only!I am a old man.end{frame}begin{frame}{Some other slide}frametitle{I have no idea}SO I give up.And I do not care my students.Although my wife is more terrible.I do not care.Like my draught.The only thing I want to do is listening Chuck Cannon's music with my new 3G, and drinking beer in my car.That's all.bigskipend{frame}begin{frame}Forgive me, girls!!!hyperlink{here}{beamerbutton{?'}}end{frame}section{What?I am a professor?}begin{frame}frametitle{I have no idea}I want to say nothingend{frame}begin{frame}frametitle{I have no idea}Nothingend{frame}begin{frame}frametitle{I have no idea}doneend{frame}begin{frame}frametitle{I have no idea}The last slideend{frame}end{document}&
转载本文请联系原作者获取授权,同时请注明本文来自刘佳佳科学网博客。链接地址:
上一篇:下一篇:
当前推荐数:3
评论 ( 个评论)
扫一扫,分享此博文
作者的精选博文
作者的其他最新博文
热门博文导读
Powered by
Copyright &Table of Contents
1.1 编译环境
文件utf-8编码
xelatex编译
1.2 中文支持
\usepackage{ctex}
% a micro package supporting chinese
\zihao{-4}
% a font size command in ctex: 小四字体
% a font format in {songti, kaishu, youyuan, heiti}
\setCJKfamilyfont{zhya}{[simhei.ttf]}
% in windows fonts folder
\newcommand*{\simhei}{\CJKfamily{zhya}}
% a new font is defined
\setCJKmainfont[BoldFont={SimHei},ItalicFont={[simkai.TTF]}]{[simsun.ttf]}% set the format
\simhei % use the new font
定义一个"灰白色主题":标题为&暗红色&,背景为&灰色&
\usetheme{Darmstadt}
\usecolortheme{beaver}
\beamersetaveragebackground{black!2}
\usepackage{colortbl}
% color table
\usepackage{array}
% tabularx 需要事先调用array宏包
\usepackage{tabularx}
% tabularx environment
  1.&固定表格
\begin{tabular}{lr}
\hline \rowcolor{cyan}
\end{tabular}
  2.&自动换行表格(例如一行中的内容很长)
\begin{tabularx}{\textwidth}{|l|X|}
\hline \rowcolor{cyan}
\end{tabularx}
\begin{figure}
\centering
% Requires \usepackage{graphicx}
\includegraphics[scale=0.8]{pic/example.pdf}\\
\end{figure}
\begin{columns}[onlytextwidth]
\begin{column}{.45\textwidth}
\begin{center}
\includegraphics[scale = 0.5]{pic/ftp_user.png}
\end{center}
\end{column}
\begin{column}{.45\textwidth}
\includegraphics[scale = 0.5]{pic/ftp_pwd.png}
\end{column}
\end{columns}
7 自定义列表
\usepackage{listings}
\begin{list}{\checkmark}{\itemsep=-2pt\topsep=-2pt}
\end{list}
\href{/index.html}{Link content}
\documentclass[]{beamer}
\begin{document}
%%%% first page %%%%
\frame{\titlepage}
%%%% contents %%%%
\tableofcontents
\clearpage
%%%% section 1 %%%%
\section{}
\begin{frame}
\frametitle{}
\end{frame}
%%%% section 2 %%%%
\section{}
\begin{frame}
\frametitle{}
\end{frame}
\end{document}
%%%% end of file %%%%
10 注意 & 问题点
&代码环境&无法使用?
&保留格式环境&无法使用?
Author: wangsd
HTML generated by org-mode 6.35i in emacs 24
阅读(...) 评论()&>&latex beamer 教程
latex beamer 教程
上传大小:207KB
这是一部关于latex-beamer的教程
综合评分:5(1位用户评分)
10积分/C币
下载个数:
{%username%}回复{%com_username%}{%time%}\
/*点击出现回复框*/
$(".respond_btn").on("click", function (e) {
$(this).parents(".rightLi").children(".respond_box").show();
e.stopPropagation();
$(".cancel_res").on("click", function (e) {
$(this).parents(".res_b").siblings(".res_area").val("");
$(this).parents(".respond_box").hide();
e.stopPropagation();
/*删除评论*/
$(".del_comment_c").on("click", function (e) {
var id = $(e.target).attr("id");
$.getJSON('/index.php/comment/do_invalid/' + id,
function (data) {
if (data.succ == 1) {
$(e.target).parents(".conLi").remove();
alert(data.msg);
$(".res_btn").click(function (e) {
var parentWrap = $(this).parents(".respond_box"),
q = parentWrap.find(".form1").serializeArray(),
resStr = $.trim(parentWrap.find(".res_area_r").val());
console.log(q);
//var res_area_r = $.trim($(".res_area_r").val());
if (resStr == '') {
$(".res_text").css({color: "red"});
$.post("/index.php/comment/do_comment_reply/", q,
function (data) {
if (data.succ == 1) {
var $target,
evt = e || window.
$target = $(evt.target || evt.srcElement);
var $dd = $target.parents('dd');
var $wrapReply = $dd.find('.respond_box');
console.log($wrapReply);
//var mess = $(".res_area_r").val();
var mess = resS
var str = str.replace(/{%header%}/g, data.header)
.replace(/{%href%}/g, 'http://' + window.location.host + '/user/' + data.username)
.replace(/{%username%}/g, data.username)
.replace(/{%com_username%}/g, _username)
.replace(/{%time%}/g, data.time)
.replace(/{%id%}/g, data.id)
.replace(/{%mess%}/g, mess);
$dd.after(str);
$(".respond_box").hide();
$(".res_area_r").val("");
$(".res_area").val("");
$wrapReply.hide();
alert(data.msg);
}, "json");
/*删除回复*/
$(".rightLi").on("click",'.del_comment_r', function (e) {
var id = $(e.target).attr("id");
$.getJSON('/index.php/comment/do_comment_del/' + id,
function (data) {
if (data.succ == 1) {
$(e.target).parent().parent().parent().parent().parent().remove();
$(e.target).parents('.res_list').remove()
alert(data.msg);
//填充回复
function KeyP(v) {
var parentWrap = $(v).parents(".respond_box");
parentWrap.find(".res_area_r").val($.trim(parentWrap.find(".res_area").val()));
评论共有1条
比较简短,有一些有用信息。
上传者:sakurou
上传时间:积分/C币:10
上传者:fritzliu
上传时间:积分/C币:10
上传者:gongyanshang
上传时间:积分/C币:3
上传者:zzuomo
上传时间:积分/C币:10
上传者:broccolibard
上传时间:积分/C币:0
上传者:lzhx171
上传时间:积分/C币:0
上传者:swx
上传时间:积分/C币:3
上传时间:积分/C币:10
上传者:yangqi21
上传时间:积分/C币:10
上传时间:积分/C币:10
上传者:sheyi
上传时间:积分/C币:10
上传者:cplin2010
上传时间:积分/C币:3
上传者:zhang_jing5
上传时间:积分/C币:3
上传者:wzq1994722
上传时间:积分/C币:10
上传者:qq_
上传时间:积分/C币:10
上传者:chao_qing
上传时间:积分/C币:3
上传时间:积分/C币:10
上传者:baidu_
上传时间:积分/C币:10
上传时间:积分/C币:3
审核通过送C币
广东工业大学考研真题及答案整理汇总
创建者:qq_
上百套精品PPT模板专题
创建者:fantasysxan
平面设计师/UI设计师 必读书单大集合,强烈推荐。
创建者:qq_
上传者其他资源上传者专辑
Perl Hacks
VIP会员动态
CSDN下载频道资源及相关规则调整公告V11.10
下载频道用户反馈专区
下载频道积分规则调整V1710.18
spring mvc+mybatis+mysql+maven+bootstrap 整合实现增删查改简单实例.zip
资源所需积分/C币
当前拥有积分
当前拥有C币
扫码关注并点击右下角获取下载码
输入下载码
为了良好体验,不建议使用迅雷下载
latex beamer 教程
会员到期时间:
剩余下载个数:
剩余C币:593
剩余积分:0
为了良好体验,不建议使用迅雷下载
积分不足!
资源所需积分/C币
当前拥有积分
您可以选择
程序员的必选
绿色安全资源
资源所需积分/C币
当前拥有积分
当前拥有C币
(仅够下载10个资源)
为了良好体验,不建议使用迅雷下载
资源所需积分/C币
当前拥有积分
当前拥有C币
为了良好体验,不建议使用迅雷下载
资源所需积分/C币
当前拥有积分
当前拥有C币
您的积分不足,将扣除 10 C币
为了良好体验,不建议使用迅雷下载
你当前的下载分为234。
你还不是VIP会员
开通VIP会员权限,免积分下载
你下载资源过于频繁,请输入验证码
您因违反CSDN下载频道规则而被锁定帐户,如有疑问,请联络:!
若举报审核通过,可奖励5下载分
被举报人:
举报的资源分:
请选择类型
资源无法下载
资源无法使用
标题与实际内容不符
含有危害国家安全内容
含有反动色情等内容
含广告内容
版权问题,侵犯个人或公司的版权
*详细原因:
latex beamer 教程}

我要回帖

更多关于 latex beamer 中文 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信