如何让框页码对齐?

如何让框页码对齐?
\documentclass[twoside,11pt]{book}
\usepackage{fancyhdr,xcolor,lipsum}
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}
\fancyfoot{}
\colorlet{myfancycolor}{black}
\fancypagestyle{mystyle}{
    \renewcommand*\footrulewidth{1pt}
    \fancyfoot[OR]{%
        \color{myfancycolor}\rule{2em}{2em}\raisebox{0.5em}{\hspace{-2em}\color{white}\makebox[2em][c]{\textsf{\thepage}}}%
        \vspace*{-0.8em}%
    }
    \fancyfoot[OL]{%
        \leftmark
    }    
    \fancyfoot[EL]{%
        \color{myfancycolor}\rule{2em}{2em}\raisebox{0.5em}{\hspace{-2em}\color{white}\makebox[2em][c]{\textsf{\thepage}}}%
        \vspace*{-0.8em}%
    } 
    \fancyfoot[ER]{%
        \rightmark
    }
}
\pagestyle{mystyle}
\begin{document}
    \frontmatter
    \chapter{PREFACE}
    \lipsum[1-2]
    \tableofcontents
    \mainmatter
    \chapter{LALALA}
    \lipsum[1-3]
\end{document}

在此处输入图片描述

我想要的盒子页码如下:

在此处输入图片描述

我尝试将值更改为\raisebox-1 em、-2 em,但无法改变布局。

如何让框页码对齐?

答案1

您可以删除\renewcommand\footrulewidth{1pt}并创建自己的\hrule(即不由\hrule使用的包生成)。 您的\hrule后面可以紧跟,因此和\hbox之间没有空格。 例如,它可以看起来像这样:\hrule\hbox

\fancyfoot[EL]{%
    \kern-3ex % all material is shifted up by 3ex
    \color{myfancycolor}
    \hrule height1pt % your \hrule
    \hbox{\rlap{\vrule height1.3em width2em depth.7em}% you black box
          \hbox to2em{\hss\color{white}{\textsf{\thepage}}\hss}}%
}

答案2

将整个东西放到另一个中\raisebox

\raisebox{4pt}[2em]{\color{myfancycolor}\rule{2em}{2em}\raisebox{0.5em}{\hspace{-2em}\color{white}\makebox[2em][c]{\textsf{\thepage}}}%
        \vspace*{-0.8em}}

相关内容