латекс, documentstyle книга, как номера страниц, всегда снизу по центру? [закрытый]

Я пишу 100 + тезис страницы с помощью латекса со стилем документа "книга".

Прямо сейчас номер страницы снизу по центру на первой странице главы на главном внешнем поле на последующих страницах главы.

Я хочу, чтобы номера страниц всегда были снизу по центру на каждой странице для римских, а также арабских номеров страниц. Как я могу я делать это?

11
задан gojira 10 February 2010 в 07:22
поделиться

2 ответа

Setting the page style can also affect the defaults. For example setting the page style to pagestyle{empty} will also remove both header and footer information, such as the page numbers in the footer.

The apporach with fancyhdr as mentioned is the way to directly modify these. Another way to clear the header and footer information with that package is fancyhf{}.

The free online LaTeX wikibook is an excelent resource, here is the link for the page layout page which covers issues such as headers nad footers.

LaTeX Wikibook - Page Layout

Hope that helps,

Jay

0
ответ дан 3 December 2019 в 07:37
поделиться

Взгляните на пакет fancyheader .

Вам, вероятно, придется сделать что-то вроде

\documentclass{book}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{}
\chead{}
\rhead{}
\lfoot{}
\cfoot{\thepage}
\rfoot{}
\begin{document}
Your content \ldots
\end{document}
7
ответ дан 3 December 2019 в 07:37
поделиться
Другие вопросы по тегам:

Похожие вопросы: