我正在尝试通过空行来强制执行诗节中断,如诗句包文档中所述。
在这一 MWE 中,似乎没有出现节间断裂的情况:
\documentclass{memoir}
\usepackage{verse}
\begin{document}
\settowidth{\versewidth}{Not the least obeisance made he; not a minute stopped or stayed he;}
\begin{verse}[\versewidth]
Open here I flung the shutter, when, with many a flirt and flutter,\\
In there stepped a stately Raven of the saintly days of yore.\\
Not the least obeisance made he; not a minute stopped or stayed he;\\
But, with mien of lord or lady, perched above my chamber door\textemdash\\
Perched upon a bust of Pallas just above my chamber door\textemdash\\
\vin Perched, and sat, and nothing more.\\
Then this ebony bird beguiling my sad fancy into smiling,\\
By the grave and stern decorum of the countenance it wore,\\
``Though thy crest be shorn and shaven, thou,'' I said, ``art sure no craven,\\
Ghastly grim and ancient Raven wandering from the Nightly shore\textemdash\\
Tell me what thy lordly name is on the Night's Plutonian shore!''\\
\vin Quoth the Raven, ``Nevermore.''\\
\end{verse}
\end{document}
如果我插入一个\medskip
来代替空白行,我就会得到一个节分隔符。
我认为诗歌包的作者有意用一个简单的空白行来中断。
有人能告诉我我做错了什么吗?
答案1
不要以 结束该节\\
,那么它就可以起作用:
\documentclass{memoir}
\usepackage{verse}
\begin{document}
\settowidth{\versewidth}{Not the least obeisance made he; not a minute stopped or stayed he;}
\begin{verse}[\versewidth]
Open here I flung the shutter, when, with many a flirt and flutter,\\
In there stepped a stately Raven of the saintly days of yore.\\
Not the least obeisance made he; not a minute stopped or stayed he;\\
But, with mien of lord or lady, perched above my chamber door\textemdash\\
Perched upon a bust of Pallas just above my chamber door\textemdash\\
\vin Perched, and sat, and nothing more.
Then this ebony bird beguiling my sad fancy into smiling,\\
By the grave and stern decorum of the countenance it wore,\\
``Though thy crest be shorn and shaven, thou,'' I said, ``art sure no craven,\\
Ghastly grim and ancient Raven wandering from the Nightly shore\textemdash\\
Tell me what thy lordly name is on the Night's Plutonian shore!''\\
\vin Quoth the Raven, ``Nevermore.''
\end{verse}
\end{document}