可能,我問錯問題了。我想要實現的是將我的筆記作為 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}