我迫切需要帮助解决这个问题:无论我做什么,我的 LaTeX 文档都会将标题页和章节设置在左侧。根据 scrbook 文档,它应该从右侧开始。当我明确指定此选项时,没有任何变化。我在这里做错了什么?我使用的是最新的 TeX 版本,并在 Overleaf 上尝试了同样的操作。此外,这也发生在书籍、回忆录等上...
梅威瑟:
\documentclass[
ngerman,
pdftex,
a4paper,
12pt,
twoside,
openright,
]{scrbook}
\usepackage{blindtext}
% Dokumentenanfang
\begin{document}
\begin{titlepage}
\Huge My fancy title
\end{titlepage}
\chapter{This is an awesome chapter}
\blindtext
\section{Some section}
\blindtext
\end{document}
结果可以在这里看到:右侧没有任何设置。
答案1
我认为存在一个误会...
要可视化打字区域和边距,您可以使用包showframe
。在以下 MWE 中,我更正了一些类选项,以消除日志文件中的相应警告……
使用以下 MWE
\documentclass[%
ngerman,
% pdftex, % <==================================================== not needed
paper=a4, % a4paper, <===========================================
fontsize=12pt, % 12pt, <==============================================
% twoside, % <===================================== standard with class scrbook
% openright, % <===================================== standard with twoside option
]{scrbook}
\usepackage{blindtext}
\usepackage{showframe} % <==============================================
% Dokumentenanfang
\begin{document}
\begin{titlepage}
\Huge My fancy title
\end{titlepage}
\chapter{This is an awesome chapter}
\blindtext
\section{Some section}
\blindtext
\end{document}
您将获得以下结果页面: