我想设计一本包含诗歌的专业书籍。我应该使用什么模板?
答案1
请参阅 LaTeX 包verse
来排版诗歌:http://www.ctan.org/tex-archive/macros/latex/contrib/verse/
答案2
我强烈推荐memoir
latex 的 document 类。它有自己的verse
环境版本,还有许多其他好东西。查看回忆录手册中的部分,它本身就是一件美丽的东西。
无论如何,我从回忆录中收集到的相关内容如下。重新定义宏 \PoemTitle 使原本居中的诗歌标题与诗歌主体的左边缘齐平。
\documentclass[a5paper,10pt,twoside]{memoir}
\renewcommand{\PoemTitlefont}{%
\normalfont\scshape\flushleft% Remove centering from poem title
\hspace*{0.5\linewidth}\hspace*{-0.5\versewidth}}% Makes poem title flush left with body block.
\checkandfixthelayout
\begin{document}
\settowidth{\versewidth}{my looooongest poem line}
\PlainPoemTitle % Removes the counter from \PoemTitle
\PoemTitle{My Poem Title}
\begin{verse}[\versewidth]
This is my poem,\\
isn't it nice?\\
This is my poem,\\
please read it twice\\
and one,\\
loooooooooooong poem line\\
right at the end!\\
\end{verse}
\end{document}