summaryrefslogtreecommitdiff
path: root/docutils/docs/dev
diff options
context:
space:
mode:
authormilde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2011-04-13 22:13:55 +0000
committermilde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2011-04-13 22:13:55 +0000
commit767a676dce129fa2810c7453394c37dd0b801266 (patch)
treeddabe196faa96713041f8d574b9858fb3aa79aad /docutils/docs/dev
parent28fa4967d61bfa4838cc61ac632f3335f668cbde (diff)
downloaddocutils-767a676dce129fa2810c7453394c37dd0b801266.tar.gz
Math support update
* new version of math2html (elyxer) by Alex Fernandez (bugfixes, improved rendering) * small fixes to latex2mathml * accept Unicode characters in the input * updated test file, new test cases html_math and mathml_math git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@7008 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/docs/dev')
-rw-r--r--docutils/docs/dev/todo.txt27
1 files changed, 18 insertions, 9 deletions
diff --git a/docutils/docs/dev/todo.txt b/docutils/docs/dev/todo.txt
index 2199d4273..e46b49231 100644
--- a/docutils/docs/dev/todo.txt
+++ b/docutils/docs/dev/todo.txt
@@ -1165,15 +1165,15 @@ LaTeX math syntax
existing extensions like `latex_math`_ (LaTeX2MathML) or the `math
support in Sphinx`_ (see below for `HTML output`_).
- * The backtick cannot be used in a math role. Fortunately, in LaTeX
- math mode the ``\grave`` macro is used instead of ``\``` for the
- grave accent.
-
* Used for input and storage by the `Math support in Sphinx`_.
- * Unicode input supported by the "unicode-math" package for
+ * Unicode input similar to the "unicode-math" package for
XeTeX/LuaTeX provides for a improved readability.
+ * The backtick (GRAVE ACCENT, 0x60) cannot be used in a math role.
+ Fortunately, it is not required in LaTeX math mode, as the
+ ``\grave`` macro is used instead of ``\```.
+
ASCIIMathML_
Used, e.g., by MultiMarkdown__
@@ -2274,6 +2274,8 @@ Bug fixes
* An enumerated list in the docinfo fails (\newcounter definition inside
tabularx).
+* File names of included graphics (see also `grffile` package).
+
Generate clean and configurable LaTeX source
----------------------------------------------
@@ -2469,6 +2471,17 @@ Tables
+ use tabularx column type ``X`` and let LaTeX decide width, or
+ use tabulary_?
+ .. _tabulary:
+ http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=tabulary
+
+* From comp.text.tex (13. 4. 2011):
+
+ When using fixed width columns, you should ensure that the total
+ width does not exceed \linewidth: if the first column is p{6cm}
+ the second one should be p{\dimexpr\linewidth-6cm-4\tabcolsep}
+ because the glue \tabcolsep is added twice at every column edge.
+ You may also consider to set \tabcolsep to a different value...
+
* csv-tables do not have a colwidth.
* Add more classes or options, e.g. for
@@ -2504,10 +2517,6 @@ Tables
table title. In analogy to the 'figure' directive this should map to a
table float.
-.. _tabulary:
- http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=tabulary
-
-
Image and figure directives
```````````````````````````