Notebook interface
An overview of an multipurpose editor
Download original notebookBy the default any text in a new cell is considered to be Wolfram Language
1+1
2
To evaluate an expression press play icon or Shift+Enter
One can also hide any input cell by clicking on a ^ mark on the left side
Text cells
For typing regular text, embedding pictures, making description we use Markdown language.
To make markdown cell type in the first line of a new cell .md
, if it was an anonymous file
.md # Heading 1 ## Heading 2 Here is a regular paragraph, which can __be styled__ in a *different way*. Then press `Shift+Enter` to make an output cell. You can also hide an input cell automatically by a shortcut `Win/Cmd + 2` $\\LaTeX$ is also supported As well as regular HTML <span style="color:red">language</span>
Heading 1
Heading 2
Here is a regular paragraph, which can be styled in a different way. Then press Shift+Enter
to make an output cell.
You can also hide an input cell automatically by a shortcut Win/Cmd + 2
is also supported
As well as regular HTML
.md To embed a picture type ![alt](https://upload.wikimedia.org/wikipedia/commons/a/a0/Kilroy_was_here_%28re-drawn%29.gif)
To embed a picture type
Or just drag and drop any image file to a cell
One can also draw inside markdown cell using a special keyword
!! []
There are many more cell types are available. For example
Javascript
.js return 1+1;
return 1+1;
Mermaid
.mermaid graph LR A[Square Rect] -- Link text --> B((Circle)) A --> C(Round Rect) B --> D{Rhombus} C --> D
graph LR A[Square Rect] -- Link text --> B((Circle)) A --> C(Round Rect) B --> D{Rhombus} C --> D