Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I am using a format for my thesis and I have to make the margins a little bit larger while I excced the elligble number of pages.

Code:

\documentclass[11pt, a4paper, oneside]{Thesis} % Paper size, default font size and one-sided paper

\graphicspath{{./Pictures/}} % Specifies the directory where pictures are stored

\usepackage[square, numbers, comma, sort&compress]{natbib} % Use the natbib reference package - read up on this to edit the reference style; if you want text (e.g. Smith et al., 2012) for the in-text references (instead of numbers), remove 'numbers' 
\hypersetup{urlcolor=blue, colorlinks=true} % Colors hyperlinks in blue - change to black if annoying
\title{\ttitle} % Defines the thesis title - don't touch this

\begin{document}

\frontmatter % Use roman page numbering style (i, ii, iii, iv...) for the pre-content pages

\setstretch{1.3} % Line spacing of 1.3

% Define the page headers using the FancyHdr package and set up for one-sided printing
\fancyhead{} % Clears all page headers and footers
\rhead{\thepage} % Sets the right side header to show the page number
\lhead{} % Clears the left side page header

\pagestyle{fancy} % Finally, use the "fancy" page style to implement the FancyHdr headers

\newcommand{\HRule}{\rule{\linewidth}{0.5mm}} % New command to make the lines in the title page

% PDF meta-data
\hypersetup{pdftitle={\ttitle}}
\hypersetup{pdfsubject=\subjectname}
\hypersetup{pdfauthor=\authornames}
\hypersetup{pdfkeywords=\keywordnames}
\end{document}  

Moreover, it should be in printable size and format.

share|improve this question
1  
It seems that the margins will be defined in the Thesis class. Without its file it would be impossible to help. By the way, what is the sense of using a format established by the university if you change it at your will? – zunbeltz Jan 30 at 15:17
@zunbeltz, we have some flexiblity on modifing the format. Would u plz tell me what is the format of the class? I maent thesis calls is saved under which format? – Hamed Footohi Jan 30 at 16:07
Could you provide the Thesis.cls? – zunbeltz Feb 3 at 14:11
Your best option would be to include the geometry package and set your boundaries that way. Without seeing Thesis.cls, it's not possible to provide adequate help, since there is no context for "a little wider". You can edit your post and include a link to this file. – Werner Mar 25 at 14:17

closed as too localized by lockstep, Claudio Fiandrino, diabonas, Kurt, Werner Mar 25 at 14:17

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.