<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
	>
<channel>
	<title>Comments on: Math You Can&#8217;t Use</title>
	<atom:link href="http://www.robweir.com/blog/2006/08/math-you-cant-use.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html</link>
	<description>Thinking the unthinkable, pondering the imponderable, effing the ineffable and scruting the inscrutable</description>
	<lastBuildDate>Tue, 16 Mar 2010 03:07:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rob</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-49</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 19 Aug 2006 14:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-49</guid>
		<description>Start with the manifest.xml file.  That&#039;s like the table of contents for the document archive.  The formula is defined as type &quot;application/vnd.oasis.opendocument.formula&quot; and points to a directory in the zip file.  In a simple example, with just one formula it points to Object1 directory.  That directory has a content.xml which is the MathML for the formula.  &lt;br/&gt;&lt;br/&gt;This is rather straightforward, I think.  The key is to start from the manifest so you know what the types of everything are.&lt;br/&gt;&lt;br/&gt;So what about this WMF?  The manifest declares this as being of type &quot;application/x-openoffice-gdimetafile&quot; and puts it in the ObjectReplacements directory. So this is clearly an OpenOffice extension.  But this has no impact on the MathML.  For example you can delete the entire ObjectReplacements directory and the file will load and display fine.  &lt;br/&gt;&lt;br/&gt;If I had to guess, not being an OO developer, this appears to be a performance enhancement, so the initial load of the file in OO can quickly display the metafile for embedded formulas rather than loading the formula engine and regenerating the appearance of the formulas.  This is common technique in many applications dealing with embeddings.  Office does it.  SmartSuite does it.  It is a core part of embedding frameworks like Microsoft&#039;s OLE2.  &lt;br/&gt;&lt;br/&gt;Note that no implementation is required to read or understand the metafile.  They only read the parts of manifest they want.  &lt;br/&gt;&lt;br/&gt;Note an important distinction here between ODF and OOXML.  ODF allows implementations to create performance enhancements like this, so long as the underlying format remains ODF.  Hints, added in their own content-type or own XML namespace to make the file load faster, that is fine.  An implementation that doesn&#039;t understand those hints can ignore them.&lt;br/&gt;&lt;br/&gt;OOXML on the other hand mandates some things, like string tables, for performance.  No implementation can avoid dealing with them.  Now, smart people can differ on whether this is a good thing or not.  But think that mandating more complex representations for performance reasons makes it more difficult for implementors of the format, especially small implementors.  Not everyone who will work with ODF or OOXML will be writing full desktop editors.  In some cases it will be just a few lines of Python script.  I wouldn&#039;t want the Python user to deal with WMF or string tables.  &lt;br/&gt;&lt;br/&gt;Maybe a coder&#039;s primary concern is not performance, but ease of code?  Maybe they are dealing with primarily small documents?  Maybe an implementation wants to be clever and have string tables for only large documents,but not for small documents, because that may give overall better performance.  Maybe an implementation is more interested in optimizing writes than reads?  &lt;br/&gt;&lt;br/&gt;My point is that how you optimize performance depends heavily on the application and how the application is used.  I&#039;d hesitate to include an optimization in the standard file format unless it was universally applicable.  In extensions, fine, just make sure they are not required for other applications to understand the format.  Better to stick with the core strength of XML, the readability.  If the past is any indication, machines will continue to get faster in the future, but people will get no smarter.  So ease of programming the format is what we should optimize for.</description>
		<content:encoded><![CDATA[<p>Start with the manifest.xml file.  That&#8217;s like the table of contents for the document archive.  The formula is defined as type &#8220;application/vnd.oasis.opendocument.formula&#8221; and points to a directory in the zip file.  In a simple example, with just one formula it points to Object1 directory.  That directory has a content.xml which is the MathML for the formula.  </p>
<p>This is rather straightforward, I think.  The key is to start from the manifest so you know what the types of everything are.</p>
<p>So what about this WMF?  The manifest declares this as being of type &#8220;application/x-openoffice-gdimetafile&#8221; and puts it in the ObjectReplacements directory. So this is clearly an OpenOffice extension.  But this has no impact on the MathML.  For example you can delete the entire ObjectReplacements directory and the file will load and display fine.  </p>
<p>If I had to guess, not being an OO developer, this appears to be a performance enhancement, so the initial load of the file in OO can quickly display the metafile for embedded formulas rather than loading the formula engine and regenerating the appearance of the formulas.  This is common technique in many applications dealing with embeddings.  Office does it.  SmartSuite does it.  It is a core part of embedding frameworks like Microsoft&#8217;s OLE2.  </p>
<p>Note that no implementation is required to read or understand the metafile.  They only read the parts of manifest they want.  </p>
<p>Note an important distinction here between ODF and OOXML.  ODF allows implementations to create performance enhancements like this, so long as the underlying format remains ODF.  Hints, added in their own content-type or own XML namespace to make the file load faster, that is fine.  An implementation that doesn&#8217;t understand those hints can ignore them.</p>
<p>OOXML on the other hand mandates some things, like string tables, for performance.  No implementation can avoid dealing with them.  Now, smart people can differ on whether this is a good thing or not.  But think that mandating more complex representations for performance reasons makes it more difficult for implementors of the format, especially small implementors.  Not everyone who will work with ODF or OOXML will be writing full desktop editors.  In some cases it will be just a few lines of Python script.  I wouldn&#8217;t want the Python user to deal with WMF or string tables.  </p>
<p>Maybe a coder&#8217;s primary concern is not performance, but ease of code?  Maybe they are dealing with primarily small documents?  Maybe an implementation wants to be clever and have string tables for only large documents,but not for small documents, because that may give overall better performance.  Maybe an implementation is more interested in optimizing writes than reads?  </p>
<p>My point is that how you optimize performance depends heavily on the application and how the application is used.  I&#8217;d hesitate to include an optimization in the standard file format unless it was universally applicable.  In extensions, fine, just make sure they are not required for other applications to understand the format.  Better to stick with the core strength of XML, the readability.  If the past is any indication, machines will continue to get faster in the future, but people will get no smarter.  So ease of programming the format is what we should optimize for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hAl</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-48</link>
		<dc:creator>hAl</dc:creator>
		<pubDate>Sat, 19 Aug 2006 12:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-48</guid>
		<description>Well, Rob, mayby I misjudged you censoring posts but I have posted several messages (3 or 4) in the past using the anonymous identity option (mostly after your post was on groklaw) and never seen those back on the blog.&lt;br/&gt;&lt;br/&gt;I still do not see however why OO.o using ODF supporting MathML creates a binary (wmf?!) file as you say whilst MS Office 2007 manages to create a full XML representation of equations without such binary additions.&lt;br/&gt;&lt;br/&gt;Mayby that is due to ODF using only the presentation part of MathML?&lt;br/&gt;A full XML representation however might well be a preferable choice for interoperability ???</description>
		<content:encoded><![CDATA[<p>Well, Rob, mayby I misjudged you censoring posts but I have posted several messages (3 or 4) in the past using the anonymous identity option (mostly after your post was on groklaw) and never seen those back on the blog.</p>
<p>I still do not see however why OO.o using ODF supporting MathML creates a binary (wmf?!) file as you say whilst MS Office 2007 manages to create a full XML representation of equations without such binary additions.</p>
<p>Mayby that is due to ODF using only the presentation part of MathML?<br />A full XML representation however might well be a preferable choice for interoperability ???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-47</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Fri, 18 Aug 2006 22:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-47</guid>
		<description>hAI, &lt;br/&gt;&lt;br/&gt;I do religiously read Brian Jones&#039;s blog, but I&#039;ve seen no comment that points to a problem with MathML in ODF.  I think a look at the manifest file of the document would indicate that the binary blob is simply declared as a Windows Metafile.  Nothing mysterious about that.  And even a look at the specification will reveal that ODF uses MathML Version 2.0 (Second Edition, no modifications, no additions, no nonsense.&lt;br/&gt;&lt;br/&gt;The MathML interop is quite simple and straightforward.  For example, a MathML expression from Mathematica can be cut &amp; paste to replace the XML in an ODF MathML document.  It works -- I&#039;ve done it.  I&#039;ll post instructions and an example next week, OK?  &lt;br/&gt;&lt;br/&gt;I see you (or someone of your name) has also &lt;a HREF=&quot;http://blogs.msdn.com/brian_jones/archive/2006/08/16/700494.aspx#706558&quot; REL=&quot;nofollow&quot; rel=&quot;nofollow&quot;&gt;posted&lt;/a&gt; that I &quot;censor all comments&quot; and &quot;remove any negative messages on ODF&quot; from this blog.  This is patently false and you are a liar, a fool, or both if you perpetuate that lie.  I&#039;ve posted every comment I&#039;ve received, unless it was spam (online gambling, viagra, etc.).</description>
		<content:encoded><![CDATA[<p>hAI, </p>
<p>I do religiously read Brian Jones&#8217;s blog, but I&#8217;ve seen no comment that points to a problem with MathML in ODF.  I think a look at the manifest file of the document would indicate that the binary blob is simply declared as a Windows Metafile.  Nothing mysterious about that.  And even a look at the specification will reveal that ODF uses MathML Version 2.0 (Second Edition, no modifications, no additions, no nonsense.</p>
<p>The MathML interop is quite simple and straightforward.  For example, a MathML expression from Mathematica can be cut &#038; paste to replace the XML in an ODF MathML document.  It works &#8212; I&#8217;ve done it.  I&#8217;ll post instructions and an example next week, OK?  </p>
<p>I see you (or someone of your name) has also <a HREF="http://blogs.msdn.com/brian_jones/archive/2006/08/16/700494.aspx#706558" REL="nofollow" rel="nofollow">posted</a> that I &#8220;censor all comments&#8221; and &#8220;remove any negative messages on ODF&#8221; from this blog.  This is patently false and you are a liar, a fool, or both if you perpetuate that lie.  I&#8217;ve posted every comment I&#8217;ve received, unless it was spam (online gambling, viagra, etc.).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hAl</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-45</link>
		<dc:creator>hAl</dc:creator>
		<pubDate>Fri, 18 Aug 2006 20:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-45</guid>
		<description>Luckily the commenters on Brian Jones XML weblog have looked at the implementation by OO.o of MathML and compared it to the MS Office beta. And frankly the lack of spec definition in ODF show in their findings. It is unlikely that with current ODF specs anyone with make a compatible application from it.</description>
		<content:encoded><![CDATA[<p>Luckily the commenters on Brian Jones XML weblog have looked at the implementation by OO.o of MathML and compared it to the MS Office beta. And frankly the lack of spec definition in ODF show in their findings. It is unlikely that with current ODF specs anyone with make a compatible application from it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-44</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Fri, 18 Aug 2006 13:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-44</guid>
		<description>And two standards for representing vector graphics, and two for mathematical equations, and two for forms, and two for raster images, and two for portable page description langauges, and two for java-like languages, and two for browser markup, and two for javascript-like languages, and two divergent versions of CSS, and so on and so on.  &lt;br/&gt;&lt;br/&gt;I don&#039;t think it requires &quot;attitude&quot; or claims of &quot;nefarious purposes&quot; to suggest that Microsoft has been more than a little ham-fisted when it comes to web standards.&lt;br/&gt;&lt;br/&gt;Please, yes, let&#039;s start talking about the customer.  Let&#039;s talk about how diverging from established standards perpetuates vendor lock-in.  Let&#039;s talk about customers and how they will need to forget what they know about established web standards and learn new replacement markup, used only in OOXML.  Let&#039;s talk about customers and how moving to OOXML locks them into not only Office, but Windows as well.  I am very concerned about customers and what this all means for them.&lt;br/&gt;&lt;br/&gt;There is the old joke, that the nice thing about standards is that you have so many to choose from.  But that is an old joke, and I&#039;m not laughing anymore.</description>
		<content:encoded><![CDATA[<p>And two standards for representing vector graphics, and two for mathematical equations, and two for forms, and two for raster images, and two for portable page description langauges, and two for java-like languages, and two for browser markup, and two for javascript-like languages, and two divergent versions of CSS, and so on and so on.  </p>
<p>I don&#8217;t think it requires &#8220;attitude&#8221; or claims of &#8220;nefarious purposes&#8221; to suggest that Microsoft has been more than a little ham-fisted when it comes to web standards.</p>
<p>Please, yes, let&#8217;s start talking about the customer.  Let&#8217;s talk about how diverging from established standards perpetuates vendor lock-in.  Let&#8217;s talk about customers and how they will need to forget what they know about established web standards and learn new replacement markup, used only in OOXML.  Let&#8217;s talk about customers and how moving to OOXML locks them into not only Office, but Windows as well.  I am very concerned about customers and what this all means for them.</p>
<p>There is the old joke, that the nice thing about standards is that you have so many to choose from.  But that is an old joke, and I&#8217;m not laughing anymore.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ray</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-43</link>
		<dc:creator>ray</dc:creator>
		<pubDate>Fri, 18 Aug 2006 10:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-43</guid>
		<description>Hi Rob&lt;br/&gt;&lt;br/&gt;You are absolutely right in holding up the TC45 work to a high standard and raising the questions you do.&lt;br/&gt;&lt;br/&gt;I&#039;d love to hear from Microsoft the exact reasons they did not originally set out using the MathML and SVG standards in their document formats. However, I also believe that when (if?) they explain why, there will probably be very good technical reasons they made that decision at the time.&lt;br/&gt;&lt;br/&gt;However, the attitude I was talking about has more to do with the wording of your articles and the perception that you create that Microsoft make these decisions for nefarious purposes.&lt;br/&gt;&lt;br/&gt;I think everyone needs to move beyond the them vs us attitude and start thinking about the fact that there WILL be two document standards, one based Sun&#039;s initial work and one based on Microsoft&#039;s work.&lt;br/&gt;&lt;br/&gt;Both standards will have flaws, omissions, workarounds and trade-offs, as all other specifications do, and will be refined over time.&lt;br/&gt;&lt;br/&gt;It&#039;s time to start thinking about the customers of these two formats and how they will interoperate.</description>
		<content:encoded><![CDATA[<p>Hi Rob</p>
<p>You are absolutely right in holding up the TC45 work to a high standard and raising the questions you do.</p>
<p>I&#8217;d love to hear from Microsoft the exact reasons they did not originally set out using the MathML and SVG standards in their document formats. However, I also believe that when (if?) they explain why, there will probably be very good technical reasons they made that decision at the time.</p>
<p>However, the attitude I was talking about has more to do with the wording of your articles and the perception that you create that Microsoft make these decisions for nefarious purposes.</p>
<p>I think everyone needs to move beyond the them vs us attitude and start thinking about the fact that there WILL be two document standards, one based Sun&#8217;s initial work and one based on Microsoft&#8217;s work.</p>
<p>Both standards will have flaws, omissions, workarounds and trade-offs, as all other specifications do, and will be refined over time.</p>
<p>It&#8217;s time to start thinking about the customers of these two formats and how they will interoperate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-42</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Fri, 18 Aug 2006 01:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-42</guid>
		<description>Hi Ray,&lt;br/&gt;&lt;br/&gt;I believe I&#039;ve stated this elsewhere on the website, but for the record what I write here are my words and do not necessarily represent the views or positions of my colleagues at IBM, OASIS or any other organization I&#039;m involved with.&lt;br/&gt;&lt;br/&gt;In any case I&#039;d hesitate to stereotype the motivation of those who support ODF.  The support is broad-based and diverse, from many quarters in government, education, nonprofit, commerce, industry as well as the open-source and standards communities.  The move toward ODF is global and it ranges from individual preferences to national mandates.  I imagine the motivations are equally diverse.  &lt;br/&gt;&lt;br/&gt;Keep in mind that (to my knowledge at least) I&#039;m the only one out here taking a deep technical dive into OOXML to let some light in on what some the deficiencies are, from a standards perspective.  I have no gripe against Microsoft or Office per-se.  What they would do for their own proprietary Office formats would be of little interest to me personally.  For example, you will not see me talking about the still undocumented and proprietary formats used by Visio, Project, OneNote or Access.&lt;br/&gt;&lt;br/&gt;But when Microsoft submitted OOXML to Ecma for consideration as a standard, and made it clear that they intended to move this forward through ISO as an international standard, then I think this is no longer merely one vendor&#039;s private matter, immune from criticism.  When it crosses that line then it should be evaluated from a more stringent perspective, and criticism on how it contradicts existing standards, or makes it difficult for other implementors to work with it, etc., are all legitimate questions.   &lt;br/&gt;&lt;br/&gt;Standards are not about a single player with monopolistic powers in a given market ramming though a specification in order to collect an imprimatur to wear as a fig leaf for government sales.  Web standards work in an ecosystem of existing standards, tools, knowledge, open source codes, design principles, etc.   Is it inflexible to believe that a format that aspires to be an international standard should use relevant standards as well?  If so, then count me inflexible on that point.</description>
		<content:encoded><![CDATA[<p>Hi Ray,</p>
<p>I believe I&#8217;ve stated this elsewhere on the website, but for the record what I write here are my words and do not necessarily represent the views or positions of my colleagues at IBM, OASIS or any other organization I&#8217;m involved with.</p>
<p>In any case I&#8217;d hesitate to stereotype the motivation of those who support ODF.  The support is broad-based and diverse, from many quarters in government, education, nonprofit, commerce, industry as well as the open-source and standards communities.  The move toward ODF is global and it ranges from individual preferences to national mandates.  I imagine the motivations are equally diverse.  </p>
<p>Keep in mind that (to my knowledge at least) I&#8217;m the only one out here taking a deep technical dive into OOXML to let some light in on what some the deficiencies are, from a standards perspective.  I have no gripe against Microsoft or Office per-se.  What they would do for their own proprietary Office formats would be of little interest to me personally.  For example, you will not see me talking about the still undocumented and proprietary formats used by Visio, Project, OneNote or Access.</p>
<p>But when Microsoft submitted OOXML to Ecma for consideration as a standard, and made it clear that they intended to move this forward through ISO as an international standard, then I think this is no longer merely one vendor&#8217;s private matter, immune from criticism.  When it crosses that line then it should be evaluated from a more stringent perspective, and criticism on how it contradicts existing standards, or makes it difficult for other implementors to work with it, etc., are all legitimate questions.   </p>
<p>Standards are not about a single player with monopolistic powers in a given market ramming though a specification in order to collect an imprimatur to wear as a fig leaf for government sales.  Web standards work in an ecosystem of existing standards, tools, knowledge, open source codes, design principles, etc.   Is it inflexible to believe that a format that aspires to be an international standard should use relevant standards as well?  If so, then count me inflexible on that point.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ray</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-41</link>
		<dc:creator>ray</dc:creator>
		<pubDate>Thu, 17 Aug 2006 23:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-41</guid>
		<description>Rob, if your attitude towards Microsoft is representative of the attitude of people working on ODF, it is no wonder that Microsoft would not join.&lt;br/&gt;&lt;br/&gt;You might have your reasons, but it is this inflexible &quot;they cannot do anything right&quot; approach that will ensure there won&#039;t ever be a real dialogue that can bridge the gap between ODF and Microsoft.</description>
		<content:encoded><![CDATA[<p>Rob, if your attitude towards Microsoft is representative of the attitude of people working on ODF, it is no wonder that Microsoft would not join.</p>
<p>You might have your reasons, but it is this inflexible &#8220;they cannot do anything right&#8221; approach that will ensure there won&#8217;t ever be a real dialogue that can bridge the gap between ODF and Microsoft.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-39</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 17 Aug 2006 22:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-39</guid>
		<description>&quot;Just couldn&#039;t find a way&quot;? Nonsense. OpenDocument uses MathML, and handles change tracking and styling.  The only plausible explanation is that Microsoft is trying to PREVENT interoperability, by creating its own complete non-standard-everything.  In Microsoft&#039;s head, you must re-implement every existing function, in a non-standard way.  The ECMA standard appears to be a charade, to fool gullible governments into locking themselves into a single vendor, again.</description>
		<content:encoded><![CDATA[<p>&#8220;Just couldn&#8217;t find a way&#8221;? Nonsense. OpenDocument uses MathML, and handles change tracking and styling.  The only plausible explanation is that Microsoft is trying to PREVENT interoperability, by creating its own complete non-standard-everything.  In Microsoft&#8217;s head, you must re-implement every existing function, in a non-standard way.  The ECMA standard appears to be a charade, to fool gullible governments into locking themselves into a single vendor, again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-38</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Wed, 16 Aug 2006 13:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-38</guid>
		<description>I did read the article, thanks.&lt;br/&gt;&lt;br/&gt;Clipboard support?  What does this clipboard support buy me when running a Linux server?  With XML formats we need to think outside of the Windows/Office System and think of all the other places we can do document processing.  The format itself should contain the standard formats, not relying on some outside process to provide it.&lt;br/&gt;&lt;br/&gt;&quot;Just couldn&#039;t find a way&quot;?  Really?  Microsoft can&#039;t figure this out?  Has the topic even been brought up for discussion at Ecma TC45 meetings?  Perhaps it is worth another set of eyes on the problem?  Perhaps requesting expert comments on this specific issue from the W3C?  If Microsoft is having technical problems finding a way to integrate MathML into OOXML I&#039;m sure many would step into help if asked.&lt;br/&gt;&lt;br/&gt;On the other hand, if integrating change tracking and styling honestly required throwing away all of MathML and creating a new XML mathematical equation markup, if this was truly the only way to get the job done, then this speaks volumes about OOXML and how hard it is to work with.  &lt;br/&gt;&lt;br/&gt;Why would one want to work with OOXML at all if its own authors claim it is so inflexible they cannot integrate standards like SVG or MathML into it, and instead need to come up with proprietary replacements? Does the X in XML stand for eXtensible or eXpendable?</description>
		<content:encoded><![CDATA[<p>I did read the article, thanks.</p>
<p>Clipboard support?  What does this clipboard support buy me when running a Linux server?  With XML formats we need to think outside of the Windows/Office System and think of all the other places we can do document processing.  The format itself should contain the standard formats, not relying on some outside process to provide it.</p>
<p>&#8220;Just couldn&#8217;t find a way&#8221;?  Really?  Microsoft can&#8217;t figure this out?  Has the topic even been brought up for discussion at Ecma TC45 meetings?  Perhaps it is worth another set of eyes on the problem?  Perhaps requesting expert comments on this specific issue from the W3C?  If Microsoft is having technical problems finding a way to integrate MathML into OOXML I&#8217;m sure many would step into help if asked.</p>
<p>On the other hand, if integrating change tracking and styling honestly required throwing away all of MathML and creating a new XML mathematical equation markup, if this was truly the only way to get the job done, then this speaks volumes about OOXML and how hard it is to work with.  </p>
<p>Why would one want to work with OOXML at all if its own authors claim it is so inflexible they cannot integrate standards like SVG or MathML into it, and instead need to come up with proprietary replacements? Does the X in XML stand for eXtensible or eXpendable?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-36</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 16 Aug 2006 08:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-36</guid>
		<description>Rob, have you looked at Brian Jones&#039; &lt;a HREF=&quot;http://blogs.msdn.com/brian_jones/archive/2006/08/16/700494.aspx&quot; REL=&quot;nofollow&quot; rel=&quot;nofollow&quot;&gt;response&lt;/a&gt; to this post? He raises points about integration with document level features like change tracking, styling etc that seem to make sense to me.&lt;br/&gt;&lt;br/&gt;Also, the fact that they support MathML clipboard exchange seems to indicate to me that they really thought about this, but just couldn&#039;t find a way to represent their feature set in MathML.&lt;br/&gt;&lt;br/&gt;Finally, on your suggestion to extend MathML in those areas where it lacks. First, those features seem to be not specific mathematical rarities, but rather some very common things that would effect allmost every element (like change tracking or styling). Second, I can fully understand why Microsoft is shying away from this embrace and extend approach lately. They have been accused of that approach quite a bit in the past, to now suggest to them to continue with it seems quite strange.</description>
		<content:encoded><![CDATA[<p>Rob, have you looked at Brian Jones&#8217; <a HREF="http://blogs.msdn.com/brian_jones/archive/2006/08/16/700494.aspx" REL="nofollow" rel="nofollow">response</a> to this post? He raises points about integration with document level features like change tracking, styling etc that seem to make sense to me.</p>
<p>Also, the fact that they support MathML clipboard exchange seems to indicate to me that they really thought about this, but just couldn&#8217;t find a way to represent their feature set in MathML.</p>
<p>Finally, on your suggestion to extend MathML in those areas where it lacks. First, those features seem to be not specific mathematical rarities, but rather some very common things that would effect allmost every element (like change tracking or styling). Second, I can fully understand why Microsoft is shying away from this embrace and extend approach lately. They have been accused of that approach quite a bit in the past, to now suggest to them to continue with it seems quite strange.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-31</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sat, 12 Aug 2006 02:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-31</guid>
		<description>Paul, you know equations in Word better than almost anyone, so I&#039;ll take your word for it that OMML is closer to the internal representation in Word.  Clearly the best choice from the sole perspective of reducing Microsoft&#039;s effort is to make as much as possible of OOXML be a one-to-one mapping to the internal Office representations.  That is the easiest approach, but I&#039;ll argue that this is not the only approach, and certainly not the optimal approach, when taking the broader view of the industry and users.&lt;br/&gt;&lt;br/&gt;When a specification has aspirations to be an international standard, I think it is fair to ask to what extent the specification is being written to advantage a single vendor, to perpetuate vendor lock-in, to ignore or even contradict relevant existing standards, and to make life more difficult for those who will need to work with the standard.  I think these are legitimate points to raise.&lt;br/&gt;&lt;br/&gt;Does OMML represent more forms than MathML can?  I have not heard that argument made, but let&#039;s follow that logic for a bit.  What % of formulas in use in Word documents do you think can be represented in MathML today?  95%?  99%?  What I would have done is used MathML as the base equation representation so the most common-case would be pure MathML.  Then for that extra 1% or so of features that MathML lacked, I would add elements/attributes in my own name space.  At the same time I would work with the W3C to enhance the next version of MathML so it included that additional 1%.  That would give you full-fidelity as well as work with the establish community of MathML users and vendors.  Would it require more work in defining the specification?  Yes, most good things do.&lt;br/&gt;&lt;br/&gt;The point is you don&#039;t throw out a well-established web standard (and they entire ecosystem that has developed around it) and make a new specification just because it is missing your 1%.  That way of doing business is based on fear, the fear of standards, the fear of openness and the fear of interoperability.</description>
		<content:encoded><![CDATA[<p>Paul, you know equations in Word better than almost anyone, so I&#8217;ll take your word for it that OMML is closer to the internal representation in Word.  Clearly the best choice from the sole perspective of reducing Microsoft&#8217;s effort is to make as much as possible of OOXML be a one-to-one mapping to the internal Office representations.  That is the easiest approach, but I&#8217;ll argue that this is not the only approach, and certainly not the optimal approach, when taking the broader view of the industry and users.</p>
<p>When a specification has aspirations to be an international standard, I think it is fair to ask to what extent the specification is being written to advantage a single vendor, to perpetuate vendor lock-in, to ignore or even contradict relevant existing standards, and to make life more difficult for those who will need to work with the standard.  I think these are legitimate points to raise.</p>
<p>Does OMML represent more forms than MathML can?  I have not heard that argument made, but let&#8217;s follow that logic for a bit.  What % of formulas in use in Word documents do you think can be represented in MathML today?  95%?  99%?  What I would have done is used MathML as the base equation representation so the most common-case would be pure MathML.  Then for that extra 1% or so of features that MathML lacked, I would add elements/attributes in my own name space.  At the same time I would work with the W3C to enhance the next version of MathML so it included that additional 1%.  That would give you full-fidelity as well as work with the establish community of MathML users and vendors.  Would it require more work in defining the specification?  Yes, most good things do.</p>
<p>The point is you don&#8217;t throw out a well-established web standard (and they entire ecosystem that has developed around it) and make a new specification just because it is missing your 1%.  That way of doing business is based on fear, the fear of standards, the fear of openness and the fear of interoperability.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Topping</title>
		<link>http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-30</link>
		<dc:creator>Paul Topping</dc:creator>
		<pubDate>Fri, 11 Aug 2006 22:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.robweir.com/blog/2006/08/math-you-cant-use.html#comment-30</guid>
		<description>Although I am a staunch proponent of MathML, I think the criticism that OMML doesn&#039;t use MathML is not really fair. I suspect that one of Microsoft&#039;s goals in OMML was to represent the math in their documents in an absolutely faithful way. Since their internal representation is not MathML, it&#039;s XML representation can&#039;t be either without incurring conversion errors.&lt;br/&gt;&lt;br/&gt;Your criticism amounts to a complaint that they should have based their equation editing features on MathML. There are a number of legitimate reasons why they might make such a decision. For one thing, MathML doesn&#039;t really support all possible math forms. Perhaps it should but it doesn&#039;t. &lt;br/&gt;&lt;br/&gt;Paul Topping&lt;br/&gt;Design Science</description>
		<content:encoded><![CDATA[<p>Although I am a staunch proponent of MathML, I think the criticism that OMML doesn&#8217;t use MathML is not really fair. I suspect that one of Microsoft&#8217;s goals in OMML was to represent the math in their documents in an absolutely faithful way. Since their internal representation is not MathML, it&#8217;s XML representation can&#8217;t be either without incurring conversion errors.</p>
<p>Your criticism amounts to a complaint that they should have based their equation editing features on MathML. There are a number of legitimate reasons why they might make such a decision. For one thing, MathML doesn&#8217;t really support all possible math forms. Perhaps it should but it doesn&#8217;t. </p>
<p>Paul Topping<br />Design Science</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.488 seconds -->
