Recently I'm trying to create an ebook. I tried to write the words in Markdown and convert it to epub using Pandoc. There is this LaTex thing got me in trouble.
I have this line: <A,B,C,D>, which should be written in LaTex, and I used
$\left\langle A,B,C,D \right\rangle$
in Markdown. This formula displays well in Markdown editor and the html converted by Pandoc. But when I convert this file to epub using Pandoc, the angle brackets just went missing. The rest of the fomula was displaying very well, only the brackets were missing.
Does anyone know how to do this? Thank you.