I'm using the memoir class, which has the option to directly define what should be shown on odd and even pages, seperately. I want to put the page number on the left of the left pages, and on the right of the right pages. Just like a regular book.
But somehow, it's not working. This is my preamble:
\documentclass[a4paper,oneside,article]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[danish]{babel}
\usepackage{microtype}
\usepackage{lipsum}
\usepackage[danish]{varioref}
\usepackage{amsmath,amssymb}
\usepackage{bm}
\usepackage{amsthm}
\usepackage{mathtools}
\usepackage{icomma}
\usepackage{listings}
\usepackage{siunitx}
\usepackage{graphicx}
\graphicspath{{billeder/}}
\usepackage[version=3]{mhchem}
\usepackage{color,soul}
\usepackage{lastpage}
\usepackage{threeparttable}
\usepackage{multirow}
\usepackage[includeheadfoot,left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\makepagestyle{standard}
\makeevenhead{standard}{}{}{}
\makeoddhead{standard}{}{}{}
\makeevenfoot{standard}{Page \thepage\ of \pageref{LastPage}}{}{AO, DA, NFL}
\makeoddfoot{standard}{AO, DA, NFL}{}{Page \thepage\ of \pageref{LastPage}}
\makeheadrule{standard}{\textwidth}{\normalrulethickness}
\makefootrule{standard}{\textwidth}{\normalrulethickness}{3pt}
\setlength{\headheight}{40pt}
\pagestyle{standard}
\begin{document}
\author{AO, DA, NFL}
\title{Title}
\date{2015.06.01}
\maketitle
\pagebreak
\tableofcontents*
\pagebreak
\lipsum
\lipsum
\lipsum
\end{document}
Can anyone tell me what I'm doing wrong?
From the answers I've gotten so far, i've changed the argument of "oneside" in the very first line to "twoside", and it works. But as described below, now, the title page and ToC has changed. These are snapshots of oneside titlepage and ToC, and twoside twoside titlepage and ToC.




oneside. Left pages are non-existent here. – Johannes_B Apr 14 '15 at 11:07onside, only theoddlayout is used, soevenis ignored. You have to switch totwosidein order to get even and odd header design – daleif Apr 14 '15 at 11:16\newpagenot\pagebreak.\pagebreakshould not be used. Undertwosidewe run under flushbottom, whereasonesideunder under raggedbottom. So LaTeX will now try to make all pages the same height. If you then use\pagebreakthen it attempts to fill the page vertically.\newpagedoes not. Forget you ever heard of\pagebreak. – daleif Apr 14 '15 at 12:58twosidein combination with the behaviour\pagebreakhas influshbottommode. As often, a cascade of issues :-) – Johannes_B Dec 21 '15 at 13:14