MacTex 2016 格式问题

MacTex 2016 格式问题

我最近更新到了 MacTex 2016。更新后,内边距和底边距增加了一个神秘的超宽边距,每页上的所有文本和图像在 pdf 输出中都被挤到了页面的右上象限。这是错误吗?有人有什么建议吗?

\documentclass[12pt,british,twoside,openany,pagesize=false,headings=small]{scrbook}
\usepackage{fontspec}
\usepackage{microtype}
\usepackage{ragged2e}

\usepackage{babel}

\usepackage[automark,headsepline=.25pt]{scrlayer-scrpage}
\addtokomafont{pageheadfoot}{\scshape\small}%changed to small caps in headers
\clearpairofpagestyles% remove default header and footer content
\cehead{Ben Francis}
\cohead{\rightmark}% section in header
\ofoot{} %Author Name
\ifoot{} % Chapter Number
\ohead{\pagemark}

\usepackage{geometry}
\geometry{paperwidth=5.06in,paperheight=7.81in,
    verbose,
    margin=0.75in,
    headheight=0.1in,
    headsep=0.15in,
    footskip=0.45in,
    }
\renewcommand*\raggedsection{\centering}

\addtokomafont{disposition}{\rmfamily} %for headings
\setkomafont{section}{\fontsize{35}{30}\selectfont}
\setkomafont{subsubsection}{\small}

\linespread{1.05}

\usepackage{lipsum}% dummy text
\begin{document}
\addchap{ONE}
\addsec{First section}
\lipsum
\addchap{TWO}
\addsec{Second section}
\lipsum
\addchap{THREE}
\addsec{Third section}
\lipsum
\end{document}

答案1

geometry在软件包更新之前,您可以使用

\RequirePackage{luatex85}

在第一行提供新的 luatex 和 pdftex 之间的兼容层。

luatex85geometry2018/03/24 v5.7不再需要

相关内容