R
R
RokkerRuslan2015-04-09 10:09:30
Documentation
RokkerRuslan, 2015-04-09 10:09:30

How to move numbering in connected pages?

The search gave the same type of solutions, for example , one , two .
Unfortunately they do not work (work partly).
The structure of my document is this:

\begin{document}

\input{ title }

\pagenumbering{gobble}

\renewcommand\contentsname{ Содержание }
\tableofcontents

\cleardoublepage\pagenumbering{arabic}
\setcounter{page}{4}

\input{ introduction }

\input{ chapter1 }

\input{ chapter2 }
...

First the title page, two pages of content, numbering begins with the introduction. The above solutions transfer the number only in the second page of the content, otherwise everything remains in place.
It is logical to assume that changing the location does not affect the input part , but since the modification of the location is in the preamble, the question arises - how to create a single style for the entire document?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
AVKor, 2015-04-09
@AVKor

Where do you want to move?
What is written on the links is not visible in the given piece of code.

\documentclass[a4paper,12pt,openany,leqno]{book}
\usepackage{ucs}
\usepackage[utf8x]{inputenc}
\usepackage[T2A,T1]{fontenc}
\usepackage[english,russian]{babel}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead[\thepage]{}
\chead[]{}
\rhead[]{\thepage}
\lfoot[]{}
\cfoot[]{}
\rfoot[]{}
\begin{document}
\input{test1.tex}
\tableofcontents
\input{test2.tex}
\input{test3.tex}
\input{test4.tex}
\end{document}

\begin{titlepage}
\author{Геродот}
\title{История}
\end{titlepage}

\chapter*{Введение}
Тут пишем всяко-разно.
\clearpage
Тут пишем всяко-разно.

\chapter{Ещё}
И тут пишем всяко-разно.
\clearpage
И тут пишем всяко-разно.

\chapter{Ещё больше}
И здесь заодно.
\clearpage
И здесь заодно.

Everything is working.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question