- clear the header in order to stop the names of my chapters appearing in the header of every page after the first;
- make the chapter name appear centered on the first page of the chapter as a single Roman numeral in the same font as the body text (but in bold).
Code: Select all
\documentclass[12pt,openany]{scrbook}
\usepackage{fontspec}
\setmainfont{FreeSerif}
\setsansfont{FreeSans}
\setmonofont{FreeMono}
\addtokomafont{disposition}{\rmfamily}
\author{author}
\date{date}
\title{title}
\sloppy
\usepackage[none]{hyphenat}
\renewcommand{\chaptername}{}
\renewcommand{\thechapter}{}
\usepackage{paracol}
\usepackage{microtype}
\usepackage[
paperwidth=6in,
paperheight=9in,
inner=0.6in,
outer=0.6in,
bindingoffset=0.15in,
top=0.6in,
bottom=0.6in,
twoside]{geometry}
\usepackage{scrpage2}
\pagestyle{plain}
\begin{document}
\setlength{\columnsep}{3em}
\setlength{\parskip}{\baselineskip}
\maketitle
\chapter{I}
\begin{paracol}{2}
\begin{leftcolumn}
bla
\end{leftcolumn}
\begin{rightcolumn}
bla
\end{rightcolumn}
\enddocument
The chapter headings (i.e. the Roman numerals) look the way I want them to in terms of size and font, but they are indented (because I've suppressed the number that appears automatically) and are not centered. I'm currently using XeTex, but everything seems to work in LuaTex as well (with the same error message). After hours of experimenting with various options only to find that they are either incompatible with other elements or generate problems of their own, I'd appreciate any help.Package `scrpage2' is obsolete.\MessageBreak
You should not longer use package `scrpage2'.\MessageBreak
You should replace usage of package `scrpage2'\MessageBreak
by `scrlayer-scrpage'}
