Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jupyter markdown not working

I am trying to display bold words, equations and italic notes on my Jupyter notebook. However, I can only write comments with a '#' symbol and any other attempts to create indentation, bold words and equations are not working.

I need to be able to display Math notations such as:

$^1/_2$
${3 \over 4}$

Could I be missing a library import or anything similar ?

I'm using Jupyter version 5.0 and Anaconda with Python 3.5

like image 711
Dinesh Avatar asked Sep 18 '25 09:09

Dinesh


2 Answers

You need to convert the cell to a Markdown-type cell. You can do this in command mode by selecting the cell and pressing m (if the cell is in edit mode with a green border, press Esc first), or by choosing the "Markdown" type from the dropdown in the center of the menu bar.

like image 165
darthbith Avatar answered Sep 21 '25 01:09

darthbith


Alternatively, you can start the cell using the cell magic %%markdown and then run that cell.

like image 29
doraemon Avatar answered Sep 21 '25 01:09

doraemon