排版诗句;想要消除表格环境左侧的所有填充

排版诗句;想要消除表格环境左侧的所有填充

我正在整理威廉·考珀 (William Cowper) 的一首诗,该诗发表于 19 世纪早期的版本中。它不时使用花括号来标记押韵的三重音节(而不是通常的押韵对句)。我试图重现这种效果。

根据本网站上的一些类似问题以及我自己对tabular环境的阅读,我目前想到的解决方案是:

\documentclass[10pt]{memoir}
\usepackage{verse}
\begin{document}
\begin{verse}
  
  He breaks the cord that held him at the rack\,;\\
  And, conscious of an unincumber'd back,\\
  Snuffs up the morning air, forgets the rein,\\
  Loose fly his forelock and his ample mane\,;\\
  $\left.
  \begin{tabular}{@{}l@{}}
    Responsive to the distant neigh he neighs\,;\\
    Nor stops, till, overleaping all delays,\\
    He finds the pasture where his fellows graze.
  \end{tabular}
  \right\}$\\
  \vin Canst thou, and honour'd with a Christian name,\\
  Buy what is woman born, and feel no shame\,?\\
  
\end{verse}
\end{document}

其结果是:

Cowper 的“慈善”的 MWE 输出

它是几乎完美,但在括号内的行左边距有少量但明显的填充。

有人能建议调整我的标价以消除这种情况吗?

答案1

在此处输入图片描述

\documentclass[10pt]{memoir}
\usepackage{verse}

\begin{document}
\begin{verse}\nulldelimiterspace=0pt

  He breaks the cord that held him at the rack\,;\\
  And, conscious of an unincumber'd back,\\
  Snuffs up the morning air, forgets the rein,\\
  Loose fly his forelock and his ample mane\,;\\
  $\left.
  \begin{tabular}{@{}l@{}}
    Responsive to the distant neigh he neighs\,;\\
    Nor stops, till, overleaping all delays,\\
    He finds the pasture where his fellows graze.
  \end{tabular}
  \right\}$\\
  \vin Canst thou, and honour'd with a Christian name,\\
  Buy what is woman born, and feel no shame\,?\\
  
\end{verse}
\end{document}

相关内容