Answers for "jupyter markup"

6

Jupyter markdown

Jupyter Markdown Notation

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Normal

*Italics* or _Italics_

**Bold** or __Bold__

**_Bold and Italics_**

~~Strike Through~~    

* Bullet Point or
- Bullet Point or
+ Bullet Point

1. Numbered
    1. Sub Number

www.google.com
Posted by: Guest on April-17-2020
0

summation in jupyter markdown

$e^{i\pi} + 1 = 0$
Posted by: Guest on May-09-2020
0

jupyter markup

How to format Markdown cells in Jupyter notebooks:

Headings
# for titles
## for major headings
### for subheadings
#### for 4th level subheadings

Emphasis
Bold text: __string__ or **string**
Italic text: _string_ or *string*

Mathematical symbols
$ mathematical symbols $

Monospace font
`string`

Line breaks
<br>

Indenting
> Text that will be indented when the Markdown is rendered.

Bullets
- Bulleted item
 - Bulleted item
* Bulleted item
- Main bullet point
     - Sub bullet point

Numbered lists
1. Numbered item
1. Numbered item
     1. Substep

Graphics
<img src=“url/filename.gif” alt=“Alt text” title=“Title text” />

Geometric shapes
Use &# followed by the decimal or hex reference number for the shape, for example:
&#reference_number

Horizontal lines
***

Internal links
[Section title](#section-title)
<a id="section_ID"></a>
[Section title](#section_ID)

External links
__[link text](http://url)__
Posted by: Guest on September-08-2021
-1

summation in jupyter markdown

$$e^x=\sum_{i=0}^\infty \frac{1}{i!}x^i$$
Posted by: Guest on May-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language