余白ノートをテキスト幅内に配置するにはどうすればよいですか?

余白ノートをテキスト幅内に配置するにはどうすればよいですか?

おそらく、私は間違った質問をしているのでしょう。私が達成したいのは、メモをtextwidthnの一部にすることです。私は思う

LaTeX に、余白ノートが占めるスペースの量だけテキスト幅を減らすように指示して、ノートを含むドキュメントを再び中央に配置することはできますか? それとも、他の解決策がありますか?

問題: ジオメトリ パッケージを使用してレイアウトを変更すると、目次などの非標準ページも変更されます。

アイデア: 一部の教科書のように、これらのメモを横に表示される段落タイトルとして使用したいと思います。

MWE:

\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}

ここに画像の説明を入力してください

関連情報