docx generowany przez pandoc pomija zmienne kursywne w równaniach

Mam następujący segment Markdown z wbudowanymi równaniami LaTeX:

# Fisher's linear discriminant

\newcommand{\cov}{\mathrm{cov}}
\newcommand{\A}{\mathrm{A}}
\renewcommand{\B}{\mathrm{B}}
\renewcommand{\T}{^\top}

The first method to find an optimal linear discriminant was proposed by Fisher
(1936), using the ratio of the between-class variance to the within-class variance
of the projected data, $d(\vec x)$, as a criterion. Expressed in terms of the
sample properties, the $p$-dimensional centroids $\bar {\vec x}_\A$ and
$\bar {\vec x}_\B$ and the $p \times p$ covariance matrices
$S_A = \cov_i ( \vec x_{\A i} )$ and $S_B = \cov_i ( \vec x_{\B i} )$, the
optimal direction is given by 
$
\vec w = \left ( \frac{ S_A + S_B }{2} \right ) ^{-1}
~ ( \bar {\vec x}_\B - \bar {\vec x}_\A ).
$

Kiedy konwertuję go za pomocą pandoc na LaTeX i kompiluję go za pomocą xelatex, otrzymuję oczekiwany tekst z ładnie renderowaną matematyką. Kiedy konwertuję go za pomocą pandoc na MS Word

pandoc test.text -o test.docx

i otwórz go w MS Office Word 2007, otrzymam następujące informacje:

Tylko te części równań, które są symbolami lub tekstem prostym, są renderowane poprawnie, podczas gdy nazwy zmiennych kursywą są zastępowane znakiem zapytania w polu.

Jak mogę to zrobić?

questionAnswers(3)

yourAnswerToTheQuestion