\documentclass[a4paper,openany]{scrbook}
% прикручиваем необходимые пакеты
\usepackage[T2A]{fontenc}
\usepackage[cp1251]{inputenc}
\usepackage[english,russian]{babel}
\usepackage{indentfirst}
\usepackage{microtype}
\usepackage{pfnote}
\usepackage{tocstyle}
\usepackage{scrpage2}
\usepackage[sf,sl,outermarks]{titlesec}
% Настраиваем макет
\parindent=2.5em
% Оформление колонтитулов
\pagestyle{scrplain}
\pagestyle{scrheadings}
\cofoot[\pagemark]{\pagemark}
\cefoot[\pagemark]{\pagemark}
\lefoot[]{}
\rofoot[]{}
\cohead[]{}
\cehead[]{}
\rohead[]{Test}
\lehead[]{Глава \headmark}
% Оформление главы
\renewcommand{\thechapter}{\Roman{chapter}}
\renewcommand{\thesection}{\arabic{chapter}.\arabic{section}}
\titleformat{\chapter}[display]
{\bfseries\Large}
{\filcenter\Large{\chaptertitlename} \Large\thechapter}
{3ex}
{\titlerule
\vspace{1ex}%
\filcenter}
[\vspace{1ex}
\titlerule]
\begin{document}
% титульный лист
\thispagestyle{empty}
\begin{center}
\Large Test2
\end{center}
\vspace{6cm}
\begin{center}
\Huge {\textbf{Test3}}
\end{center}
\vspace*{\fill}
\begin{center}
{\large \textsf{test4}}
\end{center}
\clearpage
% вторая страница
\thispagestyle{plain}
\texttt{test5} \LaTeX
\vfill
\begin{quotation}
test7
\end{quotation}
\clearpage
% Оглавление
\tableofcontents
\sloppy
% здесь главы
\input sec01.tex
\input sec02.tex
\input sec03.tex
% \input sec04.tex 4-я глава.
\bigskip
\begin{flushright}
\textit{test8}
\end{flushright}
\end{document}