- Interactive keynote generator with python support
- Write your keynote in MD format build it
- Currently supports HCIL theme
git clone https://github.com/SNU-HCIL/2020-Fall-DCCP.git
cd 2020-Fall-DCCP/template
npm i
npm run dev
Your markdown file myPresentation.md
should be located in public/md
, and generated presentation can be accessed at http://localhost:5000/myPresentation
.
npm run build
Currently follows the functionalities provided by grab/remark wiki. This document only explains basic features, which can be used without shortage while making your presentation.
A line containing three dashes represents a slide separator. To make incremental slides, where succeeding slides inherits elements from the previous one, use two dashes.
<!-- Slide separator -->
# Slide one
blablabla
---
# Slide two
blablabla
<!-- Incremental Slide separator -->
# Silde Title
- content 1
--
- content 2
--
- content 3
Sometimes you may want to use default template for repeating contents. By setting layout: true
, you can make it.
When set to false, reverts to using no default template.
layout: true
#### Template subtitle
---
# Slide 1
---
# Slide 2
<!-- both Slide 1 & 2 will contain "Template subtitle" -->
To designate specific slides as a template, simply use the template
identifier.
name: template-slide
Some content.
---
template: template-slide
Content appended to template-slide's content.
Three sizes of titles are available, and subtitles can be used using ####.
# Your Title (Big)
# Your Title (Medium)
# Your Title (Small)
#### Your Subtitle
Built-in slide classes include left
, center
, right
(horizontal alignment), top
, middle
and bottom
(vertical alignment), which may be used to align entire slides.
class: left, middle
# Left / Middle Aligned Title
---
class: center, middle
# Center / Middle Aligned Title
Able to use markdown image inserting syntax:
![IMAGE](./path/to/your/image.png)
But recommend using <img/>
tag. Set the size of the image using the width=n%
or width=n px
attribute syntax
<img src="./path/to/your/image.png" width="50%" />
Embed YouTube video using <iframe/>
tag.
class: middle, center
### Video example from YouTube
<iframe width="560" height="315" src="https://www.youtube.com/embed/5eLcHJLDlI8" frameborder="0" allow="encrypted-media" allowfullscreen></iframe>
Just insert python code as usual... the program will automatically generate run / visualize functionalities.
#### Python Code ```python def add(a,b) a + b end ```
Supports multi-column layout:
.row[
.col-6[
left-column content
]
.col-6[
right-column content
]
]
In each row, the sum of column # should be 12. For example, you can make three columns with 2:1:1 ratio as follows:
.row[
.col-6[
first-column content
]
.col-3[
second-column content
]
.col-3[
third-column content
]
]
Write code without Indentation!! Otherwise, markdown parser cannot parse your code
A (very crude) way of printing the slides is:
- Open in Firefox/Chrome
- Resize the window to make the slides fill the full width of the window. (This means that there is at least a little bit of space at the top and bottom of the slides.)
- Print to file (tip: choose a custom paper size with a 4:3 ratio)
Special Thanks to sveltejs/svelte, grab/remark