Home > Net >  Latex formulas and lists in Jupyter notebook markdown with VS code
Latex formulas and lists in Jupyter notebook markdown with VS code

Time:03-02

I need to place latex formulas in list. With mardown:

<ol>
    <li> $x_1$  </li>
    <li> $x_2$  </li>
</ol>

I get:

enter image description here

As you can see latex is not applyed. How to fix it or what are the alternative ways to realise list with latex formulas?

CodePudding user response:

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$

Screenshot of VSCode's rendering

  • Related