blob: 9cf8c5790edcda2cc32de159248772d2e413e37b (
plain)
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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
==============================
Images Test for Slides Writers
==============================
:author: Au Thor
:date: January 1, 2525
:organization: Cu U
Slide 1
=======
Left-aligned image.
.. image:: test.png
:align: left
:height: 5cm
:width: 5cm
:alt: Test Image
Slide 2
=======
Right-aligned image.
.. image:: test.png
:align: right
:height: 5cm
:width: 5cm
:alt: Test Image
Slide 3
=======
Center-aligned image.
.. image:: test.png
:align: right
:height: 5cm
:width: 5cm
:alt: Test Image
Slide 4
=======
Center-aligned image with caption and legend.
.. figure:: test.png
:align: right
:height: 5cm
:width: 5cm
:alt: Test Image
Caption for Test Figure
Legend for Test Figure.
Slide 5
=======
Two images in a table.
.. list-table::
* + .. image:: test.png
:width: 90%
+ .. image:: test.png
:width: 90%
Slide 6
=======
A figure and a list in a table.
.. list-table::
* + .. image:: test.png
:width: 90%
+ First info
with some details
with some details
with some details
Second info
with some details
with some details
with some details
Third info
with some details
with some details
with some details
|