Hvfloat FULLPAGE 问题

Hvfloat FULLPAGE 问题

在本章的末尾,我想添加一张整页的插图。为此,我使用了带有 FULLPAGE 选项的 hvfloat 包。

不幸的是,边距太小。如何才能在整个页面上正确显示图像。

我注意到该代码在 TeXLive 2022 版本(在 Overleaf 中)中运行良好。

编辑: 这个包很好用,但就我而言,最新版本在双面文档方面存在问题。

我下载了旧版本的软件包,并将文件放在我的工作目录中。这可以作为临时解决方案。

https://tug.org/svn/texlive/branches/branch2022/Master/texmf-dist/tex/latex/hvfloat/hvfloat.sty?revision=62886&view=co

https://tug.org/svn/texlive/branches/branch2022/Master/texmf-dist/tex/latex/hvfloat/hvfloat-fps.sty?revision=62886&view=co

%!TEX TS-program = lualatex
%!TEX encoding = UTF-8 Unicode

%\documentclass[twoside=true, mpinclude=true,  version=last, chapterprefix=true, numbers=noenddot, paper=b5, BCOR=12mm, DIV=9]{scrbook}
%\documentclass[twoside=true, mpinclude=true,  version=last, chapterprefix=true, numbers=noenddot, paper=b5, DIV=9]{scrbook}
\documentclass[twoside=true, mpinclude=true,  version=last, chapterprefix=true, numbers=noenddot, paper=b5]{scrbook}
\usepackage[demo]{graphicx}
\usepackage{hvfloat}
\usepackage{lipsum}
    
\begin{document}
\chapter{Test 1}
\lipsum{5}
\hvFloat[FULLPAGE]{figure}{\includegraphics[FULLPAGE]{example-image-a}}{caption1}{caption1a}
\chapter{Test 2}
\lipsum{2}
\hvFloat[FULLPAGE]{figure}{\includegraphics[FULLPAGE]{example-image-a}}{caption1}{caption1a}
\listoffigures


\end{document}

相关内容