Can AUCTeX be configured to fold the entire LaTeX preamble (i.e., hide everything before \begin{document}
)?
For example, it would be nice if the the following document:
\documentclass[letter,11pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{setspace} \doublespacing
\begin{document}
\section{Introduction}
Test document.
\end{document}
could be folded as:
[preamble]
\begin{document}
Introduction
Test document.
\end{document}
Is there a way to do this?