Home / Emacs / Org Babel / Source block headers
Common combinations of header arguments
- show standard output
:results output verbatim
Example: Showcase raw output from R, not converted to a table. - show the output image named
out.png
:results graphics file :file out.png
Example: Showcase a histogram computed in R. - just attempt to highlight syntax
:eval no
Example: Showcase SQL syntax definitions with highlighted keywords. - just highlight and check syntax on demand with
C-c C-C
:results none :eval no-export
Example: Showcase a function definition in Scheme. - just perform side effects on demand with
C-c C-c
:results silent :eval no-export
Example: Showcase a C program that uses OpenGL for its output.