LyX ⇒ LAyout problem in Book
LAyout problem in Book
I'm using Lyx 2.1.0 to write a book. I use document class Book (Standard class). I set in Page Layout, the two-sided document. But the new chapters start in a left page while they should start in a right page (or an odd page). Can someone guide me?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
LAyout problem in Book
\usepackage{showframe}
. Do you see the marginpar column? It is always on the outside. Are your chapters beeginning on an odd (right) page?
Re: LAyout problem in Book
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
LAyout problem in Book
Code: Select all
\documentclass{book}
\usepackage{blindtext}
\usepackage{showframe}
\begin{document}
\chapter{I am on the right side, if the margin note is on the
right}
\marginpar{i am on a right side}
\blindtext
\chapter{another chapter, by default also on the right}
\end{document}
Did you somehow switch to
openany
in your global settings?