Inline equations, as for instance the classic
J'ai essayé de faire de ce slide un "titre" avec :
<!-- _class: titre -->
Image left aligned (default):
Image centered:
Image right aligned:
![width:250](logo.png)
![width:250](logo.png#left)
![width:250](logo.png#right)
![width:250](logo.png#center)
![width:100](logo.png)
![width:200](logo.png)
![width:300](logo.png)
In OCaml, for instance:
let rec fact n = n ;;
type 'a Tree = Leaf | Node of ('a Tree, 'a, 'a Tree);;
Using this Markdown code:
```ocaml
let rec fact n = n ;;
type 'a Tree = Leaf | Node of ('a Tree, 'a, 'a Tree);;
```
- One
- Two
- Three
Lists using *
should appear one at a time, in the produced HTML or PDF.
* One
* Two
* Three
Demo of using
![bg](#fff) <!-- white background: default -->
![](#000) <!-- black text: default -->
to change font color and slide background. (Marp Markdown's syntax extension)
Demo of using
![bg](black) <!-- black background: ugly -->
![](white) <!-- white text: ugly -->
to change font color and slide background. (Marp Markdown's syntax extension)
Demo of using
![bg](rgb(255,128,0)) <!-- orange background: ugly -->
![](rgb(255,255,255)) <!-- white text: ugly -->
to change font color and slide background. (Marp Markdown's syntax extension)
See https://github.com/marp-team/marpit/issues/137
Image on left side:
Image on right background side
decktape
or marp-cli
I want this header to be top aligned!
I want this header to be top aligned!
Merci de votre attention !
Left hand side
Right hand side
![bg left](logo.png)
FIXME: don't work
![bg right](logo.png)
FIXME: don't work