我是一个新的 Latex 用户,我写了一篇论文。
如何更新此代码以便仅在一侧打印:
\pagestyle{fancyplain} \textheight22.5cm \topmargin0cm \textwidth16.5cm \oddsidemargin0.5cm \evensidemargin-0.5cm%
\lhead[\fancyplain{}{{$\color{IndianRed3}\blacksquare$} \hspace{0.1cm} \thepage}]{\fancyplain{}{\rightmark}}
\rhead[\fancyplain{}{\leftmark}]{\fancyplain{}{{$\color{IndianRed3}\blacksquare$} \hspace{0.1cm} \thepage}}
答案1
只需尝试以下 MWE:
\documentclass[%
,fontsize=12pt
,english
,fleqn
,paper=letter % letter a4
,pagesize
,oneside % <==========================================================
]{scrbook} % scrbook scrreprt scrartcl
\usepackage{blindtext} % to create dummy document or text ==============
\usepackage{fancyhdr} % caused a warning. Please read it!
\title{Test}
\author{username}
\date{\today}
\begin{document}
\maketitle
\tableofcontents
\Blinddocument
\end{document}
编译并检查结果。选项oneside
建议 KOMA-Script 只打印一面。然后请注释掉第 7 行(标记为<=====
)并再次编译。将新结果与第一个结果进行比较。
顺便说一句:使用 KOMA-Script 时你最好使用包scrlayer-scrpage
而不是你使用的包fancyhdr
。
(请下次自己创建这样的 MWE 来回答您的下一个问题。谢谢!)