边距左右反转

边距左右反转

我正在使用geometry包来设置论文左右两边不同的页边距。请参阅相关代码:

\documentclass[12pt,a4paper,twoside]{report}
\usepackage{geometry}\geometry{top=3cm,bottom=3cm,left=3.7cm,right=2.5cm}

\begin{document}

\begin{titlepage}
\includepdf[pages=-]{thesisTitlepage} % this is a doble-side title page
\end{titlepage}

\cleardoublepage
\thispagestyle{empty} % this page is on 3rd page
\par\vspace*{.35\textheight}{\Large\itshape some deep loving words.}

\clearpage
\chapter*{Acknowledgments} % this page is on 4th page
\phantomsection
\addcontentsline{toc}{chapter}{Acknowledgments}
\pagenumbering{roman}

\chapter*{Abstract}
...
\clearpage

\clearpage
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures

\clearpage
\chapter{Introduction}\label{chap1introduction}
\pagenumbering{arabic}

...
\end{document}

从致谢一章开始,页边距左右颠倒了。有人能帮我吗?非常感谢!

相关内容