Theses, Books, Title pagesHow to set twopage style for Wiley book class

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
rabbitbug
Posts: 4
Joined: Fri Jul 01, 2016 11:27 am

How to set twopage style for Wiley book class

Post by rabbitbug »

Hi newbie here. I downloaded the Wiley book 7"by10" from
http://www.latextemplates.com/template/wiley-book-style

After compile the sample tex file, I found that the produced file was not in twoside format. But I don't know how to adjust the format to twoside typeset.

Anybody can help in this issue?

Thanks in advance.

Nick

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: How to set twopage style for Wiley book class

Post by Johannes_B »

The unmodified template is in twoside mode.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
rabbitbug
Posts: 4
Joined: Fri Jul 01, 2016 11:27 am

How to set twopage style for Wiley book class

Post by rabbitbug »

Johannes_B wrote:The unmodified template is in twoside mode.
Hi Johannes,

Thank you for your suggestion. I followed your instruction to try the w-bktmpl.tex file, but still the output format is not in twoside mode. Any parameter I need to modify?

Thanks

Nick
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

How to set twopage style for Wiley book class

Post by Johannes_B »

Please load package showframe and show a screenshot of an even numbered page (2,4,6,...). Do you notice alternating margins?

If the document should really be oneside, we need to see a minimal working example.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
rabbitbug
Posts: 4
Joined: Fri Jul 01, 2016 11:27 am

Re: How to set twopage style for Wiley book class

Post by rabbitbug »

Hi,

I applied the showframe package and the output pdf file is attached. It does come with alternating side margin, but the relative position of the even/odd page cannot meet each other if printed double-sided.
Attachments
bookraw.pdf
(212.75 KiB) Downloaded 274 times
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

How to set twopage style for Wiley book class

Post by Johannes_B »

rabbitbug wrote:It does come with alternating side margin, but the relative position of the even/odd page cannot meet each other if printed double-sided.
What do you mean?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
rabbitbug
Posts: 4
Joined: Fri Jul 01, 2016 11:27 am

How to set twopage style for Wiley book class

Post by rabbitbug »

Johannes_B wrote:
rabbitbug wrote:It does come with alternating side margin, but the relative position of the even/odd page cannot meet each other if printed double-sided.
What do you mean?
Hi Johannes, I try to fix the problem by using the geometry package withe following codes before \begin{document}, and it turn out to be acceptable.
\usepackage[hoffset=0pt,hmarginratio=1:1,voffset=20pt,paperwidth=6.125in, paperheight=9.25in]{geometry}
\addtolength{\oddsidemargin}{-.2in}
\addtolength{\evensidemargin}{-.2in}
\addtolength{\textwidth}{0.4in}
\addtolength{\topmargin}{-.5in}
\addtolength{\textheight}{1in}
\begin{document}
Post Reply