How can I align pages in a LaTeX memoir document?

  • Context: LaTeX 
  • Thread starter Thread starter EngWiPy
  • Start date Start date
  • Tags Tags
    Latex
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 4K views
EngWiPy
Messages
1,361
Reaction score
61
Hello,

I noticed that pages in my thesis are not aligned. like this segment of code:

Code:
\documentclass[a4paper,12pt,openany]{memoir}
\begin{document}
\chapter{}
\chapter{}
\end{document}

How can I solve this problem?

Thanks in advance
 
Physics news on Phys.org
S_David said:
Hello,

I noticed that pages in my thesis are not aligned.

They're not supposed to be. The default behaviour of the memoir class is to use a double-sided layout. If you want to use a single-sided layout you'll have to specify that explicitly as an option.

Please read the documentation for your LaTex distribution. It's terribly good.
 
shoehorn said:
They're not supposed to be. The default behaviour of the memoir class is to use a double-sided layout. If you want to use a single-sided layout you'll have to specify that explicitly as an option.

Please read the documentation for your LaTex distribution. It's terribly good.

It is highly appreciated if you lead me where to read, because I tried to read in the 619-pages memoir class manual, and I lost in it.

Regards
 
Changing your first line to

Code:
\documentclass[a4paper,12pt,openany,oneside]{memoir}

should fix the problem.
 
cristo said:
Changing your first line to

Code:
\documentclass[a4paper,12pt,openany,oneside]{memoir}

should fix the problem.

Yes indeed, it fixed it. Thank you cristo.

Best regards