如何在两页而不是一页上使用 \stretch 命令

如何在两页而不是一页上使用 \stretch 命令

我尝试使用 \stretch 命令来分隔文本片段(用于音乐会节目单),效果非常好,但我不知道如何将这个设计扩展到两页。
显然我可以在中间写一个 \newpage,但感觉应该有一种自动的方法将内容均匀地分布在两页上。感谢您的任何建议。

我添加了一个不包含所有宏内容的最小示例:

\documentclass[a5paper, 12pt]{article}

\newcommand\newpiece{\vspace{\stretch{1}}}

\begin{document}

Text \hfill Text2 \par
Text \hfill Text \par
\hfill King of Denmark’s Galliard

\newpiece
John Loeillet   \hfill Sonate No. 5 g-moll

\newpiece
Modified Composer \hfill Sonate No. 5 g-moll modified 

\newpiece
Modified Composer \hfill Sonate No. 5 g-moll modified 

\newpiece
Modified Composer \hfill Sonate No. 5 g-moll modified 

\newpiece
Modified Composer \hfill Sonate No. 5 g-moll modified 

\newpiece
Modified Composer \hfill Sonate No. 5 g-moll modified 

\end{document}

答案1

您可以使用\vsplit,但对于像这样的文档,我认为视觉格式更好。

\documentclass[a5paper, 12pt]{article}

\newcommand\newpiece{\vspace{\stretch{1}}}

\begin{document}

Text \hfill Text2 \par
Text \hfill Text \par
\hfill King of Denmark’s Galliard

\newpiece
John Loeillet   \hfill Sonate No. 5 g-moll

\newpiece
Modified Composer \hfill Sonate No. 5 g-moll modified 

\newpiece
Modified Composer \hfill Sonate No. 5 g-moll modified 

\newpiece
Modified Composer \hfill Sonate No. 5 g-moll modified 

\newpiece
Modified Composer \hfill Sonate No. 5 g-moll modified 

\newpiece
Modified Composer \hfill Sonate No. 5 g-moll modified 

\end{document}

在此处输入图片描述

相关内容