也许我问错了问题。我想要实现的是将我的笔记作为 textwidthn 的一部分,我认为。
我可以告诉 LaTeX 将文本宽度减少边注所占用的空间量,以便我的文档(包括注释)再次居中,还是还有其他解决方案?
问题:如果我使用几何包更改布局,目录等非标准页面也会更改。
想法:我想将这些注释用作在侧面显示的段落标题,就像某些教科书一样。
梅威瑟:
\documentclass[oneside]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage{lipsum}
\usepackage{marginnote}
\begin{document}
\section{Introduction}
\marginnote{Hello!}
\lipsum[1-6]
\end{document}
答案1
使用起来很简单geometry
;该showframe
选项仅用于显示页面的各个部分。
\documentclass[oneside]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\geometry{includemp,showframe}
\usepackage{lipsum}
\usepackage{marginnote}
\begin{document}
\section{Introduction}
\marginnote{Hello! This is a long margin note to see what happens}
\lipsum[1-6]
\end{document}
答案2
我对这个问题的解释是:
\documentclass[fontsize=10pt]{scrartcl}
\usepackage{geometry,lipsum,calc}
\geometry{%
a4paper,
hcentering,
textwidth=14cm,
lines=52,
includemp=true,
showframe}
\usepackage[automark]{scrlayer-scrpage}
\KOMAoptions{%
headsepline, footsepline, plainheadsepline, plainfootsepline,
headwidth=textwithmarginpar, footwidth=textwithmarginpar}
\begin{document}
\newgeometry{%
hcentering,
textwidth=14cm+\marginparwidth+\marginparsep,
lines=52,
ignoremp}
\tableofcontents \clearpage
\restoregeometry
\section{Introduction}
\noindent\marginpar{Hello!}%
\lipsum[1-3]
\subsection{Further introduction}
\subsubsection{Even further introduction}
\end{document}