You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+41Lines changed: 41 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,3 +95,44 @@ moveit_tutorials/doc/
95
95
├── <tutorial_name>_tutorial_test.py # Python tests for tutorial
96
96
└── <tutorial_name>_tutorial_test.cpp # C++ tests for tutorial
97
97
```
98
+
99
+
### Including Images and Videos
100
+
#### Images
101
+
The standard way to include an image in reStructuredText is
102
+
```
103
+
.. image:: filename.png
104
+
:width: 700px
105
+
```
106
+
107
+
This assumes that `filename.png` is in the same folder as the source `.rst` file. Images linked in this way will automatically be copied to the appropriate folder in the build.
Do **not** include animated gifs as the file format leads to very large files. Use a video format like `webm` and see the section on local video below.
112
+
113
+
#### YouTube and other External Video
114
+
You can embed video with raw html, like in this example from the Pick and Place Tutorial.
0 commit comments