Indent

Unofficial ConTeXt Wiki mirror

Last modified: 2025-01-05

On this page I will put some info about using indent.

Standard no indentation is used:


When you want indentation you use:


When you do not want indentation on the first paragraph you use:


The only problem is that when using context instead of texexec the paragraph after a blank is not seen as a first paragraph:

\setupindenting[yes,medium,next]

\starttext

\input knuth

\blank

\input knuth

\stoptext


This can be solved in the following way:

\setupindenting[yes,medium,next]

\usemodule[fancybreak]

\definefancybreak[myblank][indentnext=no]

\starttext

\input knuth

\myblank

\input knuth

\stoptext


We have the same problem with a flowchart:


This can be solved in the following way: