Reputation: 196
I need to place latex formulas in list. With markdown:
<ol>
<li> $x_1$ </li>
<li> $x_2$ </li>
</ol>
I get:
As you can see, latex is not applied. How to fix it or what are the alternative ways to realise list with latex formulas?
Upvotes: 2
Views: 2014
Reputation: 136968
Visual Studio Code seems to render this just fine if you use Markdown syntax for your list instead of HTML:
1. $x_1$
1. $x_2$
Upvotes: 3