For a book layout I am trying to publish a 'copyright page' on a left page and a 'table of contents' on a right page. At the moment my code prints a title page (right) [correct] then adds an empty interleaf page (left) [wrong] then the copyright page (right) [wrong] and a table of contents (left) [wrong]. Can anyone suggest a way of getting rid of the interleaf page?
Code: Select all
Code, edit and compile here:
\documentclass[10pt,english,british,twoside,openany]{scrbook}\usepackage{blindtext}\usepackage[automark,headsepline,footsepline=.25pt]{scrlayer-scrpage}\usepackage{microtype}\usepackage{ragged2e}\usepackage{graphicx}\usepackage[british]{babel}\pagestyle{scrheadings}\addtokomafont{pageheadfoot}{\slshape}\addtokomafont{pagehead}{\tiny}\addtokomafont{pagefoot}{\small}\addtokomafont{disposition}{\rmfamily}% rm for chapter headings\ohead{\leftmark}\ihead{Ben Francis}\ofoot{\mytitle}\cfoot{\pagemark}\renewcommand\thepart{\Alph{part}}\usepackage{fontspec}\setmainfont{Linux Libertine O}%JB: Just as an example\renewcommand*{\partpagestyle}{empty}\usepackage{geometry}\geometry{paperwidth=5.06in,paperheight=7.81in,verbose,tmargin=0.5in,bmargin=1in,inner=0.75in,outer=0.5in,headheight=0.1in,headsep=0.15in,footskip=0.45in,twoside}\newcommand{\mytitle}{Tears in the Rain}\begin{document}\title{\mytitle}\frontmatter\date{}\maketitle\begin{titlepage}\begin{flushright}{\huge \mytitle}%JB: Those are switches active
Mike