7

According to the documentation, TeXForm uses the TraditionalForm formatting to generate the TeX code.

However, for some cases, this is not ideal. For example, it would be better to display the Feynman slash $\sum_\mu \gamma_\mu p^\mu$ as

CenterDot[γ, p]$\equiv \gamma\cdot p$ in TraditionalForm in the Mathematica front end,

but as \slashed{p}$\equiv p\!\!/\,\,$ in TeXForm (using the slashed package).

How do I tell TeXForm that each time CenterDot[γ, p_] is encountered in an expression, it should be formatted \slashed{p}?

I'm looking for a back-end solution, so that TeXForm on an input or output would automatically give the correct code. Solutions requiring more than the minimal TeXForm to generate $\TeX$ code will not be accepted.

Mr.Wizard
  • 271,378
  • 34
  • 587
  • 1,371
QuantumDot
  • 19,601
  • 7
  • 45
  • 121

1 Answers1

6

Using this answer by @jkuczm, the following works for me in version 10.3:

slashed /: MakeBoxes[slashed[x_], TraditionalForm | StandardForm] := 
 RowBox[{"\[Gamma]\[CenterDot]", ToBoxes[x]}]

System`Convert`TeXFormDump`maketex[
  RowBox[{"\[Gamma]\[CenterDot]", a_}]] := 
 "\\slashed{" <> System`Convert`TeXFormDump`MakeTeX[a] <> "}"

CenterDot[\[Gamma], x_] := slashed[x]

I define an auxiliary function slashed and give it different formatting rules for the different forms. The I define CenterDot for the special case where the first argument is γ, to be interpreted as slashed. Here is a screen shot of the formatting:

screen shot

Jens
  • 97,245
  • 7
  • 213
  • 499
  • This is a perfect solution. As a note to myself (and others), the argument of System`Convert`TeXFormDump`maketex should be a box structure in TraditionalForm. – QuantumDot Mar 16 '16 at 15:00