Jean-François B.
Jean-François B.
TL;DR: This whole comment describes at length some pitfalls with MathJax for HTML versus unicode-math for PDF, in particular regarding Greek and more specifically boldening Greek letters. It then concludes...
I am done here. For obtaining *upright* lowercase Greek in MathJax one can use `\symrm{αβγ}` or `\mathrm{αβγ}`. It does not work with any other input form. In PDF, both do...
@oscarbenjamin Yes PR is ready for review. It went through a period of quick changes which may have discouraged review. The gist of the PR has been backported to a...
Although the unicode-math is a bit parenthetical here, I mention additional remarks, for the record. Unfortunately I see no way to use the TeX Gyre DejaVu Math font (without painful...
Yes `.rst` is [the default](https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-source_suffix). Pardon now the ignorabimus question, but where is MyST input syntax used by the way? Arrggh that was a really dumb question sorry (``$ find...
Ok, yes you can simply remove it it seems, as MyST docs says > ``extensions = ["myst_parser"]`` > This will activate the MyST Parser extension, causing all documents with the...
side note, in fact on master branch since b3d8961c, it is not `\textsf{` but `\sphinxstylethead{` hence this can be customized from the `'preamble'` key. Thus this sub-issue may be already...
@liminkai520520 it is not clear if you mean the background colour or the text colour. Anyway, you can insert commands in a redefinition of `\sphinxstylethead`. That is, starting with future...
You can try this in conf.py. ``` latex_elements = { 'passoptionstopackages': r'\PassOptionsToPackage{table}{xcolor}', 'preamble' : r'\protected\def\sphinxstylethead{\cellcolor{red}\textsf}', } ``` This does not answer directly your question because it colours the cells not...
Just to mention here that table templates were introduced at 976fc32 on master branch for Sphinx 1.6 release and will be modifiable by user (2a37b0e). This will make it easier...