The noindent option to the scripture environment adds extra vertical space when the following conditions are met:
The scripture environment is at the beginning of a minipage environment.
The scripture environment begins with one of its inner environments (center, flushright, hanging, narrow or poetry).
Test file
\documentclass[a4paper,twocolumn]{article}
\input{regression-test}
\usepackage{scripture}
\pagestyle{empty}
\begin{document}
\START
\showoutput
\noindent
\begin{minipage}{\linewidth}
\begin{scripture}
\begin{poetry}
\vs{2}Hear me, you heavens! Listen, earth!
For the \textsc{Lord} has spoken:
‘I reared children and brought them up,
but they have rebelled against me.
\end{poetry}
\end{scripture}
\end{minipage}
\newpage
\noindent
\begin{minipage}{\linewidth}
\begin{scripture}[][noindent]
\begin{poetry}
\vs{2}Hear me, you heavens! Listen, earth!
For the \textsc{Lord} has spoken:
‘I reared children and brought them up,
but they have rebelled against me.
\end{poetry}
\end{scripture}
\end{minipage}
\end{document}
The
noindent
option to thescripture
environment adds extra vertical space when the following conditions are met:scripture
environment is at the beginning of aminipage
environment.scripture
environment begins with one of its inner environments (center
,flushright
,hanging
,narrow
orpoetry
).Test file