文字
連結
Extra
Math
html
段落
粗體
<h1>標題</h1> <p title = "xxx">段落</p> <p><b>粗體</b></p>
h1~6 big to small, title optional
<ul> <li class = "fragment">一行</li> <li class = "fragment">一行</li> <li class = "fragment">顯示</li> </ul>
<div class="theorem"> <div class="label">定理</div> XXX<hr> <b>OOOOOOO</b><br> <ul> <li class="fragment">一樣可以插動畫</li> </ul> </div>
html
<img src = "xxx.jpg" width = "xxx" height= "xxx">
width, height optional
<a href="http://www.google.com">Google</a>
<section data-background = "xxx.jpg">
<section data-background = "#071220">
grow
shrink
fade-out
visible only once
blue only once
highlight-red
highlight-green
highlight-blue
<p class="fragment grow">grow</p> "fragment shrink" "fragment fade-out" "fragment current-visible" "fragment highlight-current-blue" "fragment highlight-red" data-fragment-index = "1" "fragment highlight-green" data-fragment-index = "3" "fragment highlight-blue" data-fragment-index = "2"
#include<bits/stdc++.h>
<mark>123</mark> <pre><code data-trim data-noescape> <mark>#include<bits/stdc++.h></mark> </code></pre>
更改整份動畫:更改最下面Reveal.Initialize裡的transition 更改一頁:section data-transition = "slide"
其他主題Black (default) - White - League - Sky - Beige - Simple Serif - Blood - Night - Moon - Solarized
前面有一行 <link rel="stylesheet" href="css/theme/black.css" id="theme">
可以 像這樣顯示
<p> <span class = "fragment">可以</span> <span class = "fragment">像這樣</span><br> <span class = "fragment">顯示</span><br> </p>
<section data-background = "balloon.jpg" data-background-transition = "zoom">
<h1>列表</h1> <ul> <li>第一項</li> <li>第二項</li> <li>第三項</li> </ul>
<h1>列表</h1> <ol> <li>第一項</li> <li>第二項</li> <li>第三項</li> </ol>
<table> <thead> <tr> <th>隊伍</th> <th>隊員一</th> <th>隊員二</th> <th>隊員三</th> </tr> </thead> <tbody> <tr> <td>fruit</td> <td>apple</td> <td>banana</td> <td>watermelon</td> </tr> <tr> <td>station</td> <td>Taipei</td> <td>Hsinchu</td> <td>Kaohsiung</td> </tr> <tr> <td>DJY:GOGO</td> <td>a</td> <td>b</td> <td>c</td> </tr> </tbody> </table>
Markdown
你可以像這樣編輯
直接換行
apple
apple
apple
你可以像這樣編輯 直接換行 // 中間空一行 apple *apple* // 斜體 **apple** // 粗體
大標題 ===== 小標題 -----
# This is H1 ## This is H2 ###### This is H6
可以有層次
顯示
像這樣
第二層
> 可以有層次 > > > 顯示 > > > > 像這樣 > > > 第二層 >
* ##章節1 - 小章節 * 章節二 - 小章節
##副標題可以編號 * 標題 1. 副標 2. 副標
Markdown
這是一個Goolge的連結
這是一個[Goolge](http://www.google.com.tw)的連結
##這是從圖片連結到Google [![](balloon.jpg "放在圖片顯示的字")](http://www.google.com.tw)
頁碼 Reveal.initialize({ ... slideNumber : true, // or slideNumber : c/t, })