hvfloat 包中的双页标题

hvfloat 包中的双页标题

我正在尝试使用hvfloat,排版浮点数fulldoublepage,如其第 72 页所述手动的

但是,它并没有像我预期的那样工作,因为它似乎在图表的第一部分之前和之后插入了额外的空白页。它也没有像预期的那样正确排版完整的标题,如示例所示。

在现代 LaTeX 环境中,我做错了什么或包可能有问题?

\documentclass[12pt]{book}
\usepackage{blindtext}

\usepackage{hvfloat}
\begin{document}

\chapter{1}
        
        
         \blindtext[1]
         
                  
\hvFloat[%
     doubleFULLPAGE,
     capPos=before]
     {figure}{\includegraphics
     [height=\paperheight,width=2\paperwidth,
keepaspectratio=false]
{example-image-b}}% or any other image
     [Caption short]{
     Caption  that should be at the bottom of the preceding page as per hvflat manual p. 72.}{fig:3}    
         
         
                      \blindtext[2]
         
\end{document}

相关内容