Jupyter Markdown Shortcut



.to markdown R to raw 1 to heading 1 2,3,4,5,6 to heading 2,3,4,5,6 Up/K select cell. Jupyter Notebook Keyboard Shortcuts. Pycharm - Markdown syntax for table in Jupyter PyCharm pycharm.

Markdown is a simple text-to-HTML markup language written in plain text. Jupyter notebook recognizes markdown and renders markdown code as HTML. In this section, we present the basic features of markdown.

See Markdown (by John Gruber) and GitHub Markdown Help for more information.

Text

OutputSyntax
emphasis*emphasis*
strong**strong**
code`code`

Headings

OutputSyntax
# Heading 1

Heading 2

## Heading 2

Heading 3

### Heading 3

Heading 4

#### Heading 4
Heading 5
##### Heading 5
Heading 6
###### Heading 6

Lists

Jupyter Markdown Shortcut

Create an ordered list using numbers:

  1. Number theory
  2. Algebra
  3. Partial differential equations
  4. Probability

Create an unordered list using an asterisk * for each item:

  • Number theory
  • Algebra
  • Partial differential equations
  • Probability

Use indentation to create nested lists:

  1. Mathematics
    • Calculus
    • Linear Algebra
    • Probability
  2. Physics
    • Classical Mechanics
    • Relativity
    • Thermodynamics
  3. Biology
    • Diffusion and Osmosis
    • Homeostasis
    • Immunology
Jupyter markdown shortcuts

Links

Create a link with the syntax [description](url). For example:

creates the link UBC Math.

Images

Include an image using the syntax ![description](url). For example:

displays the image

Tables

Create a table by separating entries by pipe characters |:

Python OperatorDescription
+addition
-subtraction
*multiplication
/division
**power

The syntax :---: specifies the alignment (centered in this case) of the columns. See more about GitHub flavoured markdown.

Exercises

  1. Create a numbered list of the top 5 websites you visit most often and include a link for each site.
  2. Write a short biography of your favourite mathematician, provide a link to their Wikipedia page and include an image (with a link and description of the source).
  3. Create a table of all the courses that you have taken in university. Include the columns: course number, course title, year (that you took the class), and instructor name.

Jump to: Command Mode (press Esc to enable), Edit Mode (press Enter to enable)

Enter

enter edit mode

Shift+­Enter

run cell, select below

Ctrl+Enter

run cell

Alt+Enter

run cell, insert below

Y

to code

M

to markdown

R

to raw

1

to heading 1

2,3,4,5,6

to heading 2,3,4,5,6

Up/K

select cell above

Down/J

select cell below

A/B

insert cell above/­below

X

cut selected cell

C

copy selected cell

Shift+V

paste cell above

V

paste cell below

Z

undo last cell deletion

D

delete selected cell

Shift+M

merge cell below

Ctrl+S

Save and Checkpoint

L

toggle line numbers

O

toggle output

Shift+O

toggle output scrolling

Esc

close pager

H

show keyboard shortcut help dialog

I

interrupt kernel

0

restart kernel

Space

scroll down

ShiftSpace

scroll up

Shift

ignore

Tab

code completion or indent

Shift+Tab

tooltip

Ctrl+]

indent

Ctrl+[

dedent

Ctrl+A

select all

Ctrl+Z

undo Free software.

Ctrl+S­hift+Z

redo

Ctrl+Y

redo

Ctrl+Home

go to cell start

Ctrl+Up

go to cell start

Ctrl+End

go to cell end

Ctrl+Down

go to cell end

Ctrl+Left

go one word left

Ctrl+Right

go one word right

Ctrl+B­ack­space

delete word before

Ctrl+D­elete

delete word after

Esc

command mode

Ctrl+M

command mode

Ctrl+S­hift+minus

split cell

Ctrl+S

Save and Checkpoint

Up

move cursor up or previous cell

Down

move cursor down or next cell

Ctrl+/

toggle comment on current or selected lines

Created by SarthakMenpara on 6/19/2017

Jupyter Markdown Shortcut

0 Comments for 'Jupyter Notebook '