Last modified: 2006-11-03 23:19:01 UTC

Wikimedia Bugzilla is closed!

Wikimedia migrated from Bugzilla to Phabricator. Bug reports are handled in Wikimedia Phabricator.
This static website is read-only and for historical purposes. It is not possible to log in and except for displaying bug reports and their history, links might be broken. See T9774, the corresponding Phabricator task for complete and up-to-date bug report information.
Bug 7774 - Additional functions and symbols for texvc
Additional functions and symbols for texvc
Status: RESOLVED FIXED
Product: MediaWiki extensions
Classification: Unclassified
Math (Other open bugs)
unspecified
All All
: Normal enhancement with 1 vote (vote)
: ---
Assigned To: Nobody - You can work on this!
: patch, patch-need-review
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2006-10-31 18:11 UTC by Carl Fürstenberg
Modified: 2006-11-03 23:19 UTC (History)
0 users

See Also:
Web browser: ---
Mobile Platform: ---
Assignee Huggle Beta Tester: ---


Attachments
the patch, implementation of them all except \sideset (7.13 KB, patch)
2006-10-31 18:12 UTC, Carl Fürstenberg
Details
Examples (87.58 KB, image/png)
2006-10-31 19:35 UTC, Carl Fürstenberg
Details
added implementatrion of sideset (10.68 KB, patch)
2006-10-31 21:43 UTC, Carl Fürstenberg
Details
syntax and look of sideset (7.07 KB, image/png)
2006-10-31 21:53 UTC, Carl Fürstenberg
Details
The complete patch (10.02 KB, patch)
2006-10-31 23:03 UTC, Carl Fürstenberg
Details
previous patch plus some symbols (24.78 KB, patch)
2006-11-01 01:10 UTC, Carl Fürstenberg
Details
The new symbolds added and their syntax (141.03 KB, image/png)
2006-11-01 01:13 UTC, Carl Fürstenberg
Details
Complete patch (25.16 KB, patch)
2006-11-01 20:18 UTC, Carl Fürstenberg
Details
Cemplete patch (25.19 KB, patch)
2006-11-01 20:29 UTC, Carl Fürstenberg
Details
Complete patch (27.75 KB, patch)
2006-11-02 00:39 UTC, Carl Fürstenberg
Details
The MORE complete patch (31.03 KB, patch)
2006-11-02 18:45 UTC, Carl Fürstenberg
Details
The even MORE Complete Patch (31.08 KB, patch)
2006-11-02 18:51 UTC, Carl Fürstenberg
Details
The even MORE Complete Patch 2 (37.50 KB, patch)
2006-11-02 21:18 UTC, Carl Fürstenberg
Details

Description Carl Fürstenberg 2006-10-31 18:11:17 UTC
I was digging around in AMSTeX and found some thingis, that could be usefull for
addition, I have managed to implement all but one (see patch).

The commands are:

\begin{align}...\end{align} and \begin{alignat}...\end{alignat} 
:They will use the envs aligned and alignedat, and it a better and easier
alternative to ''array''

\begin{smallmatrix}...\end{smallmatrix}
:a matrix in miniature, usefull if you need to include a small matrix in text.

\overset, \underset
:Superior to \stackrel

\sideset
:didn't manage to implement this one, but it's needed if you want to add a prime
or simlar to \sum.

(\binom), \dbinom, \tbinom
:the \binom was defined, but was mission amstex definition, so it could fault if
no other ams tags was used, dbinom and tbinom is shortcuts for
\displaystyle\binom etc...

\dfrac, \tfrac
:\cfrac should only be used in subfracs, dfrac and tfrac for eas of use.

\xleftarrow, \xrightarrow
:A thing people have asked for. This is an arrow, to left or right, with the
abillity to defined text above or below the arrow, and the length of the arrow
is dependent of the length of the text.

\text
:simlar to use as \mbox{foo}, but it's defined in AMSTex, so why not use it?
Comment 1 Carl Fürstenberg 2006-10-31 18:12:03 UTC
Created attachment 2604 [details]
the patch, implementation of them all except \sideset
Comment 2 Carl Fürstenberg 2006-10-31 18:13:26 UTC
Forgot, that I've also defined \bigl and \bigr etc...
Comment 3 Carl Fürstenberg 2006-10-31 19:35:19 UTC
Created attachment 2605 [details]
Examples

Some examples made on my test wiki
Comment 4 Carl Fürstenberg 2006-10-31 21:43:22 UTC
Created attachment 2606 [details]
added implementatrion of sideset

Finally I was able to create a functional implementation of \sideset
Comment 5 Carl Fürstenberg 2006-10-31 21:53:38 UTC
Created attachment 2607 [details]
syntax and look of sideset
Comment 6 Carl Fürstenberg 2006-10-31 23:03:22 UTC
Created attachment 2608 [details]
The complete patch
Comment 7 Carl Fürstenberg 2006-10-31 23:17:14 UTC
Comment on attachment 2608 [details]
The complete patch

forgot to remove remder.ml from the patch
Comment 8 Carl Fürstenberg 2006-11-01 01:10:58 UTC
Created attachment 2609 [details]
previous patch plus some symbols

I found out that I had had forgot a bounch of AMSTeX symbols, so I decided to
add then to the patch
Comment 9 Carl Fürstenberg 2006-11-01 01:13:32 UTC
Created attachment 2610 [details]
The new symbolds added and their syntax

The new symbolds added and their syntax
Comment 10 Carl Fürstenberg 2006-11-01 20:18:32 UTC
Created attachment 2617 [details]
Complete patch

Minor bug in \text{} (shouldn't parse the content of text)
Comment 11 Carl Fürstenberg 2006-11-01 20:29:37 UTC
Created attachment 2618 [details]
Cemplete patch

Off course \text most use ams
Comment 12 Carl Fürstenberg 2006-11-02 00:39:38 UTC
Created attachment 2619 [details]
Complete patch

Added deambigious code to html.ml that where missing
Comment 13 Carl Fürstenberg 2006-11-02 18:45:42 UTC
Created attachment 2620 [details]
The MORE complete patch

I have cleaned up the resulting html (changed font-tags to span tags, utilizing
css instead, and make resulting html indented somewhat). Minor cleanup in a
test-file (unused variable removed, so it won't complain).
Comment 14 Carl Fürstenberg 2006-11-02 18:51:27 UTC
Created attachment 2621 [details]
The even MORE Complete Patch

Think it's better to force large letters to be serif (like \sum etc...)
Comment 15 Carl Fürstenberg 2006-11-02 21:18:24 UTC
Created attachment 2622 [details]
The even MORE Complete Patch 2

Added fix for bug 1182
Comment 16 Rob Church 2006-11-02 21:28:17 UTC
Please keep fixes for different bugs separate.
Comment 17 Carl Fürstenberg 2006-11-02 21:41:45 UTC
(In reply to comment #16)
> Please keep fixes for different bugs separate.

Sorry, but I didn't want separate patches lying around.
Comment 18 Rob Church 2006-11-03 01:11:29 UTC
Please keep fixes for different bugs separate. It makes code reviewing easier
and allows us to track patches easily.
Comment 19 Carl Fürstenberg 2006-11-03 12:16:53 UTC
(In reply to comment #18)
> Please keep fixes for different bugs separate. It makes code reviewing easier
> and allows us to track patches easily.

Ok, I fix it
Comment 20 Carl Fürstenberg 2006-11-03 12:17:25 UTC
Comment on attachment 2621 [details]
The even MORE Complete Patch

reverting to the older patch, separate the bugs
Comment 21 Carl Fürstenberg 2006-11-03 12:17:41 UTC
Comment on attachment 2622 [details]
The even MORE Complete Patch 2

as before
Comment 22 JeLuF 2006-11-03 23:19:01 UTC
Fixed in r17386.

Note You need to log in before you can comment on or make changes to this bug.


Navigation
Links