--- layout: page title: "Basic Display System in Apache Zeppelin" description: "There are 3 basic display systems in Apache Zeppelin. By default, Zeppelin prints interpreter responce as a plain text using text display system. With %html directive, Zeppelin treats your output as HTML. You can also simply use %table display system to leverage Zeppelin's built in visualization." group: display --- {% include JB/setup %} # Basic Display System in Apache Zeppelin
## Text By default, Apache Zeppelin prints interpreter response as a plain text using `text` display system.
You can explicitly say you're using `text` display system.
## Html
With `%html` directive, Zeppelin treats your output as HTML
### Mathematical expressions
HTML display system automatically formats mathematical expression using [MathJax](https://www.mathjax.org/). You can use
`\\( INLINE EXPRESSION \\)` and `$$ EXPRESSION $$` to format. For example
## Table
If you have data that row separated by `\n` (newline) and column separated by `\t` (tab) with first row as header row, for example
You can simply use `%table` display system to leverage Zeppelin's built in visualization.
If table contents start with `%html`, it is interpreted as an HTML.
> **Note :** Display system is backend independent.