Page Layout ⇒ Writing a book
Writing a book
If I simply continue to write on one continous tex file, its very hard to keep the format.
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
Writing a book
Can you be a bit more verbose on what you are trying to achieve?
I think package parallel should give you a good start.
Re: Writing a book
For example, it will be similar to a children's book where the right page has a text and the left page has a big image of something.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Writing a book
Code: Select all
\documentclass{scrbook}
\usepackage{mwe}
\newcommand{\nextstory}{\clearpage}
\begin{document}
this is a right hand page
\nextstory
this is the first story, it is short.
\nextstory
The next story is longer.\blindtext
\nextstory
Just a picture
\includegraphics[width=.6\textwidth]{example-image}
\nextstory
\end{document}
Re: Writing a book
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Re: Writing a book
You said yourself, that both sides are completely unrelated.
Re: Writing a book
