Skip to content

Latest commit

 

History

History
131 lines (86 loc) · 1.61 KB

rst.rst

File metadata and controls

131 lines (86 loc) · 1.61 KB

reStructuredText

References

http:https://docutils.sourceforge.net/docs/user/rst/quickref.html

Commands

  • rst2html
  • rst2latex
  • rst2odt

Headings

Heading1

Heading2

Heading 3

Heading 4

Formats

italic - emphasis

bold - strong emphasis

interpretet

code - inline literal

Links

Publication [1], [2]

[1]Ghahramani, Zoubin, Matthew J Beal, Gatsby Computational, and Neuroscience Unit. “Variational Inference for Bayesian Mixtures of Factor Analysers.” NIPS, 1999. Link
[2]Publication 2

External link to Google

External link to Google

Internal link like here

Here is the internally referenced text

Heading1 is an implicit reference

Downloadable file :download:`here <rst.rst>`

Lists

  • Enum1
  • Enum2 Description Enum2
  • Enum1
  • Enum2
  • Enum1
  • Enum2
  1. Item1
  2. Item2 Description Item2

Tables

Id Name Value
1 n1 1.0
2 n2 2.0
3 n3 3.0

Source code

Simple code example in Python:

print('Hello world')

Inline a = 10

def sum_values(a, b):
  a = np.random.rand(3, 4)
  return a + b

Doctest blocks

>>> a = 1
>>> b = 2
>>> c = a + b
>>> c
3

Math

Inline a=\frac{b}{c}

\alpha = e^{\frac{\beta}{\gamma}}

Comments