编辑

编辑

我正在格式化我的论文,我需要将其放置在:-1- 仅在第一章第一页的右上角。

我尝试过类似的事情:

\null\hfill\begin{tabular}[t]{l@{}}
   \text{-1-} \\
 \end{tabular}

我也尝试过

\usepackage{fancyhdr}
 \rhead{-1-}

它们似乎都不起作用。您有什么建议吗?我很感激。提前谢谢您

答案1

奇怪的是,我找不到与这个问题完全一样的问题(但我可能错了)。好吧,试试看下面的示例代码是否能满足您的要求:

\documentclass[a4paper]{book}
\usepackage[T1]{fontenc} % unrelated to the problem, but recommended in general
\usepackage{fancyhdr}

\title{Gnus of the World}
\author{A.~U.~Thor}

\fancypagestyle{mypagestyle}{%
    \fancyhf{}%
    \fancyhead[OR]{--\thepage--}%
    \renewcommand*{\headrulewidth}{0pt}%
    \renewcommand*{\footrulewidth}{0pt}%
}



\begin{document}

\maketitle

\tableofcontents

\chapter{The first chapter}
\thispagestyle{mypagestyle}

Lorem ipsum dolor sit amet.

\chapter{The second chapter}
Fringilla eius adipisci.

\chapter{The third chapter}
Nonnulla enim.

\end{document}

编辑

等一下:我忽略了你对页码水平放置的请求!下面是经过修改的 MWE,它也能解决这个问题:

\documentclass[a4paper]{book}
\usepackage[T1]{fontenc} % unrelated to the problem, but recommended in general
\usepackage{fancyhdr}

\title{Gnus of the World}
\author{A.~U.~Thor}

\fancypagestyle{mypagestyle}{%
    \fancyhf{}%
    \fancyhead[OR]{%
        \makebox[0pt][l]{%
            \makebox
                [\dimexpr\paperwidth-\textwidth-\oddsidemargin-1in\relax]%
                [r]{--\thepage--\hspace{.5in}}%
        }%
    }%
    \renewcommand*{\headrulewidth}{0pt}%
    \renewcommand*{\footrulewidth}{0pt}%
}



\begin{document}

\maketitle

\tableofcontents

\chapter{The first chapter}
\thispagestyle{mypagestyle}

Lorem ipsum dolor sit amet.

\chapter{The second chapter}
Fringilla eius adipisci.

\chapter{The third chapter}
Nonnulla enim.

\end{document}

答案2

正如 GuM 所示,您可以使用fancyhdr它或该类提供的设施memoir。这是另一种使用零大小picture来定位“-1”的方法。

\documentclass{book}
\usepackage{lipsum}
\newcommand{\incorner}{\begin{picture}(0,0)%  zero-sized picture takes no space
  \put(450,150){\normalfont\normalsize -1-}% place the -1- with regular font
\end{picture}}
\begin{document}
\tableofcontents
\chapter[First]{\incorner First}
\lipsum[1]
\chapter{Second}
\lipsum[2]
\end{document}

在宏中,\incorner数字450,150是 -1- 文本相对于使用宏的位置的 x 和 y 位置(在 MWE 中相对于章节标题的开头)。这两个\normal...是为了确保使用正常大小的正常字体。\incorner宏在章节标题文本之前调用,但由于它不应出现在目录中,因此使用可选参数将文本放入目录中。

由于您没有说明您使用的是什么课程、什么论文、论文上的布局等,因此您必须调整值450,150以将“-1-”定位到适合论文挑剔者的位置。(您必须对fancyhdr或执行类似操作memoir。)

一般来说,零尺寸picture对于手动定位页面上的项目非常有用。

相关内容