dcpurton / scripture

A LaTeX style for typesetting Bible quotations
LaTeX Project Public License v1.3c
10 stars 0 forks source link

noindent option adds extra space #1

Closed dcpurton closed 2 years ago

dcpurton commented 2 years ago

The noindent option to the scripture environment adds extra vertical space when the following conditions are met:

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}