diff --git a/TIPS b/TIPS index 1a86077..4953cd6 100644 --- a/TIPS +++ b/TIPS @@ -111,4 +111,20 @@ Tables: "LEdoian", "young", "Python" "Knuth", "older", "CWEB (IIRC)" +Images and Figures: + - Do not use .. image::, because that makes no wrapping element, using which we could center the image + - Usage:: + + .. figure:: {static}/images/some/path.ext + :width: 100% + :alt: Hello world + + This is a caption. + - Of course, using just the path is sufficient. + +Footnotes: + This is a text with an autonumberred[#fnlabel]_ footnote. + + .. [#fnlabel] And this is the text of the footnote, whereever I place it. + `reST spec `__