Create table in Jupiter Notebook?

Us
4

The usual latex commands for a table don't work in Jupiter:

\ begin {tabular} {c | c | c | l | r}
\ hline
\ multicolumn {3} {c} {heise} & tips & tricks \\
\ hline
1 & 2 & 3 & 4 & 5 \\
\ hline
\ end {tabular}

I have to enter a Buntcher tableau into the Jupiter Lab:

e.g. (see picture):

1 | 0
1 | 1 1
----------
| 1 1

How can this be realized?

Thanks in advance

Create table in Jupiter Notebook
So

Text is formatted in Markdown in Jupyter Notebooks.

Us

Latex works fine with the rest, only not with tables. Then how do you make a table like the one I need in markdown? Find nothing suitable there

So

1
1 | 0
1 |
1 |
| -------- | -------- | ------- |
| | 1 | 1

Otherwise try the Markdown table generator:

https://www.tablesgenerator.com/markdown_tables

Us

Thank you, in that case it is not possible with the vertical lines.