How to type large curly brackets in reStructuredText / Sphinx?
Thanks much!
How to type large curly brackets in reStructuredText / Sphinx?
Thanks much!
You can use the math mode, which uses LaTeX syntax, to render braces and control their size:
.. math::
\{ \big\{ \Big\{ \bigg\{ \Bigg\{
( \big( \Big( \bigg( \Bigg(
will give you something like this:
although be aware of the limitations of basic math mode: these symbols need extensions = ['sphinx.ext.pngmath']
in your conf.py
to work.