#8500 closed defect (fixed)
Inline formulas sometimes interfere with WikiFormatting
Reported by: | Robert Rossmair | Owned by: | Kamil Kisiel |
---|---|---|---|
Priority: | normal | Component: | TracMathJaxPlugin |
Severity: | normal | Keywords: | latex |
Cc: | Robert Rossmair | Trac Release: | 0.12 |
Attachments (3)
Change History (12)
Changed 14 years ago by
Attachment: | TracMathJaxPluginIssue.PNG added |
---|
comment:1 Changed 14 years ago by
Keywords: | monospace removed |
---|---|
Summary: | Inline formulas //sometimes// interfere with `monospace` WikiFormating → Inline formulas sometimes interfere with WikiFormatting |
comment:2 Changed 14 years ago by
Status: | new → assigned |
---|
I believe I have this fixed in the default branch on bitbucket: https://bitbucket.org/kisielk/tracmathjaxplugin/
Can you download the development code from https://bitbucket.org/kisielk/tracmathjaxplugin/get/9b0942b0d876.zip and let me know if it fixes the bug for you?
Changed 14 years ago by
Attachment: | TracMathJaxPluginIssue2.PNG added |
---|
comment:3 Changed 14 years ago by
comment:4 Changed 14 years ago by
Thanks for providing an example.
Can you try the revision from https://bitbucket.org/kisielk/tracmathjaxplugin/get/e84e96a982aa.zip and see if it solves the table problem for you? I didn't get a chance to fully test it before running off to work this morning, but I think it should do the trick.
comment:5 Changed 14 years ago by
Changed 14 years ago by
Attachment: | TracMathJaxPluginIssue3.PNG added |
---|
comment:6 follow-up: 7 Changed 14 years ago by
If that worked before, it must have been purely by accident since I never wrote in support for the \[ .. \]
block syntax. The way I intended to use it is the $$ ... $$
or latex processor block syntax. However, if you want support for the square braces I can add that as well.
comment:7 Changed 14 years ago by
Replying to kisielk:
If that worked before, it must have been purely by accident since I never wrote in support for the
\[ .. \]
block syntax.
Oh. My mistake... I guess I tried it and it worked so far.
The way I intended to use it is the
$$ ... $$
or latex processor block syntax. However, if you want support for the square braces I can add that as well.
No, that won't be necessary.
Thank you for that great plugin, I really appreciate it. Greetings, Robert
comment:8 Changed 14 years ago by
It's not too hard to add, I'll probably put it in later tonight and release a new version with the fixes. It seems I totally forgot that
\[ ... \]
is the mid-length displaymath syntax in LaTeX :)
Will close this ticket when done.
Thanks for the bug report and examples.
comment:9 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
I've released version 0.2 of the plugin that addresses your problems.
I've included support for the \[ ... \]
braces as well. However, due to limitations in the Trac wiki syntax API, the braces cannot span multiple lines. For multi-line formulas you still need to use the
{{{ #!latex .... }}}
processor syntax.
I just noticed that there are similar problems with table separators, i.e.
||
, so it seems the issue is with WikiFormatting in general.