oneside is for digital distribution. It has linkcolor and urlcolor set so where there are links in the magazine, obvious they can be clicked on. It has background color similar to a scanned 30s era pulp magazine.
Even though it is oneside I want the page header to be the same as for twoside. This is almost working:
Code: Select all
\newif\iftwoside
\twosidefalse % for digital distribution
%twosidetrue % for the print shop
\iftwoside
\documentclass[twoside,openany]{scrbook}
\else
\documentclass[oneside]{scrbook}
\fi
\KOMAoptions
{
fontsize=11pt,
paper=7in:10in,
pagesize=pdftex,
DIV=14
}
\usepackage{scrlayer-scrpage}
\clearpairofpagestyles
\iftwoside
\lehead{p0wn3d\ Volume\ 0 Issue\ 0}
\else
\lohead{\ifthispageodd{}{p0wn3d\ Volume\ 0 Issue\ 0}}
\fi
But nothing I try accomplishes it for chapter name. Two-side it does what I want, right side of right page - but with oneside it puts it on right side of EVERY page and I can't figure out what needs to redefined to prevent that.
Suggestions?