I learned that the reason for parindents is to provide visual clues for paragraph ends. According to some people, is an error to use both \parindent and \parskip.
Thinking about this, the logical consequence is that:
- it is an error to indent the first paragraph in a section (TeX handles this nicely)
- it is also an error to indent after vertical space
While point 2 should be prevented by not using a parskip, it is not prevented after using a list environment such as itemize. It looks odd to me to indent a paragraph after a list.
Example:
\documentclass{article}
\usepackage{lipsum}
\begin{document}
\section{Lorem Ipsum}
\lipsum
\begin{itemize}
\item \lipsum
\end{itemize}
\lipsum
\end{document}
Can I generally prevent an \indent after certain environments?
I know I can prevent the indent with \noindent. I also know I can prevent the indent by not leaving a blank line in the tex file:
\lipsum
%
\begin{itemize}
\item \lipsum
\end{itemize}
%
\lipsum
But in my understanding, it should be possible to redefine the itemize environment to prevent this indent in general.
The section command does somehow prevent the first paragraph indent, after all.
enumerate, just leave no blank line. – egreg Nov 07 '19 at 12:11