使用 twoside 时如何解决边距问题?

使用 twoside 时如何解决边距问题?

我正在使用,twoside这样我就可以在标题之间交替,但这会导致偶数页的左边距大于右边距,奇数页的左边距大于右边距,反之亦然,如下所示。

在此处输入图片描述

这是我的代码。

\RequirePackage{silence}
\WarningFilter{remreset}{The remreset package}

\documentclass[twoside]{article}
\usepackage[utf8]{inputenc}
\usepackage{ragged2e}
\usepackage{lmodern}
\renewcommand*\familydefault{\sfdefault}
\usepackage{lipsum}
\usepackage{fancyhdr}
\usepackage{nopageno}

\begin{document}

\pagenumbering{arabic}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0.5pt}
\fancyhead[LO]{\textit{\leftmark}}
\fancyhead[RO]{\textit{\rightmark}}
\fancyhead[LE]{\textit{\rightmark}}
\fancyhead[RE]{\textit{\leftmark}}
\fancyfoot[LO]{\textit{Monzur Rahman}}
\fancyfoot[RO]{\textit{Page \thepage}}
\fancyfoot[RE]{\textit{Monzur Rahman}}
\fancyfoot[LE]{\textit{Page \thepage}}


\renewcommand{\sectionmark}[1]{\gdef\leftmark{\thesection\quad#1}\gdef\rightmark{}}
\renewcommand{\subsectionmark}[1]{\gdef\rightmark{\thesubsection\quad#1}}

\section{Lorem}
\subsection{Ipsum}
\lipsum[1-8]

\end{document}

相关内容