아마도 제가 질문을 잘못한 것 같습니다. 내가 달성하고 싶은 것은 내 노트를 textwidthn의 일부로 포함하는 것입니다.제 생각에는.
내 문서가 메모를 포함하여 다시 중앙에 오도록 여백 메모가 차지하는 공간만큼 내 텍스트 너비를 줄이도록 LaTeX에 지시할 수 있습니까? 아니면 다른 해결책이 있습니까?
문제: 기하학 패키지를 사용하여 레이아웃을 변경하면 TOC와 같은 비표준 페이지도 변경됩니다.
아이디어: 일부 교과서에서처럼 해당 메모를 측면에 표시되는 단락 제목으로 사용하고 싶습니다.
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}