Microsoft Word - beamer_guide中译_打印版_.doc

Size: px
Start display at page:

Download "Microsoft Word - beamer_guide中译_打印版_.doc"

Transcription

1 Beamer v3.0 指南 KiJoo Kim (a.k.a. Daisyweb) 黄旭华 (l001) 翻译

2

3 总目录 一 为什么使用 BEAMER?... 1 二 BEAMER 的结构 基本代码 4 基本代码 I... 4 基本代码 Ⅱ 五个主题样式 6 3 BEAMER 的版面设计 (LAYOUT) 选项 7 4 BEAMER 的输出 (OUTPUT) 选项 8 5 BEAMER 的附加 (ADDITIONAL) 选项 9 6 结构(FRAME) 选项 9 7 幻灯片效果 11 三 字体 (FONTS) 文本字体和数学字体 14 文本字体和数学字体 I 文本字体和数学字体 Ⅱ 字体尺寸 16 四 颜色 (COLORS) 颜色规定 18 2 XCOLOR 宏包中更多的颜色 19 3 突出显示颜色 20 4 背景色 21 5 颜色举例 ` 22 五 VERBATIM VERBATIM W/O 覆盖 24 2 行内 VERBATIM 使用覆盖 25 六 图形 (FIGURES) 图形介绍 28 2 PGF 宏包 29 3 COLUMNS 环境中的图形 30 4 缩放图形 31 5 画图 34 6 图形遮罩 35 七 局部结构 (LOCAL STRUCTURS) 奇妙的粗体圆点(BULLETS) 38 i

4 2 加外框的文本 39 加外框的文本 预定义 加外框的文本 用户定义 分栏(COLUMNS) 41 4 表格(TABLES) 42 八 过渡效果 (TRANSITIONS) 九 覆盖 (OVERLAYS) 概述(OVERVIEW) 46 2 暂停(PAUSE) 47 3 暂停: 表格示例 48 4 ONSLIDE 49 5 ITEM Ⅰ 50 逐步显示中的 Item I 逐步显示中的 Item Ⅱ 逐步显示中的 Item Ⅲ 替代 53 7 更多替代 54 8 简单高亮 59 9 ALERT 用于高亮 二择一(ALERTNATIVE) 用于高亮 TEMPORAL 用于高亮 其它的高亮 63 十 动画 (ANIMATION) 动画 66 2 动画(ANIMATE)+ 覆盖 (OVERLAY) 67 3 ANIMATEVALUE 68 4 飞行动画 69 5 同步覆盖(TIME OVERLAYS) 71 十一 BEAMER 的主题样式 (THEME) 幻灯片(PRESENTATION) 主题样式 (THEMES) 74 2 颜色(COLOR) 主题样式 (THEMES) 75 3 字体(FONT) 主题样式 (THEMES) 76 十二 混杂特性 (MISC FEATURES) 超级链接(HYPERLINKS) 和按钮 (BUTTONS) 78 2 注释(NOTES) 79 3 MERGE 用于 TRANS 输出 81 4 电影(MOVIE) 82 ii

5 5 声音(SOUND) 83 6 标识(LOGO) 和页脚 (FOOTER) 84 7 效仿(EMULATIONS) 85 8 PROSPER 的效果 (RESULT) 86 9 韩文(HANGUL) 其它宏包 88 十三 最后一张幻灯片 (LAST SLIDE) 十四 参考书目 (REFERENCE) iii

6 iv

7 一 为什么使用 Beamer? 1

8 第 2 张 为什么使用 Beamer? 赞成 : 对 dvips/ps2pdf 和 pdflatex 均支持 2 丰富的覆盖和过渡效果 导航条和符号 输出 : 屏幕阅读 (screen). 幻灯片 (transparency). 讲义 (handouts). 笔记. 仿效其它 PDF 介绍工具如 Prosper 和 FoilTEX 反对 : 难以设计一个模板 1 如果你使用 PSTricks 必需通过这条途径 2 无需 dvipdfm 支持! 2

9 二 Beamer 的结构 章目录 二 BEAMER 的结构 基本代码 4 基本代码 I 4 基本代码 Ⅱ 5 2 五个主题样式 6 3 BEAMER 的版面设计 (LAYOUT) 选项 7 4 BEAMER 的输出 (OUTPUT) 选项 8 5 BEAMER 的附加 (ADDITIONAL) 选项 9 6 结构(FRAME) 选项 9 7 幻灯片效果 11 3

10 第 3~4 张 1 基本代码 基本代码 I 加载了主题样式的 Beamer 类 ( 注 :Beamer 是 latex 上用来制作幻灯片的一个文档类 ) \documentclass[slidestop,compress,mathserif]{beamer} %\usepackage[bars]{beamerthemetree} % Beamer 主题样式 v 2.2 \usetheme{antibes} % Beamer 主题样式 v 3.0 \usecolortheme{lily} % Beamer 颜色主题样式 封面 \title{} \author{} \institute{} \begin{document} \begin{frame} % Cover slide \titlepage \end{frame} % 也可以用 \frame{\titlepage}} 代替 ( 在 Beamer v 2.2 宏包中 ) 4

11 第 5 张 基本代码 Ⅱ 幻灯片主体结构 \section{ 介绍 } \subsection{ 历史 } \begin{frame}[options] \frametitle{ 历史 }... 幻灯片的内容... \end{frame} 用 2.2 版的宏包 : % Bookmark 信息 % Bookmark 信息 \frame[options]{\frametitle{ 历史 }%... 幻灯片的内容... }% 5

12 第 6 张 2 五个主题样式 五个主题样式 3.0 版和 2.2 版主要的不同是 Beamer 主题样式 五个主题样式的分类 : 举例 : 演示主题 幻灯片模板 色彩主题 幻灯片模板的色彩配置 字体主题 内部主题 外部主题 \documentclass[slidestop,compress,mathserif]{beamer} %\usepackage[bars]{beamerthemetree} % Beamer theme v 2.2 \usetheme{antibes} % Beamer theme v 3.0 \usecolortheme{lily} % Beamer color theme 进入 获取更信息 6

13 第 7 张 3 Beamer 的版面设计 (Layout) 选项 Beamer 的版面设计 (Layout) 选项 [slidestop] 放置页面标题于左上角 ( 默认 =[slidescentered]) [compress] 尽可能压小所有导航条 ( 默认 =[uncompressed]) [red] 改变导航条和标题为淡红色 blue:( 蓝色是 ) 默认的色彩配置 red: 这张 ( 第 7 张 ) 的 ( 航条和标题 ) 的外观就是 ( 红色 ) brown blackandwhite:( 黑白 ) 对幻灯片有用 7

14 第 8 张 4 Beamer 的输出 (Output) 选项 Beamer 的输出 (Output) 选项 默认 : PDF 屏幕阅读 ( 尺寸 128mm 96 mm) 3. [handout] 适用于 PDF 讲义. [trans] 适用于 PDF 幻灯片. => 输出为讲义和幻灯片时, 你必需扩大尺寸 点击观看一个例子! [notes=hide/show/only] 适用于笔记 隐藏注释 ( 默认 ), 为 PDF screen 添加注释, 仅产生 PDF 注释 3 显示器的 4:3 外观比率. 8

15 第 9~10 张 5 Beamer 的附加 (Additional) 选项 Beamer 附加 (Additional) 选项 [hyperref={bookmarks=false}] 删除书签 [cjk] 适用于 CJK 排版. => 用于韩文 (hangul), 用宏包. \usepackage[utf8]{inputenc} 适用于 Unicode( 统一码 ) 6 结构(Frame) 选项结构 (Frame) 选项 \frame[plain]{\frametitle{}..} 适用于如本页 ( 第 10 页 ) 所用的 plane 结构! [containsverbatim] 适用于使用 verbatim 环境和 \verb 命令 [allowframebreaks] 适用于一张幻灯片放不下内容时自动分开 [shrink] 适用于缩小内容充满一张幻灯片 [squeeze] 适用于挤压垂直空间 9

16 10

17 第 11 张 7 幻灯片效果 幻灯片效果 (Transparency Effects) 所有的覆盖要素均隐藏 ( 默认 ) \beamertemplatetransparentcoveredhigh 使所有被隐藏的文本高度透明 \beamertemplatetransparentcovereddynamicmedium 使所有被隐藏的文本完全透明, 动态, 动态的范围很小 11

18 12

19 三 字体 (Fonts) 章目录 三 字体 (FONTS) 文本字体和数学字体 14 文本字体和数学字体 I 14 文本字体和数学字体 Ⅱ 15 2 字体尺寸 16 13

20 第 12 张 1 文本字体和数学字体 文本字体和数学字体 I 出色的支持选择文本字体和数学字体. 默认的文本字体和数学字体 : CMSS 和 CMR Math 尽量避免在介绍中使用 CMR Math 举例 : Beamer 的文本字体选项 [sans] ( 默认 ) 默认的是 Mathsans. 等效于 \usefonttheme{default} Beamer 的文本字体选项 [sefif] 默认的是 mathserif t. 等效于 \usefonttheme[options]{serif} Beamer 的数学字体选项 [mathsans/mathserif] 14

21 第 13 张 文本字体和数学字体 Ⅱ Beamer 的选项 [professionalfonts] 关闭 Beamer 的内部字体重写 => 等效于 \usefonttheme{professionalfonts}) 附加的字体主题样式宏包 \usefonttheme{structurebold} 用于粗体修饰的结构 ( 扉页 标题 横线, 侧边栏,...) \usefonttheme{structureitalicserif} \usefonttheme{structuresmallcapsserif} 这篇文档中的字体设置 : \documentclass[mathserif]{beamer} \usepackage{lucidaso} \usepackage[small]{eulervm} % sans (text) + mathserif % Lucida Bright (SO Version) % Euler VM 15

22 第 14 张 2 字体尺寸 字体尺寸 默认字体尺寸 :11pt( 在全屏显示模式下这个尺寸相应地为 22 pt.) 可用的字体尺寸选项 : 8pt, 9pt, 10pt, 11pt, 12pt, 14pt, 17pt, 20pt 16

23 四 颜色 (Colors) 章目录 四 颜色 (COLORS) 颜色规定 18 2 XCOLOR 宏包中更多的颜色 19 3 突出显示颜色 20 4 背景色 21 5 颜色举例 22 17

24 第 15 张 1 颜色规定 颜色规定 (Definition) Beamer 加载由 Uwe Kern 所作的 xcolor 宏包, Beamer 同样支持 color 和 pstcol xcolor 规定 \xdefinecolor{lavendar}{rgb}{0.8,0.6,1} \xdefinecolor{olive}{cmyk}{0.64,0,0.95,0.4} \colorlet{structure}{green!60!black} 用于颜色替换 预定义的颜色 : red, green, blue, cyan, magenta, yellow, black, darkgray, gray, lightgray, orange, violet, purple, and brown 如果你想使用 color 宏包的选项, 传递 [color=option] 选项给 Beamer 如果你想使用 pstcol 宏包的选项, 传递 [xcolor=pst,dvips] 选项给 Beamer. 因为你必需使用 dvips/ps2pdf 18

25 第 16 张 2 xcolor 宏包中更多的颜色 xcolor 宏包中更多的颜色 颜色混合非常容易! 颜色 举例 含义 green!80!gray text 80% green + 20% gray green!60!gray text 60% green + 40% gray green!40!gray text 40% green + 60% gray -green text 从上面去除 green 你可以使用 animate (Beamer 宏包 ) 或 multido(pstricks 宏包 ) 获得淡入和淡出效果! 19

26 第 17 张 3 突出显示颜色 突出显示 (Highlighting) 颜色 Beamer 也有突出显示颜色的主题 : \alert{text}=> text \structure{text}=> text 改变这些颜色 : \usecolortheme[named=yellow]{structure} 改成 yellow \setbeamercolor{alerted_text}{fg=cyan} 4 改成 cyan 4 _ 表示空格 (space). 20

27 第 18 张 4 背景色 背景色 (Background Colors) 设置单一的 (solid) 背景色, \beamersetaveragebackground{color} or \beamertemplatesolidbackgroundcolor{color} 设置渐变 (gradient) 背景色, \beamertemplateshadingbackground{color1}{color2}.=> 这张 ( 第 18 张 ) 幻灯片的颜色是 {blue!5}{yellow!10} 设置栅格 (grid ) 背景, \beamertemplategridbackground[grid_space] 21

28 第 19~20 张 5 颜色举例 颜色举例 在下面这些地主改变颜色 : 代码 : 导航条 背景 structure{..} color \colorlet{mystruct}{structure} \colorlet{structure}{magenta} \usestructuretemplate{\color{structure}}{} \beamertemplateshadingbackground{yellow!50}{magenta!50} \frame{%... }% % 返回到最初的 structure 和背景主题 \colorlet{structure}{mystruct} \beamertemplateshadingbackground{blue!10}{yellow!10} % 保存当前的 structure % 新建 structure % \structure{..} % 新背景 22

29 五 Verbatim 章目录 五 VERBATIM VERBATIM W/O 覆盖 24 2 行内 VERBATIM 使用覆盖 25 23

30 第 21 张 1 Verbatim w/o 覆盖 Verbatim w/o 覆盖 (Overlays) \verb 或 verbatim 不能直接在 Beamer 中使用! 如果这里没有覆盖, 请使用 \frame[containsverbatim] \frame[containsverbatim]{\frametitle{..}% \begin{verbatim}.. verbatim contents.. \end{verbatim} }% 现在行内 verbatim 允许使用 \verb 颜色和尺寸可以轻而易举的改变 24

31 第 22~23 张 2 行内 Verbatim 使用覆盖 行内 (Inline)Verbatim 使用覆盖 (Overlays) 我的解决方法 : \path{..} 代替 \verb 颜色 :Hello, Hello 尺寸 :Hello, Hello, Hello Beamer 的解决方法 :\defverb\ 命令 内容 在 frame 外 定义 \defverb\myverb Hello,World! 使用 \myverb=>hello, World! 25

32 第 24~25 张 行内 (Inline)Verbatim 使用覆盖 (Overlays) 使用 lstlisting 环境代替 verbatim 环境 在 frame 外定义 \defverbatim[colored]\command{contents} contents 是列表 (listing) 环境 举例 : \defverbatim[colored]\testcode{% \begin{lstlisting}[frame=single,emph={ga},emphstyle=\color{olive}]... \end{lstlisting}}% \frame{% \testcode }% }% 26

33 六 图形 (Figures) 章目录 六 图形 (FIGURES) 图形介绍 28 2 PGF 宏包 29 3 COLUMNS 环境中的图形 30 4 缩放图形 31 5 画图 34 6 图形遮罩 35 27

34 第 26 张 1 图形介绍 图形介绍 标准的 LATEX 图形环境 可以应用 Beamer 也可装载 pgf 包. 所以 PGF 命令 \pgfimage[]{file}, 也是可以用的 \includegraphics, \pgfimage, 和 \pdfuseimage 懂得 ( 可以用 ) 覆盖 图形 : 老虎 28

35 第 27 张 2 PGF 宏包 PGF 宏包 (Macros) PSTricks 和 PGF 能用于精确地 (exactly) 定位 (locating) 图形 幻灯片网格尺寸 :(LL UR) = (0cm,7cm) (11cm,1cm) PGF 宏包定位 (locating) 图形 : \pgfputat{\pgfxy(0,-6.5)}{\pgfbox[left,base]{\pgfimage[width=1cm]{tiger}}} 如果你多次使用同一张图片, 请使用 \pgfdecalreimage 和 \pgfuseimage 或仅使用\includegraphics 29

36 第 28~30 张 3 Columns 环境中的图形 Columns 环境中的图形 columns 环境中的图形需精确定位 (exact position) PGF 宏包 ( 用 pdflatex 编译时,PDF PNG 和 JPEG 适用 ) \begin{columns} \begin{column}{0.65\textwidth} A\\B \end{column} \begin{column}{0.35\textwidth} \pgfputat{\pgfxy(0,0)}{\pgfbox[left,top]{\includegraphics[width=\textwidth]{tiger}}} \end{column} \end{columns} PSTricks 宏包 ( 用 dvips 编译时 EPS 适用 ) \begin{columns} \begin{column}{0.65\textwidth} A\\B \end{column} \begin{column}{0.35\textwidth} \rput[lt](0,0){\includegraphics[clip=true,width=\textwidth]{tiger}} \end{column} \end{columns} 30

37 第 31 张 4 缩放图形 缩放图形 图形用下面的命令缩放 5 \framezoom<button overlay><zoomed overlay>(x,y)(w,h). (x,y): 左上角 (Upper left) 的坐标 (coordinate) (w,h): 缩放的宽和高 例子 : \frame{\frametitle{zooming Figures -- Example} \framezoom<1><2>[border](0.5cm,0.5cm)(2cm,1.5cm) \framezoom<1><3>[border](1cm,3cm)(2cm,1.5cm) \framezoom<1><4>[border](3cm,2cm)(2cm,2cm) \pgfimage[height=6cm]{tiger} %\includegraphics[height=6cm]{tiger} is working, too! }% 5 在 2.2 版本中为新增的内容 31

38 32 第 32 张

39 33

40 第 36~39 张 5 画图 画图 功能强大极易使用 (easiest-to-use) 的宏包, PSTricks, 无法对 pdflatex 起作用, 归因于 PS 和 PDF 基本的不同 由 Beamer 作者创建的 PGF (portable graphics format): 功能没有 PSTricks 强大, 但工作得更好 支持 dvips, dvipdfm 6, 和 pdflatex MetaPost 对 dvips/ps2pdf, dvipdfm 和 pdflatex 起作用 我更喜欢 Beamer + PSTricks. => 参 beamer pstricks.pdf [1] 6 注意 Beamer 不支持 dvipdfm 34

41 第 40~44 张 6 图形遮罩 图形遮罩 想遮挡住 (mask) 图形的白色背景吗? 制作一个 256 色和 JPEG 压缩格式 7 (Compression) 的图形遮罩 在 pdf 包中使用 \pgfdeclaremask 但只对 pdflatex 起作用! 源代码 : \pgfdeclaremask{mymask}{ppt.mask} % Mask image: ppt.mask.jpg \pgfimage[mask=mymask,interpolate=true]{ppt} % Masking ppt.png 但是图形遮罩遮住了整个幻灯版! 看看字的轮廓 7 我不知道确切的条件 35

42 36

43 七 局部结构 (LOCAL Structurs) 章目录 七 局部结构 (LOCAL STRUCTURS) 奇妙的粗体圆点(BULLETS) 38 2 加外框的文本 39 加外框的文本 预定义 39 加外框的文本 用户定义 40 3 分栏(COLUMNS) 41 4 表格(TABLES) 42 37

44 第 45~46 张 1 奇妙的粗体圆点 (Bullets) 奇妙的粗圆体点 \beamertemplateballitem 放在导言区 (preamble) 中 itemize 环境 => 奇妙的圆球 enumerate 环境 => 奇妙的带数字的圆球 ( 这里使用的 ) 使用不同的 enumerate 模板, \begin{enumerate}[minitemplate] \item... \end{enumerate} 这里 mini template 可以是 A, a, i, I, (A),.... 但会变成呈锯齿状 (indentation) ( 臭虫?) i Item 1 ii Item 2 38

45 第 47~50 张 2 加外框的文本 加外框的文本 预定义 Beamer 支持预定义 (predefined) 加外框的文本 (framed texts): theorem, corollary, definition in structure color frame examples in green color frame block in structure color frame with your own title alertblock in alert color frame with your own title 它们可以用覆盖 (overlay) 它们的颜色设计是主题样式依赖的 (theme dependent) 示例 : 示例代码 : \begin{block}<+->{summary} Beamer is exllent \end{block} 39

46 第 51~52 张 加外框的文本 用户定义 beamerboxesrounded 环境 示例 示例代码 : \setbeamercolor{uppercol}{fg=white,bg=ugreen}% \setbeamercolor{lowercol}{fg=black,bg=lgreen}% \begin{beamerboxesrounded}[upper=uppercol,lower=lowercol,shadow=true]{theorem} $A = B$. \end{beamerboxesrounded}} 40

47 第 53 张 3 分栏 (Columns) Columns 使用 LATEX 的 minipage 环境或 使用 Beamer 的 columns 环境 \begin{columns} \begin{column}[pos]{width}... 内容... \end{column} \begin{column}[pos]{width}... 内容... \end{column} \end{columns} 41

48 第 54~58 张 4 表格 (Tables) 表格 标准的 LATEX table 环境可用 在 overprint 环境中使用 \onslide, 将会显示右边例子中所示的覆盖 表格的覆盖 : Cells are growing step by Step, Finished! 42

49 八 过渡效果 (Transitions) 43

50 第 59~64 张 过渡效果 PDF 支持七种过渡效果 :Blinds Box 溶解 (Dissolve) 闪光 (Glitter) 替换 (Replace) 裂开 (Split) 擦除 (Wipe) 产生过渡效果的命令必需在在 frame 环境中 Beamer 的过渡效果命令知道 (understand) 覆盖 没有覆盖过渡效果对当前的整个 (globa)frame 起作用 覆盖的过渡效果示例 : 以 /Di 315 的速度闪出 ( 这张幻灯片默认的 ):\transglitter[direction=315] Boxout \transboxout<3> Boxin: \transboxin<4> 溶解过渡效果 : \transdissolve<5> 垂直裂开 :\transsplitverticalout<6> 44

51 九 覆盖 (Overlays) 章目录 九 覆盖 (OVERLAYS) 概述(OVERVIEW) 46 2 暂停(PAUSE) 47 3 暂停: 表格示例 48 4 ONSLIDE 49 5 ITEM Ⅰ 50 逐步显示中的 Item I 50 逐步显示中的 Item Ⅱ 51 逐步显示中的 Item Ⅲ 52 6 替代 53 7 更多替代 54 8 简单高亮 59 9 ALERT 用于高亮 二择一(ALERTNATIVE) 用于高亮 TEMPORAL 用于高亮 其它的高亮 63 45

52 第 65~67 张 1 概述 (Overview) 覆盖 概述 覆盖是动态 (dynamic) PDF presentation 的精神所在 Beamer 提供了大量的覆盖命令 覆盖功能的关键所在 : 逐步显示 () 替代 高亮 多种覆盖计数器 : n, n-, -n, n1-n2, +- 46

53 第 68~73 张 2 暂停 (Pause) 逐步显示中的暂停简易覆盖中的暂停命令 8 \begin{itemize} \pause \item Every thing \pause \item that has \pause \item beginning \pause \item has end. \end{itemize} Every thing that has beginning has end 注意暂停不知晓覆盖计数器 8 同样也有 \unpause 命令 47

54 第 74~78 张 3 暂停: 表格示例 暂停 : 表格示例 表格中的逐行显示 : 源代码 : \rowcolors[]{1}{blue!20}{blue!10} \begin{tabular}{l!{\vrule}cccc} Class & A & B & C & D \\\hline X & 1 & 2 & 3 & 4 \pause \\ Y & 3 & 4 & 5 & 6 \pause \\ Z & 5 & 6 & 7 & 8 \end{tabular} 48

55 第 79~84 张 4 Onslide 逐步显示中的 Onslide \onslide<n->stuff 在给定的幻灯片上显示填充 (stuff) 例子 : 表格中的逐显示 : 源代码 : \rowcolors[]{1}{blue!20}{blue!10} \begin{tabular}{l!{\vrule}c<{\onslide<2->}c<{\onslide<3->} % c<{\onslide<4->}c<{\onslide}c} Class & A & B & C & D \\ X & 1 & 2 & 3 & 4 \\ Y & 3 & 4 & 5 & 6 \\ Z & 5 & 6 & 7 & 8 \end{tabular} 49

56 第 85~90 张 5 Item Ⅰ 逐步显示中的 Item I \item<n-> 用于带有覆盖计数器的逐步显示 \begin{itemize} \item<2-> Every thing Everything \item<3-> that has that has \item<4-> beginning beginning \item<5-> has end has end \end{itemize} 嵌入更多的 items 将会是怎样? 50

57 第 91~96 张 逐步显示中的 Item Ⅱ <+-> 用于增加 (overlays) w/o 覆盖计数器 \begin{itemize}[<+->] \item Every thing Everything \item that has that has \item beginning beginning \item has end. has end \end{itemize} 注意 \item<+-> 可用于替代的整个 \begin{itemize}[<+->] 设置 51

58 第 97~102 张 逐步显示中的 Item Ⅲ \item<n1-n2> 用于很好地 (fine) 控制覆盖 \begin{itemize} \item<1-> Every thing \item<3-4> that has \item<4> beginning \item<2-5> has end. \end{itemize} Everything has end 52

59 第 103~117 张 6 替代 Replace 连续地 \only<n>{..}. ( 示例 ) \only<1>{ga}\only<2>{moga}\only<3>{pmoga} => pmoga \uncover<n>{..} 给定 n 时显示 ( 示例 ) \uncover<5>{i am 5}) \invisible<n>{..} 给定 n 时隐藏 ( 示例 ) \invisible<8>{invisible at 8} => Invisible at 8 \alt<n>{at n}{not at n} 用于二择一 ( 示例 ) \alt<11>{i am 11}{I am not 11} => I am not 11 \temporal<n>{before}{at n}{after} 用于三择一 9 ( 示例 ) \temporal<14>{i am 13}{I am 14}{I am 15} => I am 15 9 也可以参考 hihlinghting 这节 53

60 第 118 张 7 更多替代 更多替代假设替代物在高度上不同,overlayarea 和 overprint 环境可用 54

61 第 119 张 更多替代 假设替代物在高度上不同,overlayarea 和 overprint 环境可用 \only<n> 在 overlayarea 环境 : pmsga 的发展基于 NSGAII 和 PGAPack. 55

62 第 120 张 更多替代 假设替代物在高度上不同,overlayarea 和 overprint 环境可用 \only<n> 在 overlayarea 环境 : 主要的不同是 sharing again 和新的 density 功能 56

63 第 121 张 更多替代 假设替代物在高度上不同,overlayarea 和 overprint 环境可用 \only<n> 在 overlayarea 环境 : 主要的不同是 sharing again 和新的 density 功能 \onslide<n> 在 overprint 环境中 : 这是第一行 这是第二行, 更长的一行 57

64 第 122 张 更多替代 假设替代物在高度上不同,overlayarea 和 overprint 环境可用 \only<n> 在 overlayarea 环境 : 主要的不同是 sharing again 和新的 density 功能 \onslide<n> 在 overprint 环境中 : 用这一行代替前面的两行 58

65 第 123~130 张 8 简单高亮 简单高亮 \item <+- alert@+> 用于自动高亮 \begin{itemize} \item <+- alert@+> Every thing \item <+- alert@+> that has \item <+- alert@+> beginning \item <+- alert@+> has end. \end{itemize} Everything that has beginning has end 也可使用 \begin{itemize}[<+- alert@+>] 代替个别的 \item <+- alert@+> 也可使用 structure 代替 alert 59

66 第 131~136 张 9 Alert 用于高亮 Alert 用于高亮 \item<n->\alert<n>{stuff} 优于前面所述的自动高亮显示 \begin{itemize} \item<2->\alert<2> Every thing Everything \item<2->\alert<3> that has that has \item<2->\alert<4> beginning beginning \item<2->\alert<5> has end. has end \end{itemize} 注意 :\item<2->\alert<2> 和 \item<2- alert@2> 相同 60

67 10 二择一 (Alertnative) 用于高亮 二择一 (Alternative) 用于高亮 \alt<n>{\color{col1}..}{\color{col2}..} 用于激活 / 关闭高亮 例子 : Everything that has beginning has end. 第 137~142 张 源代码 : \begin{itemize} \item<2-> \alt<2>{\color{blue} Everything}{\color{gray} Everything} \item<2-> \alt<3>{\color{blue} that has}{\color{gray} that has} \item<2-> \alt<4>{\color{blue} beginning}{\color{gray} beginning} \item<2-> \alt<5>{\color{blue} has end.}{\color{gray} has end.} \end{itemize} 61

68 第 143~149 张 11 Temporal 用于高亮 Temporal 用于高亮 \temporal<n>{before}{on}{after} 用于渐进 (incremental) 设高亮 准备? Everything that has beginning has end. 源代码 : \def\hilite<#1>{% \temporal<#1>{\color{gray}}{\color{blue}}% {\color{blue!25}}}... \begin{itemize} \hilite<3> \item Everything \hilite<4> \item that has \hilite<5> \item beginning \hilite<6> \item has end. \end{itemize} 62

69 第 150~155 张 12 其它的高亮 其它的高亮 (Highlightings) \textbf, \textit, \textsl, \textrm, \textsf, 和 \color 也知晓覆盖 例子 : Everything (\color<3-4>{olive}{everything}) that has beginning (\color<5>[rgb]{.9,.5,.5}beginning) has end. 63

70 64

71 十 动画 (Animation) 章目录 十 动画 (ANIMATION) 动画 66 2 动画(ANIMATE)+ 覆盖 (OVERLAY) 67 3 ANIMATEVALUE 68 4 飞行动画 69 5 同步覆盖(TIME OVERLAYS) 71 65

72 第 156~158 张 1 动画 动画 Beamer 支持 transition, overlay 和 Animationion 用于制作动态的 presentation 动画依赖于你的想象力和 LATEX 技巧 支持的动画类型 : Animate + Overlay Animatevalue Timed overlays (auto advancing) 警告 : 使用动画, 必需要有大量的 slides 66

73 第 159~166 张 2 动画 (Animate)+ 覆盖 (Overlay) 动画 (Animate0 + 覆盖 (Overlay) \animate<n> 10 用于自动逐步显示 准备? Everything that has beginning has end. 源代码 : \frame{\animate<3-6>\frametitle{animate + Overlay}%... \begin{itemize}[<+->] \item Everything \item that has \item beginning \item has end. \end{itemize} 10 记住 : n 可以是 n1-n2, n1-, 或其它 67

74 第 167 张 3 Animatevalue Animatevalue \animate<n> 用于驱动 (animate) n slides \animatevalue<n>{name}{start}{end} 用于指定动画效果 name:: 计数器或元 (dimension) start 和 end:value 的开始和结束值 (values) 68

75 第 168~198 张 4 飞行动画 飞行动画 使用了 \animate 和 \animatevalue 这个动画消耗 (consumes) 31 页 (pages)! 开始浏览? 69

76 第 199 张 飞行动画 源代码 \newcount\opaqueness \newdimen\offset \frame{\frametitle{flying Animation}% \animate<2-15,17-30> % 动画的实际 values 试试 <1-31> \begin{itemize} \item[] \animatevalue<1-15>{\opaqueness}{0}{100}% \animatevalue<1-15>{\offset}{6cm}{0cm}% \begin{colormixin}{\the\opaqueness!averagebackgroundcolor} \hspace{\offset} Flying in from {\color{olive} right}! \end{colormixin} \item[] \animatevalue<17-31>{\opaqueness}{0}{100} % 从 17 给定, 不是 16 \animatevalue<17-31>{\offset}{-5cm}{0cm} % 一个暂停 (pause)! \begin{colormixin}{\the\opaqueness!averagebackgroundcolor} \hspace{\offset} Flying in from {\color{olive} left}! \end{colormixin} \end{itemize} 70

77 5 同步覆盖 (Time Overlays) 同步覆盖 (Timed Overlays) 第 200 张 Adobe Reader 支持同步覆盖, 常称作自动推进 (auto advancing) 两种方法 (approaches) 来自于 rom hyperref 包的 \hypersetup{pdfpageduration=time} + 覆盖宏包 (overlay macros) 来自于 beamer 包的 \transduration<n>{time} + 覆盖宏包 (overlay macros) 参考 beamer pstricks.pdf 中的例子 用 PGF 照上面的样着做看看 是否容易? 71

78 72

79 十一 Beamer 的主题样式 (Theme) 章目录 十一 BEAMER 的主题样式 (THEME) 幻灯片(PRESENTATION) 主题样式 (THEMES) 74 2 颜色(COLOR) 主题样式 (THEMES) 75 3 字体(FONT) 主题样式 (THEMES) 76 73

80 第 201 张 1 幻灯片 (Presentation) 主题样式 (Themes) 幻灯片 (Presentation) 主题样式 (Themes) \usetheme[option]{name}:: 指定 Beamer 主题样式 <name>.sty. 旧主题样式 :bars, boxes, classic, default, lined, plain, shadow, sidebar, sidebardark, sidebardarktab, sidebartab, split, tree, treebars 新主题样式 (v3.0) W/o 导航条 :default, boxes, Bergen, Madrid, Pittsburgh, Rochester 带树形导航条 :Antibes, JuanLesPins, Montpellier 带目录 (TOC) 的侧边导航条 :Berkeley, PaloAlto, Goettingen, Marburg, Hannover 带微型 frame 导航条 :Berlin, Ilmenau, Dresden, Darmstadt, Frankfurt, Singapore, Szeged 带节小节标题 : Copenhagen, Luebeck, Malmoe, Warsaw Return to Theme 74

81 2 颜色 (Color) 主题样式 (Themes) 颜色主题 第 202 张 \usecolortheme[option]{name}: 指定 beamercolortheme<name>.sty. 四种基本的颜色主题样式 : Default and special-purpose themes: default, structure (e.g., \usecolortheme[named=seagreen]{structure}) Complete color themes: albatross, beetle, crane, dove, fly, seagull 内部颜色主题 :lily, orchid 外部颜色主题 :whale, seahorse \setbeamercolor{beamer_element}{color} 用于 Beamer 元素颜色的设置 ( 例子 ) \setbeamercolor{frametitle}{fg=blue,bg=yellow} 75

82 第 203 张 3 字体 (Font) 主题样式 (Themes) 字体主题样式 \usecolortheme[option]{name}: 指定 beamerfonttheme<name>.sty 新主题样式 (v3.0):default, professionalfonts, serif, structurebold, structureitalicserif, structuresmallcapsserif Return to Theme 76

83 十二 混杂特性 (Misc features) 章目录 十二 混杂特性 (MISC FEATURES) 超级链接(HYPERLINKS) 和按钮 (BUTTONS) 78 2 注释(NOTES) 79 3 MERGE 用于 TRANS 输出 81 4 电影(MOVIE) 82 5 声音(SOUND) 83 6 标识(LOGO) 和页脚 (FOOTER) 84 7 效仿(EMULATIONS) 85 8 PROSPER 的效果 (RESULT) 86 9 韩文(HANGUL) 其它宏包 88 77

84 第 204 张 1 超级链接 (Hyperlinks) 和按钮 (Buttons) 超级链接 (Hyperlinks) 和按钮 (Buttons) Beamer 提供了附加的选项用于超级链接 (hyperlinks) 和按钮 (buttons) \hyperlink{targetname}{\beamergotobutton{text}} 用于产生超级链接 \hypertarget{targetname}{text} 用于产生链接目标 (target) 一些有用的按钮是 \beamerbutton, \beamergotobutton, 和 \beamerreturnbutton 前往最后一张幻灯片, 单击 here 78

85 第 205~207 张 2 注释 (Notes) 注释 (Notes) 为 PDF screen 添加注释 (notes), \documentclass[notes]{beamer} 仅产生 ( make only) 注释 (notes), \documentclass[notesonly]{beamer} 通过在 \frame{...} 后添加 \note[options]{...} 产生注释 这张幻灯片带有注释, 想看看吗? 79

86 第 208 张 看见我了吗? 用于注释的两个注释选项是 itemize 和 enumerate \beamertemplatenoteplain 用于简单的 (plain) 注释页 (note page)! 80

87 第 209 张 3 Merge 用于 trans 输出 Merge for trans Output Beamer 屏幕尺寸 = 128mm x 96mm Merge transparency 输出 on 信纸 for 打印! \documentclass{article} % \usepackage{pdfpages} \begin{document} \includepdf[nup=2x2,landscape,delta=5mm 5mm,% scale=0.95,pages={1-18}]{trans.pdf} \end{document} 返回, 单击 81

88 第 210 张 4 电影 (Movie) 电影 Beamer 提供 multimedia 宏包 11 \movie[options]{poster}{file_name} poster:poster 用于电影 (empty 文本 或图像) file name:avi 或 MPG 对 pdflatex 和 dvips/ps2pdf 起作用 其它有用的选项 autostart, loop, repeat, palindrome borderwidth, showcontrols, externalviewer 例子 : clock.avi 11 在 2.2 版本中为新特性 可独立使用 82

89 5 声音 (Sound) 声音 (Sound) Beamer 提供 multimedia 宏包 \sound[options]{poster}{file_name} 不能使用 dvips/ps2pdf route 文件类型依赖于 Acrobat Reader 版本 一些有用的选项 autostart, automute, loop, repeat inlinesound 用于把声音文件插入到 PDF 中 channels (1), samplingrate (44100), bitspersample (16), 编码 (μlaw) 是重要的! 例子 : \sound[autostart,samplingrate=705000,bitspersample=16, channels=2]{example}{notify.wav} 第 211 张 83

90 第 212 张 6 标识 (Logo) 和页脚 (Footer) 页脚设计 添加标识, 在导言区用 \logo{stuff} 标识将放在右下角 如何改变? 请看下面! To 重新设计页脚, 请应用下面的代码 : \usefoottemplate{\vbox{% \tinycolouredline{structure!25}% {\color{white}\textbf{\insertshortauthor\hfill% \insertshortinstitute}}% \tinycolouredline{structure}% {\color{white}\textbf{\insertshorttitle}\hfill}% }} 84

91 7 效仿 (Emulations) 第 213 张 效仿 (Emulations) 其它的宏包 可以在 Beamer 中使用 FoilTEX, (HA)Prosper, Seminar, 或 TEXPower 幻灯片 虽不完美, 但很容导入用上述 classes 制作的纪灯片 Prosper 的例子 : \usepackage{beamerprosper} % Required... \overlays{8}{% \begin{slide}{prosper Emulation Example} \begin{itemize} \item Backward writing is easy and simple: \fromslide{8}{{\color{green} P}}% \fromslide{7}{{\color{blue} R}}% \fromslide{6}{{\color{magenta} O}}% \fromslide{5}{{\color{cyan} S}}% \fromslide{4}{{\color{yellow} P}}% \fromslide{3}{{\color{olive} E}}% \fromslide{2}{{{\color{red} R}}} \end{itemize} \end{slide} }% 85

92 第 214~221 张 8 Prosper 的效果 (Result) Prosper 的效果 (Result) 这张幻灯片是用 Prosper syntax 写成的! 由后向前写很容易简单 : PROSPER 86

93 第 222 张 9 韩文 (Hangul) 韩文 (Hangul) 如果你安装了 HLATEX, 加载 \usepackage{hfont}. \textgs{...}) 点击返回 注意 : 在 PDF 中韩文 (Hangul) 书签 (bookmarks) 和韩文搜索只被 dvipdfm(x) 支持, 但是 Beamer 不支持 dvipdfm(x) Beamer 选项 [cjk] 是支持的 \usepackage[utf8]{inputenc} 是支持的 87

94 第 223 张 10 其它宏包 其它宏包 (Macros) 去掉导航记符号 (symbols), \usenavigationsymbolstemplate{}. 88

95 十三 最后一张幻灯片 (Last Slide) 89

96 第 224 张 最后一张幻灯片 最后一张幻灯片 这张幻灯片是你单击按钮后跳转过来的 返回, 单击 90

97 十四 参考书目 (Reference) 91

98 第 225 张 参考书目 (Reference) KiJoo Kim, KiJoo s LATEX Documents ( Michael Wiedmann, Screen Presentation Tools ( 92

使用 Beamer 制作学术讲稿 Ethan D. 2/21 目录安排 1 缘何 2 文档结构 3 列表环境 4 段落文本 5 帧内结构 6 图与表格 7 主题

使用 Beamer 制作学术讲稿 Ethan D. 2/21 目录安排 1 缘何 2 文档结构 3 列表环境 4 段落文本 5 帧内结构 6 图与表格 7 主题 使用 Beamer 制作学术讲稿 Victory won t come to me unless I go to it. Ethan D http://ddswhu.com/ 出品 使用 Beamer 制作学术讲稿 Ethan D. 2/21 目录安排 1 缘何 2 文档结构 3 列表环境 4 段落文本 5 帧内结构 6 图与表格 7 主题 使用 Beamer 制作学术讲稿 Ethan D. 3/21

More information

2/24 内容提要 1 幻灯片制作 2 beamer 文档类 3 主体结构 : 帧 frame 4 标题与目录 5 定理类环境与块环境 6 彩色盒子 7 其他事项

2/24 内容提要 1 幻灯片制作 2 beamer 文档类 3 主体结构 : 帧 frame 4 标题与目录 5 定理类环境与块环境 6 彩色盒子 7 其他事项 L A TEX 科技排版 幻灯片制作 潘建瑜 华东师范大学数学系 2016 2/24 内容提要 1 幻灯片制作 2 beamer 文档类 3 主体结构 : 帧 frame 4 标题与目录 5 定理类环境与块环境 6 彩色盒子 7 其他事项 幻灯片 a L A TEX 制作幻灯片 slides 文档类 beamer, foitex, pdfscreen, pdfslides, Prosper, PPower4,...

More information

LaTeX/Beamer 与网络爬虫 Ethlisan 2/24 目录安排 1 LATEX/Beamer 介绍 2 Metropolis 主题安装 3 编辑环境与编辑器 4 网络爬虫 - 八爪鱼

LaTeX/Beamer 与网络爬虫 Ethlisan 2/24 目录安排 1 LATEX/Beamer 介绍 2 Metropolis 主题安装 3 编辑环境与编辑器 4 网络爬虫 - 八爪鱼 LaTeX/Beamer 入门与网络爬虫交流会 make better-looking slides and scrape data from web Dongsheng DENG 2017-12-27 LaTeX/Beamer 与网络爬虫 Ethlisan 2/24 目录安排 1 LATEX/Beamer 介绍 2 Metropolis 主题安装 3 编辑环境与编辑器 4 网络爬虫 - 八爪鱼 LaTeX/Beamer

More information

lnag_ch_v2.01.doc

lnag_ch_v2.01.doc 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. % Any line starting with "%" is a comment. % "\" (backslash) is a special Latex character which introduces a Latex %

More information

影視後製全攻略 Premiere Pro After Effects Encore 自序 Adobe Premiere Pro After Effects Encore 2008 Adobe CS Adobe CS5 Adobe CS4 Premiere Pro After Effect

影視後製全攻略 Premiere Pro After Effects Encore 自序 Adobe Premiere Pro After Effects Encore 2008 Adobe CS Adobe CS5 Adobe CS4 Premiere Pro After Effect 自序 Adobe Premiere Pro After Effects Encore 2008 Adobe CS3 2010 Adobe CS5 Adobe CS4 Premiere Pro After Effects Encore 18 ii Tony Cathy 2010/8 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 iii Premiere

More information

Beamer 簡報系統 蔡炎龍 LATEX 研習 IV 2/48

Beamer 簡報系統 蔡炎龍 LATEX 研習 IV 2/48 LATEX 研習 IV 用 Beamer 做簡報 蔡炎龍 政治大學應用數學系 2010 年 1 月於國立清華大學 蔡炎龍 LATEX 研習 IV 1/48 Beamer 簡報系統 蔡炎龍 LATEX 研習 IV 2/48 Beamer 的基本架構 和一般 LaTeX 使用很像, Beamer 套件只是一開始使用 \documentclass{beamer}, 其餘大致是一樣的 \documentclass{bemaer}

More information

1. 基本使用 2. 主题选用 3. 主题定制 4. 各种设置 2 / 44

1. 基本使用 2. 主题选用 3. 主题定制 4. 各种设置 2 / 44 Beamer 演示学习笔记 zoho@bbs.ctex.org 2011 年 12 月 11 日 1. 基本使用 2. 主题选用 3. 主题定制 4. 各种设置 2 / 44 1. 基本使用 2. 主题选用 3. 主题定制 4. 各种设置 3 / 44 简要介绍 Beamer 是一个用于制作演示文稿的 LaTeX 文档类, 由 Till Tantau 编写 相对于其它同类工具,Beamer 有如下这些优点

More information

2005.06.26 更新日期 :July 13, 2005 安裝步驟排版格式文件基本設定段落設定 1 下載 cwtex 3 + MiKTeX 2.4 下載網址 : 台大經濟系 \ 吳聽敏教授 \ cwtex 下載 \ 嘉南藥理學院 ftp 站 2 安裝方法 方法 1 : 直接按 setup 依照其指示安裝方法 2 : 1 MiKTeX : 排版英文文件及使用 YAP 軟體做 dvi preview.

More information

100 1 100 5 23 100 6 15 100 7 15 24 100 7 15 4 100 7 15 100 6 15 100 7 19 9 4 1 100 7 24 100 7 27 100 7 29 100 8 1 8 5 100 8 10

100 1 100 5 23 100 6 15 100 7 15 24 100 7 15 4 100 7 15 100 6 15 100 7 19 9 4 1 100 7 24 100 7 27 100 7 29 100 8 1 8 5 100 8 10 100 1 100 5 23 100 6 15 100 7 15 24 100 7 15 4 100 7 15 100 6 15 100 7 19 9 4 1 100 7 24 100 7 27 100 7 29 100 8 1 8 5 100 8 10 http://actweb.ukn.edu.tw/webexam/frmlogin.aspx http://www.admission.ukn.edu.tw

More information

1 2

1 2 LATEX : : : 1006 1 2 2013 L A TEX : I Abstract In this short article we will discuss about L A TEX for your dissertation Key Words: Dynamic Positioning, Ship Manoeuvrability,Control Algorithm, State Estimate

More information

coverage2.ppt

coverage2.ppt Satellite Tool Kit STK/Coverage STK 82 0715 010-68745117 1 Coverage Definition Figure of Merit 2 STK Basic Grid Assets Interval Description 3 Grid Global Latitude Bounds Longitude Lines Custom Regions

More information

区 域 活 动 进 入 中 班 我 们 区 域 的 设 置 和 活 动 材 料 都 有 所 变 化, 同 时 也 吸 引 孩 子 们 积 极 的 参 与 学 习 操 作 区 的 新 材 料 他 们 最 喜 欢, 孩 子 们 用 立 方 块 进 行 推 理 操 作 用 扑 克 牌 进 行 接 龙 游

区 域 活 动 进 入 中 班 我 们 区 域 的 设 置 和 活 动 材 料 都 有 所 变 化, 同 时 也 吸 引 孩 子 们 积 极 的 参 与 学 习 操 作 区 的 新 材 料 他 们 最 喜 欢, 孩 子 们 用 立 方 块 进 行 推 理 操 作 用 扑 克 牌 进 行 接 龙 游 日 常 生 活 本 月 我 们 日 常 生 活 活 动 的 重 点 :1. 让 孩 子 养 成 良 好 的 生 活 习 惯, 注 重 生 活 细 节 如 : 在 换 好 鞋 子 后 能 将 鞋 子 整 齐 的 摆 放 进 鞋 架 坐 在 椅 子 上 换 鞋 正 确 的 收 放 椅 子 等 2 让 孩 子 有 自 我 照 顾 的 意 识 如, 让 孩 子 感 受 自 己 的 冷 热 并 告 知 老 师,

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

More information

Photoshop CS6 艺术设计案例教程 ( 第二版 ) 1.1 Photoshop 的应用领域 Photoshop,,, Photoshop Photoshop 的用途 Photoshop CIS ( ) ( ) 案例展现 ~ 1

Photoshop CS6 艺术设计案例教程 ( 第二版 ) 1.1 Photoshop 的应用领域 Photoshop,,, Photoshop Photoshop 的用途 Photoshop CIS ( ) ( ) 案例展现 ~ 1 Chapter 01 Photoshop CS6 的基本操作 本章内容 1.1 Photoshop 的应用领域 1.6 控制面板的显示与隐藏 1.2 位图和矢量图的特性 1.7 新建 打开与保存文件 1.3 像素和分辨率的关系 1.8 图像的缩放 1.4 色彩模式 1.9 屏幕显示模式 1.5 Photoshop CS6 界面 1.10 计算机图形图像常用的色彩模式 Photoshop CS6 艺术设计案例教程

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

南華大學數位論文

南華大學數位論文 南 華 大 學 哲 學 與 生 命 教 育 學 系 碩 士 論 文 呂 氏 春 秋 音 樂 思 想 研 究 研 究 生 : 何 貞 宜 指 導 教 授 : 陳 章 錫 博 士 中 華 民 國 一 百 零 一 年 六 月 六 日 誌 謝 論 文 得 以 完 成, 最 重 要 的, 是 要 感 謝 我 的 指 導 教 授 陳 章 錫 博 士, 老 師 總 是 不 辭 辛 勞 仔 細 閱 讀 我 的 拙

More information

Microsoft Word - 3.3.1 - 一年級散文教案.doc

Microsoft Word - 3.3.1 - 一年級散文教案.doc 光 明 英 來 學 校 ( 中 國 文 學 之 旅 --- 散 文 小 說 教 學 ) 一 年 級 : 成 語 ( 主 題 : 勤 學 ) 節 數 : 六 教 節 ( 每 課 題 一 教 節 ) 課 題 : 守 株 待 兔 半 途 而 廢 愚 公 移 山 鐵 杵 磨 針 孟 母 三 遷 教 學 目 的 : 1. 透 過 活 動, 學 生 能 說 出 成 語 背 後 的 含 意 2. 學 生 能 指

More information

第32回独立行政法人評価委員会日本貿易保険部会 資料1-1 平成22年度財務諸表等

第32回独立行政法人評価委員会日本貿易保険部会 資料1-1 平成22年度財務諸表等 1 12,403 2,892 264,553 19,517 238,008 10,132 989 36 9,869 2,218 250 122 ( 126 108 1,563 278 159 260 478 35,563 1,073 74 190,283 104,352 140,658 20,349 16,733 21,607 (21,607) 58,689 303,699 339,262 339,262

More information

項 訴 求 在 考 慮 到 整 體 的 財 政 承 擔 以 及 資 源 分 配 的 公 平 性 下, 政 府 採 取 了 較 簡 單 直 接 的 一 次 性 減 稅 和 增 加 免 稅 額 方 式, 以 回 應 中 產 家 庭 的 不 同 訴 求 ( 三 ) 取 消 外 傭 徵 費 6. 行 政 長

項 訴 求 在 考 慮 到 整 體 的 財 政 承 擔 以 及 資 源 分 配 的 公 平 性 下, 政 府 採 取 了 較 簡 單 直 接 的 一 次 性 減 稅 和 增 加 免 稅 額 方 式, 以 回 應 中 產 家 庭 的 不 同 訴 求 ( 三 ) 取 消 外 傭 徵 費 6. 行 政 長 2013 年 1 月 23 日 的 立 法 會 會 議 葛 珮 帆 議 員 就 幫 助 中 產 動 議 的 議 案 ( 經 單 仲 偕 議 員 及 莫 乃 光 議 員 修 正 ) 進 度 報 告 在 2013 年 1 月 23 日 的 立 法 會 會 議 上, 由 葛 珮 帆 議 員 就 幫 助 中 產 動 議 的 議 案, 經 單 仲 偕 議 員 及 莫 乃 光 議 員 修 正 後 獲 得 通 過

More information

(f) (g) (h) (ii) (iii) (a) (b) (c) (d) 208

(f) (g) (h) (ii) (iii) (a) (b) (c) (d) 208 (a) (b) (c) (d) (e) 207 (f) (g) (h) (ii) (iii) (a) (b) (c) (d) 208 17.29 17.29 13.16A(1) 13.18 (a) (b) 13.16A (b) 12 (a) 209 13.19 (a) 13.16A 12 13.18(1) 13.18(4) 155 17.43(1) (4) (b) 13.19 17.43 17.29

More information

untitled

untitled 1993 79 2010 9 80 180,000 (a) (b) 81 20031,230 2009 10,610 43 2003 2009 1,200 1,000 924 1,061 800 717 600 530 440 400 333 200 123 0 2003 2004 2005 2006 2007 2008 2009 500 2003 15,238 2009 31,4532003 2009

More information

Microsoft Word - 08 单元一儿童文学理论

Microsoft Word - 08 单元一儿童文学理论 单 元 ( 一 ) 儿 童 文 学 理 论 内 容 提 要 : 本 单 元 共 分 成 三 个 小 课 目, 即 儿 童 文 学 的 基 本 理 论 儿 童 文 学 创 作 和 儿 童 文 学 的 鉴 赏 与 阅 读 指 导 儿 童 文 学 的 基 本 理 论 内 容 包 括 儿 童 文 学 的 基 本 含 义 儿 童 文 学 读 者 儿 童 文 学 与 儿 童 年 龄 特 征 和 儿 童 文 学

More information

bnbqw.PDF

bnbqw.PDF 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 ( ( 1 2 16 1608 100004 1 ( 2003 2002 6 30 12 31 7 2,768,544 3,140,926 8 29,054,561 40,313,774 9 11,815,996 10,566,353 11 10,007,641 9,052,657 12 4,344,697

More information

Microsoft Word - 發布版---規範_全文_.doc

Microsoft Word - 發布版---規範_全文_.doc 建 築 物 無 障 礙 設 施 設 計 規 範 內 政 部 97 年 4 年 10 日 台 內 營 字 第 0970802190 號 令 訂 定, 自 97 年 7 月 1 日 生 效 內 政 部 97 年 12 年 19 日 台 內 營 字 第 0970809360 號 令 修 正 內 政 部 101 年 11 年 16 日 台 內 營 字 第 1010810415 號 令 修 正 目 錄 第 一

More information

概 述 随 着 中 国 高 等 教 育 数 量 扩 张 目 标 的 逐 步 实 现, 提 高 教 育 质 量 的 重 要 性 日 益 凸 显 发 布 高 校 毕 业 生 就 业 质 量 年 度 报 告, 是 高 等 学 校 建 立 健 全 就 业 状 况 反 馈 机 制 引 导 高 校 优 化 招

概 述 随 着 中 国 高 等 教 育 数 量 扩 张 目 标 的 逐 步 实 现, 提 高 教 育 质 量 的 重 要 性 日 益 凸 显 发 布 高 校 毕 业 生 就 业 质 量 年 度 报 告, 是 高 等 学 校 建 立 健 全 就 业 状 况 反 馈 机 制 引 导 高 校 优 化 招 I 概 述 随 着 中 国 高 等 教 育 数 量 扩 张 目 标 的 逐 步 实 现, 提 高 教 育 质 量 的 重 要 性 日 益 凸 显 发 布 高 校 毕 业 生 就 业 质 量 年 度 报 告, 是 高 等 学 校 建 立 健 全 就 业 状 况 反 馈 机 制 引 导 高 校 优 化 招 生 和 专 业 结 构 改 进 人 才 培 养 模 式 及 时 回 应 社 会 关 切 的 一 项

More information

鱼类丰产养殖技术(二).doc

鱼类丰产养殖技术(二).doc ...1...1...4...15...18...19...24...26...31...35...39...48...57...60...62...66...68...72 I ...73...88...91...92... 100... 104... 144... 146... 146... 147... 148... 148... 148... 149... 149... 150... 151...

More information

疾病诊治实务(一)

疾病诊治实务(一) ...1...4...5...8...13...14...15...18...18...19...22...25...26...27...29...30...32...35 I ...38...42...43...45...48...51...53...56...59...60...60...61...63...65...67...69...72...74...77...80...82...84 II

More information

名人养生.doc

名人养生.doc I...1...3...4...6... 11...14...18...22...26...29...31...38...45...49...56...57...59...61...67 ...72...73...75...77...80...83...85...91...92...93...95...96...97... 103... 107... 109... 110... 112... 118...

More information

<4D6963726F736F667420576F7264202D2040B9C5B871A661B0CFABC8AE61C2A7AB55ACE3A8735FA7F5ABD8BFB3B9C5B871A661B0CFABC8AE61C2A7AB55ACE3A8732E646F63>

<4D6963726F736F667420576F7264202D2040B9C5B871A661B0CFABC8AE61C2A7AB55ACE3A8735FA7F5ABD8BFB3B9C5B871A661B0CFABC8AE61C2A7AB55ACE3A8732E646F63> 嘉 義 地 區 客 家 禮 俗 研 究 第 一 章 前 言 嘉 義 地 區 的 客 家 族 群 約 略 可 分 為 福 佬 客 詔 安 客 與 北 部 客 等 三 種 類 別, 其 分 佈 區 域 以 海 線 地 區 平 原 地 形 沿 山 地 區 為 主 有 相 當 多 的 北 部 客 家 人, 是 二 次 大 戰 末 期 和 戰 後 初 期 才 移 民 嘉 義, 是 什 麼 因 素 令 許 多

More information

05301930

05301930 國 立 中 正 大 學 法 學 系 碩 士 論 文 河 川 砂 石 法 規 範 之 探 討 - 以 採 取 土 石 及 挖 掘 河 川 認 定 基 準 為 主 指 導 教 授 : 盧 映 潔 博 士 研 究 生 : 王 瑞 德 中 華 民 國 一 百 零 一 年 五 月 目 錄 第 一 章 緒 論... 1 第 一 節 研 究 動 機... 1 第 二 節 研 究 目 的... 3 第 三 節 研

More information

中老年保健必读(十).doc

中老年保健必读(十).doc ...1...2...3...4...5...6...8...9... 11 - -...13...15...17...18...20...22...23...25...26...28 I II...30...32...34...35...38...40...42...44...46...47...48...50...52...53 X...55...56...57...58...60...61...63...65

More information

23 29 15.6% 23 29 26.2% 3 25 2 15 1 5 1,542 12,336 14,53 16,165 18,934 22,698 25,125 25 2 15 1 5 5,557 7,48 8,877 11, 13,732 17,283 22,485 23 24 25 26

23 29 15.6% 23 29 26.2% 3 25 2 15 1 5 1,542 12,336 14,53 16,165 18,934 22,698 25,125 25 2 15 1 5 5,557 7,48 8,877 11, 13,732 17,283 22,485 23 24 25 26 4, 197823 2916.3%29 335, 23 29.5% 23 29 16.3% 14 35 33,535 14 135 13 125 1,292 1,3 1,38 1,314 1,321 1,328 1,335 3 25 2 15 1 5 1. 1.1 13,582 15,988 1.4 18,322 11.6 11.9 21,192 24,953 3,67 9. 8.7 12 1 8

More information

海淀区、房山区(四)

海淀区、房山区(四) ...1...1...2...7...8...9... 11... 15... 17... 17... 18... 19... 20... 21... 23... 25... 28... 31... 32 I ... 35... 36... 37... 39... 42... 43... 48... 53... 54... 58... 63... 64... 65... 66... 68... 71...

More information

穨ecr1_c.PDF

穨ecr1_c.PDF i ii iii iv 1 2 3 4 5 5555522 6664422 77722 6 7 8 9 10 11 22266 12833 1894 12 13 14 15 16 17 18 19 20 21 22 23 24 25 8.14 2.15 2.18 26 27 28 29 30 31 2.16 2.18 5.23 32 33 34 35 36 37 38 39 40 41 42 43

More information

穨2005_-c.PDF

穨2005_-c.PDF 2005 10 1 1 1 2 2 3 5 4 6 2 7 3 11 4 1 13 2 13 3 14 4 14 5 15 6 16 7 16 8 17 9 18 10 18 2005 10 1 1. 1.1 2 1.2 / / 1.3 69(2) 70(2) 1.4 1.5 1.6 2005 10 1 2. 2.1 2.2 485 20(8) (a) (i) (ii) (iii) (iv) 571

More information

北京理工大学.doc

北京理工大学.doc ( )...1...6...8...10...20...22...24...28...30...32...40 I ...53...55...61 ( )...62...71...74 ( )...77...81...84...86...88...89...91...92...96...99... 110...111... 112 II ... 113... 114... 115... 116...

More information

尲㐵.⸮⸮⸮⸮⸮

尲㐵.⸮⸮⸮⸮⸮ I...1...2...3...4...5...6...8...9...10... 11...12...13...14...15...16...17...18...19...20...21...22...23...24...26 II...27...28...28...29...30...31...32...34...35...36...37...38...39...39...40...41...43...43...44...45...46...47...48...48...49...50

More information

东城区(下)

东城区(下) ...1...1...2...3...9...9... 12... 12... 17... 17... 18... 19... 20... 29... 31... 37... 41... 70... 73 I ... 74... 78... 78... 79... 80... 85... 86... 88... 90... 90... 90... 92... 93... 95... 95... 96...

More information

果树高产栽培技术(一).doc

果树高产栽培技术(一).doc ( ) ...1...1...3...10... 11...12...15...17...18...19...20...22...23...24...26...27...28...30...31...32 I ...36...38...40...41...42...44...45...47...48...49...50...51...52...53...55...58...59...60...61...62...66...67

More information

物质结构_二_.doc

物质结构_二_.doc I...1...3...6...8 --... 11 --...12 --...13 --...15 --...16 --...18 --...19 --...20 --...22 --...24 --...25 --...26 --...28 --...30 --...32 --...34 --...35 --...37 --...38...40 II...41...44...46...47...48...49...51...52...55...58

More information

第一節 研究動機與目的

第一節 研究動機與目的 中 國 文 化 大 學 中 國 文 學 研 究 所 碩 士 論 文 華 嚴 一 真 法 界 思 想 研 究 指 導 教 授 : 王 俊 彥 研 究 生 : 許 瑞 菁 中 華 民 國 98 年 12 月 自 序 在 佛 教 經 典 中 最 初 接 觸 的 是 佛 說 無 量 壽 經, 此 經 乃 大 方 廣 佛 華 嚴 經 的 精 華 版 綱 要 版 為 了 瞭 解 經 義, 深 知 宇 宙 運

More information

水力发电(九)

水力发电(九) ...1...17...20...26...27...30...33...34...36...37...44...47...49...58...77...79...90...96...107 I ...114...115...132...134...137...138...139...140...142...142...144...146...146...146...148...148...149...149...150...151...151...152

More information

中国古代文学家(八).doc

中国古代文学家(八).doc ...1...5...26...27...43...44...48...50...52...54...55...57...60...61...62...63...65...67...68 I ...69...70...71...75...77...78...82...84...95...98...99... 101... 103... 107... 108... 109... 110...111...

More information

景观植物(一)

景观植物(一) ...1...5...6...8... 11...13...15...18...21...23...26...29...43...51 5...53...58...62...63...65 I ...67...70...72...74...76...77...78...80...81...84...85...87...88...90...92...94...97... 109... 113... 115...

More information

Microsoft Word - 目录.doc

Microsoft Word - 目录.doc 教 学 管 理 文 件 汇 编 目 录 教 育 法 规 和 指 导 性 文 件 1. 中 华 人 民 共 和 国 高 等 教 育 法 1 2. 中 华 人 民 共 和 国 教 师 法 8 3. 普 通 高 等 学 校 学 生 管 理 规 定 12 4. 高 等 学 校 学 生 行 为 准 则 18 5. 中 华 人 民 共 和 国 学 位 条 例 19 6. 高 等 学 校 教 学 管 理 要 点

More information

园林植物卷(三).doc

园林植物卷(三).doc I II III IV 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 84k 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65

More information

厨房小知识_一_

厨房小知识_一_ ... 1... 1... 2... 3... 3... 5... 6... 7... 7... 8... 10...11... 12... 13... 15... 17... 18... 19... 19... 20... 23... 24... 24 ... 26... 26... 29... 30... 31... 32... 33... 34... 37... 38... 40... 41...

More information

中南财经大学(七).doc

中南财经大学(七).doc ...1...16...20...22...31...32...34...37...38...40...44...46...54...58...59...60...61 I ...62...63...70...77...79...81...84...90...93...95...95...97... 100... 102... 104... 105... 106... 107... 109... 113

More information

1................................... 1................................... 2......................................... 3......................................... 4.............................. 5.........................................

More information

赵飞燕外传、四美艳史演义

赵飞燕外传、四美艳史演义 \ I... 1...1...8... 9... 9...9...11...13...16...19...22...25...28...33...36...39...42 II...46...48...51...55...58...62... 67...67...70...73...76...79...83...86...89...92...96...99... 102... 105... 108...

More information

厨房小知识(五)

厨房小知识(五) I...1...2...3...4...5...6 ()...7 ()...9...10...10... 11...12...13...14...15...15...16...18...19...20...20...21...21 II...24...27...28...29...29...31...32...33...34...35...36...38...38...39...40...40...41...42...42...43...44...44...47...48...50...50

More information

最新监察执法全书(十八).doc

最新监察执法全书(十八).doc .............. I ..................................................... II .......................................... III ... 2003......... IV ,

More information

园林植物卷(十二).doc

园林植物卷(十二).doc ... 1... 4... 8... 8... 9... 9...11... 13... 15... 20... 23... 30... 31... 36... 39... 40... 43 I ... 47... 52... 57... 60 1... 65 2... 71 (3)... 78... 81... 87... 89... 91... 94... 95... 97 ( )... 100...

More information

华东师范大学.doc

华东师范大学.doc ...1...3...4...5...6...7 ( )...9 ( )...10...16...19...21...22...23...27...27...31...31 I II...33...34 ( )...36 () ( )...44 () ( ) ( )...49 ( )...54...56...60 ( )...64...70...81...89 2004...95...97...99...

More information

國立中山大學學位論文典藏

國立中山大學學位論文典藏 I...1...1...4...4...6...6...13...24...29...44...44...45...46...47...48...50...50...56...60...64...68...73...73...85...92...99...105...113...121...127 ...127...131...135...142...145...148 II III IV 1 2

More information

乳业竞争_一_

乳业竞争_一_ ...1...7...10... 11...14...17...18...19...21...23...25...26...28 50...30...31 48...31 3000...34...35...37 I ...40...44...45...48...50...51...55...56...58...58...60 ()...62 ()...66...71...72...72...73...76...77

More information

最新执法工作手册(十).doc

最新执法工作手册(十).doc ......................................... I ......... 2003....................................... II III............................................................ IV..............................................................

More information

untitled

untitled ...1 1...1...3...5...6...8...8...15...16...19 21...21...24...25...26...29...30...33...36...38...41...41 ( )...41...42...48...48...57...57...63...67...67...67...67...71...74 I ...76...76...79...81...82...82...83...83...83...84...84...85...85...85

More information

最新执法工作手册(十六)

最新执法工作手册(十六) ............................................. I ................................... II ........................... 2001......... III IV......................................... ........................

More information

中国政法大学(六).doc

中国政法大学(六).doc ...1...6...8 2004... 11...15 2003...16...20...29...32...34...38...39...42...43...44...48 I ...53...58...61...63...71...75...77...79...83...91...94...95...98... 100... 102... 102... 105... 106... 107...

More information

胎儿健康成长.doc

胎儿健康成长.doc ...1...2...5...6...7...8...9... 11...13...15...16...17...19...22...22...23...24...25 I II...26...27...30...31...32...33...36...38...38...39...40...43...44...46...46...47...48...50...52...54...55...59 ...62

More information

第三章

第三章 第 三 章 :2017 年 行 政 長 官 產 生 辦 法 - 可 考 慮 的 議 題 行 政 長 官 的 憲 制 及 法 律 地 位 3.01 基 本 法 第 四 十 三 條 規 定 : 香 港 特 別 行 政 區 行 政 長 官 是 香 港 特 別 行 政 區 的 首 長, 代 表 香 港 特 別 行 政 區 香 港 特 別 行 政 區 行 政 長 官 依 照 本 法 的 規 定 對 中 央 人

More information

nb.PDF

nb.PDF 3 4 5 7 8 9..10..15..16..19..52 -3,402,247-699,783-1,611,620 1,790,627 : - - -7,493 - -1,687 2,863 1,176 2,863 - -148,617 - - 12,131 51,325 - -12,131-2,165 14-2,157 8-3,393,968-794,198-1,620,094 1,781,367

More information

1. 本文首段的主要作用是 A. 指出 異蛇 的藥用功效 說明 永之人爭奔走焉 的原因 B. 突出 異蛇 的毒性 為下文 幾死者數矣 作鋪墊 C. 交代以蛇賦稅的背景 引起下文蔣氏有關捕蛇的敘述 2. 本文首段從三方面突出蛇的 異 下列哪一項不屬其中之一 A. 顏色之異 B. 動作之異 C. 毒性之

1. 本文首段的主要作用是 A. 指出 異蛇 的藥用功效 說明 永之人爭奔走焉 的原因 B. 突出 異蛇 的毒性 為下文 幾死者數矣 作鋪墊 C. 交代以蛇賦稅的背景 引起下文蔣氏有關捕蛇的敘述 2. 本文首段從三方面突出蛇的 異 下列哪一項不屬其中之一 A. 顏色之異 B. 動作之異 C. 毒性之 1. 本文首段的主要作用是 A. 指出 異蛇 的藥用功效 說明 永之人爭奔走焉 的原因 B. 突出 異蛇 的毒性 為下文 幾死者數矣 作鋪墊 C. 交代以蛇賦稅的背景 引起下文蔣氏有關捕蛇的敘述 2. 本文首段從三方面突出蛇的 異 下列哪一項不屬其中之一 A. 顏色之異 B. 動作之異 C. 毒性之異 3. 太醫以王命聚之 中的 以 字與下列哪一項的 以 意思相同 A. 以齧人 B. 而吾以捕蛇獨存

More information

Microsoft Word - edu-re~1.doc

Microsoft Word - edu-re~1.doc 前 言 學 習, 可 以 為 個 創 造 未 來 ; 教 育, 能 夠 為 社 會 開 拓 明 對 個 而 言, 教 育 可 以 幫 助 每 個 發 展 潛 能 建 構 知 識 及 提 升 個 素 質 ; 它 賦 予 每 個 掌 握 前 途 和 開 拓 未 來 的 能 力 對 社 會 而 言, 教 育 不 單 可 以 培 育 才, 而 且 具 有 ㆒ 個 更 深 層 的 意 義, 它 給 予 社 會

More information

婴幼儿教育(三).doc

婴幼儿教育(三).doc ...1...2...10...16...18...20...22...23...25...30...36...38...39...40 4...41 Easy...45...46...50 I ...60...64...68...73...75...79...83...85 ANGELA...87...90...93...95...98... 101... 105... 117... 120...

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

广西师范学院(下)

广西师范学院(下) 3888.00 ( 16.00 ) ...1 ()...1...4... 11...14...15...17...32...43...44...46...47...58...59...60...62 I II...63...64...65...69...72...73...74...76...81...83...84 ( )...85...90 ( )...96... 102... 107...111...

More information

Ⅰ Ⅱ Ⅲ Ⅳ

Ⅰ Ⅱ Ⅲ Ⅳ Ⅰ Ⅱ Ⅲ Ⅳ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

More information

****************************************************** Fundamentals of TV Tracking ****************************************************** ( ),,, :,,,,,, 1998 9 ( ISBN 7-118-01911-9),,, 1999 5 20 Email:

More information

Ⅰ Ⅱ1 2 Ⅲ Ⅳ

Ⅰ Ⅱ1 2 Ⅲ Ⅳ Ⅰ Ⅱ1 2 Ⅲ Ⅳ 1 1 2 3 2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 ~ 22 23 24 25 26 27 28 29 30 31 32 ~ 34 35 36 37 38 39 40 41 42 43 44 45 ~ 46 47 ~ ~ 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63

More information

Ⅰ Ⅱ1 2 3 Ⅲ Ⅳ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

More information

Ⅰ Ⅱ1 2 Ⅲ Ⅳ

Ⅰ Ⅱ1 2 Ⅲ Ⅳ Ⅰ Ⅱ1 2 Ⅲ Ⅳ 1 2 1

More information

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Map data @ Google Reproducible research in Madagascar How to conduct a successful installation

More information

Table of Contents

Table of Contents 中國人史綱 提要 柏楊的 中國人史綱 是他十年牢獄生活的血淚之作 在極端惡劣的 環境下 從卷帙浩繁的中國史冊中寫成 史綱 除了大脈絡 更重要的 是大關節的操持 這要有史識 柏楊顯然有他紮實的史料工夫 整體的掌 握應不成問題 他以一百年為 一世紀 作為敘述單元 先把中國史分成 非信史與信史 前者從神話 傳說到半信史時代 後者從紀元前九世紀開 始說起 一章一世紀以迄於晚清 這個大脈絡很清楚 而既稱 史之綱要

More information

untitled

untitled .Net ADF ArcGIS Server ESRI ( ) .NET (ADF.NET) ADF.NET Web Controls Demo .NET (ADF.NET) ADF.NET ArcGIS Web C# and VB.NET Web Server Page Layout, Map, TOC, Overview Map ArcGIS Server.NET ? GIS web ArcGIS

More information

05 調 查 SURVEY 根 據 這 個 模 型, 易 普 索 (Ipsos) 針 對 中 國 1-3 線 城 市 4000 名 20-44 歲 女 性 受 訪 者 進 行 了 奢 侈 品 牌 消 費 調 查 我 們 的 研 究 發 現, 表 現 個 人 品 位 彰 顯 身 份 地 位 確 保 生

05 調 查 SURVEY 根 據 這 個 模 型, 易 普 索 (Ipsos) 針 對 中 國 1-3 線 城 市 4000 名 20-44 歲 女 性 受 訪 者 進 行 了 奢 侈 品 牌 消 費 調 查 我 們 的 研 究 發 現, 表 現 個 人 品 位 彰 顯 身 份 地 位 確 保 生 調 查 SURVEY 04 美 國 華 爾 街 日 報 報 導 稱, 隨 著 中 國 經 濟 的 快 速 發 展, 中 國 女 企 業 家 逐 步 崛 起 成 為 新 的 資 深 服 飾 市 場 的 主 要 消 費 者 隨 著 越 來 越 多 的 奢 侈 品 牌 將 目 光 轉 向 這 一 群 體, 中 國 高 收 入 女 性 開 始 藉 著 購 買 奢 侈 品 來 擺 闊 如 今, 中 國 女 性

More information

2017 CCAFL Chinese in Context

2017 CCAFL Chinese in Context Student/Registration Number Centre Number 2017 PUBLIC EXAMINATION Chinese in Context Reading Time: 10 minutes Working Time: 2 hours and 30 minutes You have 10 minutes to read all the papers and to familiarise

More information

2015 Chinese FL Written examination

2015 Chinese FL Written examination Victorian Certificate of Education 2015 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER CHINESE FIRST LANGUAGE Written examination Monday 16 November 2015 Reading time: 11.45 am to 12.00

More information

(1) (2) (3) 2016 2016 12 316,900 2014 2015 14 23 1,3003,200 2016 2016 4 282016 2016 2

(1) (2) (3) 2016 2016 12 316,900 2014 2015 14 23 1,3003,200 2016 2016 4 282016 2016 2 14.58(1) Note 5 to 13.52 13A.51 00670 2016 2016 4 282016 2016 14A 25% 2016 2016 (a) 14A (b)14 19A.39A 2016 2016 5 20 1 (1) (2) (3) 2016 2016 12 316,900 2014 2015 14 23 1,3003,200 2016 2016 4 282016 2016

More information

HTML5 & CSS3 色彩 背景與漸層屬性 12-1 (color property) CSS 3 color HTML opacity HTML CSS Color Module Level 3 W3C CSS

HTML5 & CSS3 色彩 背景與漸層屬性 12-1 (color property) CSS 3 color HTML opacity HTML CSS Color Module Level 3 W3C CSS 12 Chapter 12-1 12-2 12-3 HTML5 & CSS3 色彩 背景與漸層屬性 12-1 (color property) CSS 3 color HTML opacity HTML CSS Color Module Level 3 W3C CSS 3 http://www.w3.org/tr/css3-color/ 12-1-1 color ( ) (foreground color)

More information

通州区、密云县、大兴区(一)

通州区、密云县、大兴区(一) ...1...1... 32... 34... 37... 41... 46... 47... 49... 52... 54... 55... 60... 62... 63... 66... 72... 72... 74 I ... 78... 80... 85... 86... 87... 88... 91... 96... 99... 99... 106...113...115...115...119...

More information

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 2 3 4 2 3 4 5 7 8 9 10

More information

(1) 64 15 2062 50 8 818 60 41606 63 8305 53 3 11201 38 10 216C 2012815 2012815 2012815 2012815 2012815 201464 200211 20128 20128 20128 20128 20146 4 2

(1) 64 15 2062 50 8 818 60 41606 63 8305 53 3 11201 38 10 216C 2012815 2012815 2012815 2012815 2012815 201464 200211 20128 20128 20128 20128 20146 4 2 (1) 51 41 49 6 6 7 161 4 27 338 2012815 2012815 2012815 200712 20093 20086 211 (1) 64 15 2062 50 8 818 60 41606 63 8305 53 3 11201 38 10 216C 2012815 2012815 2012815 2012815 2012815 201464 200211 20128

More information

大漠 伪前端, 就职于淘宝

大漠 伪前端, 就职于淘宝 CSS Grid Layout 2016-12-17 @ 大漠. #CSSConf https://www.flickr.com/photos/19139526@n00/8331063530/ 大漠 伪前端, 就职于淘宝 古老的 table 布局 现代 Web 布局 Float inline-block display: table position (absolute 或 relative)

More information

States and capital package

States and capital package : 1 Students are required to know 50 states and capitals and their geological locations. This is an independent working packet to learn about 50 states and capital. Students are asked to fulfill 4 activities

More information

军事十万个为什么 兵书集粹

军事十万个为什么  兵书集粹 (CIP) /.- : 2002.7 ( ) ISBN7-80641-482-7 Ⅰ. Ⅱ.1 2 Ⅲ. - - Ⅳ.E89 CIP (2001)077248 : ( : 66 :0371 5751257 :450002) : : :890mm 1240mm A5 :12.25 :1 :278 :20027 1 :1-3000 :20027 1 :ISBN7-80641-482-7/E 017 :22.00

More information

Epson

Epson WH / MS CMP0087-00 TC WH/MS EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Corporation Microsoft and Windows are registered trademarks of Microsoft Corporation. Mac and Mac OS are registered trademarks

More information

Microsoft Word - 001.pdf.doc

Microsoft Word - 001.pdf.doc 閱 讀 理 解 和 寫 作 內 容 1. 閱 讀 理 解 與 寫 作 教 學 策 略 一 覽 表 1 2. 詞 語 5 教 學 策 略 5 認 識 詞 語 類 別 6 名 詞 7 動 詞 18 形 容 詞 35 副 詞 45 量 詞 51 理 解 抽 象 詞 語 56 書 面 語 58 詞 語 遊 戲 63 3. 句 子 69 教 學 策 略 69 句 子 結 構 70 擴 張 句 子 79 香 港

More information

Front 2 Polar F11 ( ) : Polar F11 Polar F11 Polar F11 Polar (Keeps U Fit - Own Workout Program) Polar Polar F11 Polar F11 Polar F11 Polar (

Front 2 Polar F11 ( ) : Polar F11 Polar F11 Polar F11 Polar (Keeps U Fit - Own Workout Program) Polar Polar F11 Polar F11 Polar F11 Polar ( Front 1 - Polar F11 Light OK Back Front 2 Polar F11 ( ) : Polar F11 Polar F11 Polar F11 Polar (Keeps U Fit - Own Workout Program) Polar Polar F11 Polar F11 Polar F11 Polar (www.polarfitnesstrainer.com)

More information

國立暨南國際大學圖書館

國立暨南國際大學圖書館 國 立 暨 南 國 際 大 學 圖 書 館 學 位 論 文 繳 交 注 意 事 項 本 校 畢 業 生 辦 理 畢 業 離 校 手 續 須 完 成 圖 書 館 相 關 作 業 程 序, 請 參 見 以 下 說 明 壹 離 校 程 序 說 明 01 貳 繳 交 論 文 說 明 03 參 轉 檔 注 意 事 項 及 操 作 09 肆 上 傳 檔 案 注 意 事 項 及 操 作 16 伍 紙 本 論 文

More information

pair path pair path numeric sind cosd pair color beginfig(0) u := 2cm ; pair a ; draw ( 0u, 0u ) -- ( u, u ) ; draw ( u, 0u ) -- ( 0u, 1u ) ;

pair path pair path numeric sind cosd pair color beginfig(0) u := 2cm ; pair a ; draw ( 0u, 0u ) -- ( u, u ) ; draw ( u, 0u ) -- ( 0u, 1u ) ; 12 22 METAPOST 1 METAPOST ps TEX METAPOST 1. METAPOST 2. METAPOST mpost.exe 3. TEX dvi ps pdf [1] METAPOST beginfig(0) path pp ; u := 2cm ; Angle := 10 ; n = 360 / Angle ; pp := (-u,-u )--(-u,u )--(u,u

More information

:5-6

:5-6 License Agreement for Bible Texts These Scriptures: May not be altered or modified in any form. They must remain in their original context. May not be sold or offered for sale in any form. May not be used

More information

Contents 1 深 圳 大 学 经 济 学 院 学 生 代 表 大 会 章 程 2 2 优 秀 毕 业 生 评 选 细 则 7 3 议 事 规 则 8 i

Contents 1 深 圳 大 学 经 济 学 院 学 生 代 表 大 会 章 程 2 2 优 秀 毕 业 生 评 选 细 则 7 3 议 事 规 则 8 i 深 圳 大 学 经 济 学 院 学 代 委 执 事 指 南 发 布 0.0.1 深 圳 大 学 经 济 学 院 学 代 委 2016 年 05 月 25 日 Contents 1 深 圳 大 学 经 济 学 院 学 生 代 表 大 会 章 程 2 2 优 秀 毕 业 生 评 选 细 则 7 3 议 事 规 则 8 i ii 深 圳 大 学 经 济 学 院 学 代 委 执 事 指 南, 发 布 0.0.1

More information

<4D F736F F F696E74202D2034B0D3AD5E2DC2B2B3F8A7DEA5A92E BACDBAE65BCD2A6A15D>

<4D F736F F F696E74202D2034B0D3AD5E2DC2B2B3F8A7DEA5A92E BACDBAE65BCD2A6A15D> Business English The Presentation Skill Instructor: Prof. Li-Hua LI ( 李麗華教授 ) Information Management Department Chaoyang University of Technology 簡報技巧 - 李麗華 Outline Business Presentation is a MUST Keys

More information