偏移页码但不偏移行 — fancyhdr 包

偏移页码但不偏移行 — fancyhdr 包

我正在使用fancyhdr包创建页脚。不幸的是,我无法仅偏移页码,而只能保持水平线一直延伸到页边距。我尝试使用,\fancyfootoffset{-1cm}但它会偏移整个页脚

在此处输入图片描述

编辑:这是我的乳胶代码

\documentclass{article}
\usepackage[utf8]{inputenc}

\usepackage{geometry}
\geometry{
    a4paper,
    left=25mm,
    headheight=27mm,
    footskip=8mm,
    bottom=20mm,
    right=12mm
    }

\usepackage{fancyhdr}% http://ctan.org/pkg/fancyhdr
\pagestyle{fancy}% Change page style to fancy
\fancyhf{}% Clear header/footer

\fancyfoot[L]{some footer text}% \fancyfoot[R]{\thepage}
\renewcommand{\headrulewidth}{0.3pt}% Default \headrulewidth is 0.4pt
\renewcommand{\footrulewidth}{0.3pt}% Default \footrulewidth is 0pt

\begin{document}

Some text

\setcounter{page}{2}
\renewcommand{\thepage}{\arabic{page}}

\fancyfoot[R]{\thepage}
\fancyfootoffset{-1cm}

\end{document}

你能帮帮我吗?谢谢

相关内容