* bug in odt export via mathml of equations containing '&'
@ 2011-11-04 23:19 Myles English
2011-11-08 21:17 ` Jambunathan K
2011-11-08 21:34 ` Jambunathan K
0 siblings, 2 replies; 4+ messages in thread
From: Myles English @ 2011-11-04 23:19 UTC (permalink / raw)
To: emacs-orgmode Mode
If an org file contains a latex equation with a '&' in it then when it is
exported to odt it makes dodgy xml. Unzipping the odt, opening the
content.xml and doing M-x rng-first-error gives the message:
`&' that is not markup must be entered as `&'
To reproduce, insert this:
\begin{equation}
\delta_{mn} =
\begin{cases}
1& \text{if $n=m$}\\
0& \text{if $n\nem$}
\end{cases}
\end{equation}
(which I got from here
http://www.mathtoweb.com/cgi-bin/mathtoweb_users_guide.pl , search for
'cases')
into the file math-to-web-with-plastex.org in this post:
http://permalink.gmane.org/gmane.emacs.orgmode/48815 and export as per
instructions.
There may be a similar error with equations containing '<', '>'.
Myles
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: bug in odt export via mathml of equations containing '&'
2011-11-04 23:19 bug in odt export via mathml of equations containing '&' Myles English
@ 2011-11-08 21:17 ` Jambunathan K
2011-11-09 6:01 ` Jambunathan K
2011-11-08 21:34 ` Jambunathan K
1 sibling, 1 reply; 4+ messages in thread
From: Jambunathan K @ 2011-11-08 21:17 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 460 bytes --]
Hello Myles
The example that you have cited encounters issues on every step along
the way - plastex, mathtoweb and odt.
I have tried my best to be useful here.
I sincerely appreciate you exercising the LaTeX to MathML conversion
facilities included in Org. I hope we get robust LaTeX->MathML
converters *ultimately*. I see that there is plenty of scope for the
LaTeX to MathML converters to improve and mature.
This is going to be a long mail. Read on.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: improvements.org --]
[-- Type: text/x-org, Size: 1486 bytes --]
#+TITLE: improvements.org
#+AUTHOR: Jambunathan K
#+EMAIL: kjambunathan@gmail.com
#+DATE: 2011-11-09 Wed
#+DESCRIPTION:
#+KEYWORDS:
#+LANGUAGE: en
#+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t
#+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport
#+LINK_UP:
#+LINK_HOME:
#+XSLT:
* Improvements to LaTeX->MathML handling in ODF exporter
Firstly, I felt a need for some support infrastructure for working with
LaTeX fragments in the ODT exporter. I am listing few things that I have
added since our last interaction:
1. Dvipng images & Math formulae created from LaTeX fragments will now
have the LaTeX fragment as metadata. i.e., In LibreOffice you can see
the LaTeX source by Image/Equation->Right Click->Description
2. New interactive commands - M-x org-export-as-odf and M-x
org-export-as-odf-and-open. With these commands you can mark a latex
fragment and export it as a odf - OpenDocument formula -
document. The MathML source will be available as part of kill ring
after the export. (See the docstrings)
3. Embed OpenDocument formula within the exported document by providing
a link to *.mathml or *.odf file as below.
#+CAPTION: cases with MathJaX
[[./mathjax-cases.odf]]
A link with neither caption or nor label will formatted inline type
while one either or both of these attributes will be formatted as
display.
[-- Attachment #3: Type: text/plain, Size: 763 bytes --]
> If an org file contains a latex equation with a '&' in it then when it is
> exported to odt it makes dodgy xml. Unzipping the odt, opening the
> content.xml and doing M-x rng-first-error gives the message:
>
> `&' that is not markup must be entered as `&'
>
> To reproduce, insert this:
>
> \begin{equation}
> \delta_{mn} =
> \begin{cases}
> 1& \text{if $n=m$}\\
> 0& \text{if $n\nem$}
> \end{cases}
> \end{equation}
>
> (which I got from here
> http://www.mathtoweb.com/cgi-bin/mathtoweb_users_guide.pl , search for
> 'cases')
>
> into the file math-to-web-with-plastex.org in this post:
> http://permalink.gmane.org/gmane.emacs.orgmode/48815 and export as per
> instructions.
>
> There may be a similar error with equations containing '<', '>'.
[-- Attachment #4: diagnosis.org --]
[-- Type: text/x-org, Size: 9482 bytes --]
#+TITLE: diagnosis.org
#+AUTHOR: Jambunathan K
#+EMAIL: kjambunathan@gmail.com
#+DATE: 2011-11-09 Wed
#+DESCRIPTION:
#+KEYWORDS:
#+LANGUAGE: en
#+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t
#+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport
#+LINK_UP:
#+LINK_HOME:
#+XSLT:
#+STARTUP: hideblocks
* Diagnosis
1) User provided LaTeX fragment
#+begin_src latex
\begin{equation}
\delta_{mn} =
\begin{cases}
1& \text{if $n=m$}\\
0& \text{if $n\nem$}
\end{cases}
\end{equation}
#+end_src
2) Output from Plastex
Note that plastex output includes a SPACE in two instances:
- within `\text{blah}'
- within `m$'
#+begin_src latex
\begin{equation} \delta _{mn} = \begin{cases} 1& \text {if $n=m$}\\ 0& \text {if $n\nem $} \end{cases} \end{equation}
#+end_src
#+begin_src latex
\begin{equation} \delta _{mn} = \begin{cases} 1& \text{if $n=m$}\\ 0& \text{if $n\nem$} \end{cases} \end{equation}
#+end_src
3) Output from MathWeb
The extraneous SPACE is unacceptable to MathWeb and it complains.
#+begin_src text
Checking Syntax: **
-- found 1 syntax error(s) --
** (em) Nesting Error: $..$ can not be
nested inside \begin{equation}..\end{equation}
unless it is within a \text{..} environment.
line: 1 \begin{equation} \delta _{mn} ...
^
#+end_src
If I remove the extraneous SPACEs by hand MathToWeb crashes.
#+begin_src text
Checking Syntax: *** -- no errors --
>> stand-alone math environments: [1] Converting: 1Exception in thread "Thread-3" java.lang.ArrayIndexOutOfBoundsException: 1
at MathToWeb.convertEachLatexMatrixToAMathMLExpression(MathToWeb.java:15511)
at MathToWeb.doMatrixConversions(MathToWeb.java:3495)
at MathToWeb.convertLatexToMathML(MathToWeb.java:2106)
at ConvertLatexToMathMLThread.run(ConvertLatexToMathMLThread.java:64)
#+end_src
Question: Is the snippet output from plastex a valid LaTeX?
Depending on the answer there is a bug in either plastex or
mathtoweb.
The moral of the story is that pre-processsing the LaTeX fragment
with plastex - while it may help with circumventing ncf limitations
of MathToWeb - may create side-effects which will be allergic to
MathToweb.
4) How ODT handles LaTeX->MathML failures
If ODT didn't receive a <math>...</math> element it assumes failure
and tries to embed the LaTeX fragment verbatim in to the exporter.
There was a bug in embedding LaTeX fragment as plain text in the
ODT file which you have reported as below. This I have fixed.
#+begin_src text
> If an org file contains a latex equation with a '&' in it then when it is
> exported to odt it makes dodgy xml. Unzipping the odt, opening the
> content.xml and doing M-x rng-first-error gives the message:
>
> `&' that is not markup must be entered as `&'
> There may be a similar error with equations containing '<', '>'.
#+end_src
* Some comments on "cases"
** Bug in MathToWeb wrt cases
A comparison of [fn:1] and [fn:2] and a little experimentation with
LibreOffice shows following issues with MathToWeb handling of
\beign{cases}...\end{cases} which is allergic to LibreOffice.
1. MathJax uses:
- <mfenced open="{" close="">...</mfenced> - while
mathtoweb uses:
- <mo>{</mo> and <mphantom> } </mphantom>
2. MathJax the scope of <mtext>...</mtext> to just the "if" while
MathToWeb extends the scope to the entire "sub-equation"
3. MathJax uses   while MathToWeb uses   for
non-breaking space.
If 1, 2 and 3 are "hand-fixed" in MathToWeb output then LibreOffice
not only opens the MathToWeb produced formula fine but also
displays it correctly[fn:3].
** A near-equivalent of MathToWeb's cases that is LibreOffice-friendly
The below snippet is near-equivalent of "cases" formulation which
is also LibreOffice-friendly. See the attached
"workable-alternative-to-cases.odf".
#+srcname: workable-alternative-to-cases
#+begin_src latex
\begin{equation*}
\delta_{mn} =
\left\{
\begin{smallmatrix}
1 & \text{if } n=m \\
0 & \text{if } n\nem
\end{smallmatrix}
\right\}
\end{equation*}
#+end_src
The best alternative in LaTeX would be to use the \left\{ and
\right. (note the "dot") construct as below[fn:4]. Unfortunately
MathToWeb fails miserably while MathJax succeeds with flying
colors.
#+srcname: exact-equivalent-of-cases
#+begin_src latex
\begin{equation*}
\delta_{mn} =
\left\{
\begin{smallmatrix}
1 & \text{if } n=m \\
0 & \text{if } n\nem
\end{smallmatrix}
\right.
\end{equation*}
#+end_src
* Workarounds
** Use plastex with discretion and consider MathJax as a potential option?
An example scenario where it creates undesirable side-effects has
been seen earlier.
Interestingly, the original latex fragment DOES NOT rely on any
user-defined newcommand for interpretation and can be passed on to
MathToWeb directly.
When the original snippet is exported with M-x
org-export-as-odf-and-open RET, export to odf happens fine but
LibreOffice fails to open the resulting formula[fn:1]. Also see the
attached file "mathtoweb-cases.odf"
If I open the resulting odf file and overwrite "content.xml" with
the MathML produced by MathJax[fn:2][fn:5][fn:6] - see the attached
"mathjax-cases.odf" - LibreOffice is happy.
** Provide the MathML or OpenDocument formula directly in the Org file
One can provide the "right" MathML or OpenDocument formula directly
in the Org file. The formula could either be created with
LibreOffice's StarMath directly or by using the output from LaTeX
to MathML converters as a first cut [fn:7] and improving the
results subsequently with LibreOffice.
* Footnotes
[fn:1] #+srcname: output-from-mathtoweb-for-cases
#+begin_src nxml
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mspace width="1.00em" />
<msub>
<mi>δ</mi>
<mrow>
<mi>m</mi>
<mi>n</mi>
</mrow>
</msub>
<mo>=</mo>
<mrow>
<mo>{</mo>
<mtable class="m-cases" columnalign="left">
<mtr>
<mtd>
<mn>1</mn>
</mtd>
<mtd>
<mtext>if 
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mi>n</mi>
<mo>=</mo>
<mi>m</mi>
</mrow>
</math>
</mtext>
</mtd>
</mtr>
<mtr>
<mtd>
<mn>0</mn>
</mtd>
<mtd>
<mtext>if 
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mi>n</mi>
<mo>≠</mo>
<mi>m</mi>
</mrow>
</math>
</mtext>
</mtd>
</mtr>
</mtable>
<mphantom>
}
</mphantom>
</mrow>
</mrow>
</math>
#+end_src
[fn:2] #+srcname: output-from-mathjax-for-cases
#+begin_src nxml
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<msub>
<mi>δ<!-- δ --></mi>
<mrow>
<mi>m</mi>
<mi>n</mi>
</mrow>
</msub>
<mo>=</mo>
<mfenced open="{" close="">
<mtable columnalign="left left" rowspacing=".1em" columnspacing="1em">
<mtr>
<mtd>
<mn>1</mn>
</mtd>
<mtd>
<mtext>if </mtext>
<mrow>
<mi>n</mi>
<mo>=</mo>
<mi>m</mi>
</mrow>
</mtd>
</mtr>
<mtr>
<mtd>
<mn>0</mn>
</mtd>
<mtd>
<mtext>if </mtext>
<mrow>
<mi>n</mi>
<mtext mathcolor="red">\nem</mtext>
</mrow>
</mtd>
</mtr>
</mtable>
</mfenced>
</math>
#+end_src
[fn:3] Would you like to this forward as a bug report to MathToWeb
team?
[fn:4] For LaTeX, see the last example here:
http://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/Matrices.html
[fn:5] MathJax doesn't seem to handle \ne well.
[fn:6] Is there a command-line interface to MathJax? This will permit
MathJax as a potential alternative to MathToWeb. If there is no
command-line converter, can someone reverse-engineer the MathJax
javascript and see what magic it does over the network or cloud.
[fn:7] In case of matrices, MathToWeb produces a MathML which displays
fine save for some characters that are displayed as "questions".
[-- Attachment #5: Type: text/plain, Size: 21 bytes --]
Jambunathan K.
--
[-- Attachment #6: diagnosis.org --]
[-- Type: text/x-org, Size: 9482 bytes --]
#+TITLE: diagnosis.org
#+AUTHOR: Jambunathan K
#+EMAIL: kjambunathan@gmail.com
#+DATE: 2011-11-09 Wed
#+DESCRIPTION:
#+KEYWORDS:
#+LANGUAGE: en
#+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t
#+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport
#+LINK_UP:
#+LINK_HOME:
#+XSLT:
#+STARTUP: hideblocks
* Diagnosis
1) User provided LaTeX fragment
#+begin_src latex
\begin{equation}
\delta_{mn} =
\begin{cases}
1& \text{if $n=m$}\\
0& \text{if $n\nem$}
\end{cases}
\end{equation}
#+end_src
2) Output from Plastex
Note that plastex output includes a SPACE in two instances:
- within `\text{blah}'
- within `m$'
#+begin_src latex
\begin{equation} \delta _{mn} = \begin{cases} 1& \text {if $n=m$}\\ 0& \text {if $n\nem $} \end{cases} \end{equation}
#+end_src
#+begin_src latex
\begin{equation} \delta _{mn} = \begin{cases} 1& \text{if $n=m$}\\ 0& \text{if $n\nem$} \end{cases} \end{equation}
#+end_src
3) Output from MathWeb
The extraneous SPACE is unacceptable to MathWeb and it complains.
#+begin_src text
Checking Syntax: **
-- found 1 syntax error(s) --
** (em) Nesting Error: $..$ can not be
nested inside \begin{equation}..\end{equation}
unless it is within a \text{..} environment.
line: 1 \begin{equation} \delta _{mn} ...
^
#+end_src
If I remove the extraneous SPACEs by hand MathToWeb crashes.
#+begin_src text
Checking Syntax: *** -- no errors --
>> stand-alone math environments: [1] Converting: 1Exception in thread "Thread-3" java.lang.ArrayIndexOutOfBoundsException: 1
at MathToWeb.convertEachLatexMatrixToAMathMLExpression(MathToWeb.java:15511)
at MathToWeb.doMatrixConversions(MathToWeb.java:3495)
at MathToWeb.convertLatexToMathML(MathToWeb.java:2106)
at ConvertLatexToMathMLThread.run(ConvertLatexToMathMLThread.java:64)
#+end_src
Question: Is the snippet output from plastex a valid LaTeX?
Depending on the answer there is a bug in either plastex or
mathtoweb.
The moral of the story is that pre-processsing the LaTeX fragment
with plastex - while it may help with circumventing ncf limitations
of MathToWeb - may create side-effects which will be allergic to
MathToweb.
4) How ODT handles LaTeX->MathML failures
If ODT didn't receive a <math>...</math> element it assumes failure
and tries to embed the LaTeX fragment verbatim in to the exporter.
There was a bug in embedding LaTeX fragment as plain text in the
ODT file which you have reported as below. This I have fixed.
#+begin_src text
> If an org file contains a latex equation with a '&' in it then when it is
> exported to odt it makes dodgy xml. Unzipping the odt, opening the
> content.xml and doing M-x rng-first-error gives the message:
>
> `&' that is not markup must be entered as `&'
> There may be a similar error with equations containing '<', '>'.
#+end_src
* Some comments on "cases"
** Bug in MathToWeb wrt cases
A comparison of [fn:1] and [fn:2] and a little experimentation with
LibreOffice shows following issues with MathToWeb handling of
\beign{cases}...\end{cases} which is allergic to LibreOffice.
1. MathJax uses:
- <mfenced open="{" close="">...</mfenced> - while
mathtoweb uses:
- <mo>{</mo> and <mphantom> } </mphantom>
2. MathJax the scope of <mtext>...</mtext> to just the "if" while
MathToWeb extends the scope to the entire "sub-equation"
3. MathJax uses   while MathToWeb uses   for
non-breaking space.
If 1, 2 and 3 are "hand-fixed" in MathToWeb output then LibreOffice
not only opens the MathToWeb produced formula fine but also
displays it correctly[fn:3].
** A near-equivalent of MathToWeb's cases that is LibreOffice-friendly
The below snippet is near-equivalent of "cases" formulation which
is also LibreOffice-friendly. See the attached
"workable-alternative-to-cases.odf".
#+srcname: workable-alternative-to-cases
#+begin_src latex
\begin{equation*}
\delta_{mn} =
\left\{
\begin{smallmatrix}
1 & \text{if } n=m \\
0 & \text{if } n\nem
\end{smallmatrix}
\right\}
\end{equation*}
#+end_src
The best alternative in LaTeX would be to use the \left\{ and
\right. (note the "dot") construct as below[fn:4]. Unfortunately
MathToWeb fails miserably while MathJax succeeds with flying
colors.
#+srcname: exact-equivalent-of-cases
#+begin_src latex
\begin{equation*}
\delta_{mn} =
\left\{
\begin{smallmatrix}
1 & \text{if } n=m \\
0 & \text{if } n\nem
\end{smallmatrix}
\right.
\end{equation*}
#+end_src
* Workarounds
** Use plastex with discretion and consider MathJax as a potential option?
An example scenario where it creates undesirable side-effects has
been seen earlier.
Interestingly, the original latex fragment DOES NOT rely on any
user-defined newcommand for interpretation and can be passed on to
MathToWeb directly.
When the original snippet is exported with M-x
org-export-as-odf-and-open RET, export to odf happens fine but
LibreOffice fails to open the resulting formula[fn:1]. Also see the
attached file "mathtoweb-cases.odf"
If I open the resulting odf file and overwrite "content.xml" with
the MathML produced by MathJax[fn:2][fn:5][fn:6] - see the attached
"mathjax-cases.odf" - LibreOffice is happy.
** Provide the MathML or OpenDocument formula directly in the Org file
One can provide the "right" MathML or OpenDocument formula directly
in the Org file. The formula could either be created with
LibreOffice's StarMath directly or by using the output from LaTeX
to MathML converters as a first cut [fn:7] and improving the
results subsequently with LibreOffice.
* Footnotes
[fn:1] #+srcname: output-from-mathtoweb-for-cases
#+begin_src nxml
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mspace width="1.00em" />
<msub>
<mi>δ</mi>
<mrow>
<mi>m</mi>
<mi>n</mi>
</mrow>
</msub>
<mo>=</mo>
<mrow>
<mo>{</mo>
<mtable class="m-cases" columnalign="left">
<mtr>
<mtd>
<mn>1</mn>
</mtd>
<mtd>
<mtext>if 
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mi>n</mi>
<mo>=</mo>
<mi>m</mi>
</mrow>
</math>
</mtext>
</mtd>
</mtr>
<mtr>
<mtd>
<mn>0</mn>
</mtd>
<mtd>
<mtext>if 
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mi>n</mi>
<mo>≠</mo>
<mi>m</mi>
</mrow>
</math>
</mtext>
</mtd>
</mtr>
</mtable>
<mphantom>
}
</mphantom>
</mrow>
</mrow>
</math>
#+end_src
[fn:2] #+srcname: output-from-mathjax-for-cases
#+begin_src nxml
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<msub>
<mi>δ<!-- δ --></mi>
<mrow>
<mi>m</mi>
<mi>n</mi>
</mrow>
</msub>
<mo>=</mo>
<mfenced open="{" close="">
<mtable columnalign="left left" rowspacing=".1em" columnspacing="1em">
<mtr>
<mtd>
<mn>1</mn>
</mtd>
<mtd>
<mtext>if </mtext>
<mrow>
<mi>n</mi>
<mo>=</mo>
<mi>m</mi>
</mrow>
</mtd>
</mtr>
<mtr>
<mtd>
<mn>0</mn>
</mtd>
<mtd>
<mtext>if </mtext>
<mrow>
<mi>n</mi>
<mtext mathcolor="red">\nem</mtext>
</mrow>
</mtd>
</mtr>
</mtable>
</mfenced>
</math>
#+end_src
[fn:3] Would you like to this forward as a bug report to MathToWeb
team?
[fn:4] For LaTeX, see the last example here:
http://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/Matrices.html
[fn:5] MathJax doesn't seem to handle \ne well.
[fn:6] Is there a command-line interface to MathJax? This will permit
MathJax as a potential alternative to MathToWeb. If there is no
command-line converter, can someone reverse-engineer the MathJax
javascript and see what magic it does over the network or cloud.
[fn:7] In case of matrices, MathToWeb produces a MathML which displays
fine save for some characters that are displayed as "questions".
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #7: improvements.org --]
[-- Type: text/x-org, Size: 1486 bytes --]
#+TITLE: improvements.org
#+AUTHOR: Jambunathan K
#+EMAIL: kjambunathan@gmail.com
#+DATE: 2011-11-09 Wed
#+DESCRIPTION:
#+KEYWORDS:
#+LANGUAGE: en
#+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t
#+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc
#+EXPORT_SELECT_TAGS: export
#+EXPORT_EXCLUDE_TAGS: noexport
#+LINK_UP:
#+LINK_HOME:
#+XSLT:
* Improvements to LaTeX->MathML handling in ODF exporter
Firstly, I felt a need for some support infrastructure for working with
LaTeX fragments in the ODT exporter. I am listing few things that I have
added since our last interaction:
1. Dvipng images & Math formulae created from LaTeX fragments will now
have the LaTeX fragment as metadata. i.e., In LibreOffice you can see
the LaTeX source by Image/Equation->Right Click->Description
2. New interactive commands - M-x org-export-as-odf and M-x
org-export-as-odf-and-open. With these commands you can mark a latex
fragment and export it as a odf - OpenDocument formula -
document. The MathML source will be available as part of kill ring
after the export. (See the docstrings)
3. Embed OpenDocument formula within the exported document by providing
a link to *.mathml or *.odf file as below.
#+CAPTION: cases with MathJaX
[[./mathjax-cases.odf]]
A link with neither caption or nor label will formatted inline type
while one either or both of these attributes will be formatted as
display.
[-- Attachment #8: workable-alternative-to-cases.odf --]
[-- Type: application/vnd.oasis.opendocument.formula, Size: 1609 bytes --]
[-- Attachment #9: mathjax-cases.odf --]
[-- Type: application/vnd.oasis.opendocument.formula, Size: 1602 bytes --]
[-- Attachment #10: mathtoweb-cases.odf --]
[-- Type: application/vnd.oasis.opendocument.formula, Size: 1620 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: bug in odt export via mathml of equations containing '&'
2011-11-04 23:19 bug in odt export via mathml of equations containing '&' Myles English
2011-11-08 21:17 ` Jambunathan K
@ 2011-11-08 21:34 ` Jambunathan K
1 sibling, 0 replies; 4+ messages in thread
From: Jambunathan K @ 2011-11-08 21:34 UTC (permalink / raw)
To: emacs-orgmode
Myles English <mylesenglish@gmail.com> writes:
> \begin{equation}
> \delta_{mn} =
> \begin{cases}
> 1& \text{if $n=m$}\\
> 0& \text{if $n\nem$}
> \end{cases}
> \end{equation}
,---- From ftp://ftp.ams.org/ams/doc/amsmath/short-math-guide.pdf
|
| Note. The plain TEX form \matrix{...\cr...\cr} and the related commands
| \pmatrix, \cases should be avoided in LATEX (and when the amsmath
| package is loaded they are disabled).
`----
Any idea what the above statement means? I have a strong feeling that
you picked the above stuff out of curiosity and hit a road-block right
away.
Btw, what is your general opinion on usability of MathToWeb vis-a-vis
ODT export. Do you think MathToWeb can be recommeded in org-odt texinfo
manual and may be bundled with the org release tarballs.
--
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: bug in odt export via mathml of equations containing '&'
2011-11-08 21:17 ` Jambunathan K
@ 2011-11-09 6:01 ` Jambunathan K
0 siblings, 0 replies; 4+ messages in thread
From: Jambunathan K @ 2011-11-09 6:01 UTC (permalink / raw)
To: emacs-orgmode
> The best alternative in LaTeX would be to use the \left\{ and
> \right. (note the "dot") construct as below[fn:4]. Unfortunately
> MathToWeb fails miserably while MathJax succeeds with flying
> colors.
>
> #+srcname: exact-equivalent-of-cases
> #+begin_src latex
> \begin{equation*}
> \delta_{mn} =
> \left\{
> \begin{smallmatrix}
> 1 & \text{if } n=m \\
> 0 & \text{if } n\nem
> \end{smallmatrix}
> \right.
> \end{equation*}
> #+end_src
>
> [fn:4] For LaTeX, see the last example here:
> http://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/Matrices.html
Adding a link to StarMath equivalent which is:
LHS = left lbrace <insert-something-here> right none
See Adding a link to StarMath equivalent which is:
http://user.services.openoffice.org/en/forum/viewtopic.php?f=12&t=17568
--
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-11-09 6:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-04 23:19 bug in odt export via mathml of equations containing '&' Myles English
2011-11-08 21:17 ` Jambunathan K
2011-11-09 6:01 ` Jambunathan K
2011-11-08 21:34 ` Jambunathan K
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).