Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Odd/even margins vs. regulations #5

Open
dborowiec10 opened this issue Mar 12, 2023 · 0 comments
Open

Odd/even margins vs. regulations #5

dborowiec10 opened this issue Mar 12, 2023 · 0 comments

Comments

@dborowiec10
Copy link

Regarding the:

\newgeometry{left=35mm, right=25mm, top=25mm, bottom=25mm, asymmetric, includeheadfoot}

in main.tex.

The asymmetric option seems to be undoing the job of setting different left and right margins, i.e. margins are the same on odd/even pages in the generated PDF (I'm using Overleaf). This happens when the twoside option is used in:

\documentclass[twoside,12pt,dvipsnames]{report}

Setting up geometry as part of the \usepackage seems to fix the issue, like so:

\documentclass[twoside,12pt,dvipsnames]{report}
\linespread{1.5}
\usepackage[
    paper=a4paper,
    inner=35mm,
    outer=25mm,
    top=25mm,
    bottom=25mm,
    includeheadfoot
]{geometry}

On a side note, from the university regulations:

To allow for printing and annotations which might be undertaken by an examiner at the
examination stage or if the candidate wishes to have a copy bound for their individual use:
• The page size should be A4 (210 x 297 mm)
• Margins - top, bottom and right-hand side, should be 25 mm. The left-hand side margin should be 35 mm
• Line spacing should be 1.5

I might be interpreting this wrong but it seems that the regulations request the inner margin to be 35mm and outer one ("right-hand side") to be 25mm for printing/binding - i.e. additional inner space to account for the bind? I have seen several submitted theses in preparation for formatting my own and its a mixture of equidistant margins in some theses and different margins in others (including across SCC) which makes things a bit confusing. Is there a more detailed guide for SCC theses?

Would this be the desired effect?
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant