vbox 内的文本在页面中消失

vbox 内的文本在页面中消失

我正在使用下面的vbox方法插入大量文本,但不幸的是文本不会延续到下一页。例如,如果文本长度为 20 行,则只有前 10 行会出现到页面末尾,然后其余文本会消失。我希望文本正常延续到下一页。我该如何解决这个问题?

\newcommand\bioname{\NINE Biographical notes:}
\newbox\t@bio
\def\bio{\@ifnextchar[{\@bio}{\@bio[]}}
\def\@bio[#1]{%
 \global\setbox\t@bio=\vbox\bgroup%
    \parindent10pt\leftskip 10.75pc%\rightskip 3pc%
    \noindent{\bf\TEN \bioname}\ %\vskip 12.8pt
    \noindent\NINE%
    \ignorespaces}%
\def\endbio{\egroup}

相关内容