LaTeX2Word-Equation icon indicating copy to clipboard operation
LaTeX2Word-Equation copied to clipboard

Make "dot" and "hat" closer to the letters?

Open ballII opened this issue 5 years ago • 1 comments

https://i.imgur.com/qThklER.png

The left two symbols are \dot{z} and \hat{z}, respectively, created using this tool. However, I prefer them to look like the ones on the right, which are created by typing \dot{z} and \hat{z} directly in Word Equation.

Can I get the "dot", "hat", or "ddot" closer to the letter using this tool? Thank you.

(Word for Mac Version 15.29)

ballII avatar Nov 06 '19 20:11 ballII

The proper code for a dotted letter (with the dot close to the letter) should be

<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
  <mrow class="MJX-TeXAtom-ORD">
    <mover accent="true">
      <mi>z</mi>
      <mo>&#x0307;<!-- ˙ --></mo>
    </mover>
  </mrow>
</math>

However, this tool lacks the 'accent="true"' part. Is it possible to add this part back for the tool?

ballII avatar Nov 09 '19 07:11 ballII