I've been using memoir for a while now, and have started facing problems with modified output routine, this has forced me to seriously consider switching (back) to report class. What I'm going to ask might seem like a case of "Do the research for me", so I hope I'm not asking for too much. I would like to know how to produce 'exactly' the same output with report given the following:
The preamble (up until now of course) Preamble.tex:
\documentclass[a4paper,twoside,12pt,openright,final,oldfontcommands]{memoir}
\usepackage[T1]{fontenc}
\usepackage{import}
\usepackage{color}
\usepackage{algorithm}
\usepackage{caption}
\captionsetup{font=small,labelfont=bf}
\usepackage{arabtex}
\usepackage{utf8}
\usepackage{graphicx}
\usepackage{float}
\setcounter{secnumdepth}{3}
\usepackage{fixltx2e}
\usepackage{paralist}
\usepackage{hyperref}
\hypersetup{pdftex,
linktocpage=true,
bookmarks=true,
colorlinks=true,
citecolor=blue,
filecolor=black,
linkcolor=blue,
urlcolor=black}
\usepackage[all]{hypcap}
\usepackage{calc}
\copypagestyle{ruledsmallhd}{ruled}
\makeevenhead{ruledsmallhd}{\footnotesize\scshape\leftmark}{}{}
\makeoddhead{ruledsmallhd}{}{}{\footnotesize\scshape\rightmark}
\makeheadrule{ruledsmallhd}{0px}{0px}
The main file:
\input{Preamble.tex}
\begin{document}
\pagestyle{ruledsmallhd}
\pagenumbering{roman}
\maketitle
\newpage
\maxtocdepth{subsection}
\tableofcontents
\newpage
\listoffigures
\listoftables
\subimport{./Chapter1/}{Chapter1.tex}
\subimport{./Chapter2/}{Chapter2.tex}
\bibliographystyle{unsrt}
\bibliography{./Bibliography}
\end{document}
I think the obvious issue is producing exactly the same headers/footers with fancyhdr instead of pagestyle, but of course I wouldn't really know what else would change, hence I've posted this question.
memoirdocument class you want to retain after switching toreport(orbook, or whatever). Many -- but certainly not all! -- features embedded in thememoirdocument class can be replicated by loading various and sundry LaTeX packages. – Mico Feb 28 '12 at 2:53