1) I'm happy with 'ruled' except I want \leftmark to be 'part' and \rightmark to be 'chapter'. First I tried using 'myheadings' in document>>settings>>page layout>>headings style. I then copied and pasted the latex code for 'ruled' from the memoir manual but changed chapter to part, and section to chapter.
Code: Select all
\makepsmarks{myheadings}{%
\nouppercaseheads
\createmark{part}{left}{shownumber}{}{. \space}
\createmark{chapter}{right}{nonumber}{}{}
\createplainmark{toc}{both}{\contentsname}
\createplainmark{lof}{both}{\listfigurename}
\createplainmark{lot}{both}{\listtablename}
\createplainmark{bib}{both}{\bibname}
\createplainmark{index}{both}{\indexname}
\createplainmark{glossary}{both}{\glossaryname}
}
\makepagestyle{myheadings}
\makeevenfoot{myheadings}{\thepage}{}{<draft>} % page numbers at the outside
\makeoddfoot{myheadings}{}{}{\thepage}
\makeheadrule{myheadings}{\textwidth}{\normalrulethickness}
\makeevenhead{myheadings}{\scshape\leftmark}{}{} % small caps
\makeoddhead{myheadings}{}{}{\rightmark}
2) I want to use 'empty' pagestyle for any pages with floats on. There is a way to do this in memoir, see page 128 of the manual. I thought the best way to do this would be to stick with 'myheadings' as the pagestyle, and then use a modified 'ruled' for pages without floats, and 'empty' for pages with floats.
Code: Select all
\mergepagefloatstyle{myheadings}{ruled}{empty}
I have attached my test .lyx file, if that is any help.
As an aside, how do I redefine \bigskip? I want to make it bigger.
I really appreciate any help.