如何将连续的书名放在偶数页的左边?

如何将连续的书名放在偶数页的左边?

我正在使用artech.cls(可用文件https://us.artechhouse.com/Assets/PDFs/textemp.zip

我需要将连续的书名放在偶数页的左侧。目前,它将它们放在中间。我怀疑这与下面的几行有关。解决这个问题的最佳方法是什么?

\gdef\@booktitle{}
\def\booktitle#1{\gdef\@booktitle{#1}}     
\def\title#1{\gdef\@title{#1}\booktitle{#1}}   
\def\ps@headings{%   \let\@oddfoot\@empty\let\@evenfoot\@empty       \def\@evenhead{\small\thepage\hfill{\small\itshape\rightmark}\hfill\phantom{\thepage}}%
\def\@oddhead{\small\phantom{\thepage}\hfill{\small\itshape\leftmark}\hfill\thepage}%
     \let\@mkboth\markboth \def\chaptermark##1{%   \markboth {{%
     \ifnum \c@secnumdepth >\m@ne
       \if@mainmatter
          %
       \fi
     \fi
     ##1}}{}}% \def\sectionmark##1{%   \markleft{\emph{\@booktitle}}}  
      }

 \def\ps@myheadings{%
     \let\@oddfoot\@empty\let\@evenfoot\@empty
     \def\@evenhead{\small\thepage\hfill{\small\itshape\rightmark}\hfill\phantom{\thepage}}%
     \def\@oddhead{\small\phantom{\thepage}\hfill{\small\itshape\leftmark}\hfill\thepage}%
         \let\@mkboth\@gobbletwo
     \let\chaptermark\@gobble
     \let\sectionmark\@gobble
     }

 \pagestyle{headings}

相关内容