从 Classicthesis 4.1 中删除 Marginpar

从 Classicthesis 4.1 中删除 Marginpar

我正在寻找一种安全的方法来\marginpar删除经典论文。我的校对员宁愿让文本占据整个页面。我对 LaTeX 不是很熟练,所以我尝试简单地删除所有出现/命令引用,但这只会弄乱边注的布局。

我找到了这个回答,将章节编号移至标题中。

我将非常感谢您的帮助

答案1

你应该试着抵制纠正者的愿望。但如果做不到,这里有一个方法:

\documentclass[
  twoside,openright,titlepage,numbers=noenddot,headinclude,
  footinclude=true,cleardoublepage=empty,
  BCOR=10mm,paper=a4,fontsize=11pt,
]{scrbook}


\usepackage[linedheaders]{classicthesis}

%%% Change the text block area to add also the margin space
\areaset[current]{\dimexpr\textwidth+\marginparwidth+\marginparsep}{\textheight}
\setlength{\marginparwidth}{0pt}
\setlength{\marginparsep}{0pt}

\usepackage{kantlipsum}


\begin{document}

\mainmatter
\chapter{First chapter title}

\section{A section}

\kant


\end{document}

kantlipsum包仅用于提供模拟文本。

在此处输入图片描述

相关内容