Page LayoutIncrease margin from last footnote to page bottom?

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
joelgw1
Posts: 2
Joined: Thu Oct 01, 2015 11:12 pm

Increase margin from last footnote to page bottom?

Post by joelgw1 »

I've been using LaTex on my iPad for the last year or more to write Turabian papers, but when I switched to a Macbook using MacTex, I've encountered some formatting issues, including one that I haven't been able to figure out. The one I need help on is how to increase the margin space between the last footnote and the bottom of the page. I'm getting a margin of around .5in when I typeset, and I need a margin of 1in (except on a page when the text doesn't fill the page, in which case the footnotes need to come directly below the text rather than at the bottom of the page.). Can anyone help?

Code: Select all

\documentclass{turabian}

%\usepackage{draftwatermark} % Remove this line to eliminate "DRAFT" watermark.

\begin{document}


% ---------- TITLE PAGE -----------

\begin{center}
\vspace{6mm}
TITLE\\
\vspace{30mm}
Description...\\
\vspace{6mm}
Submitted to...\\
\vspace{6mm}
of the\\ 
\vspace{6mm}
Division of...\\
\vspace{30mm}
In Partial Fulfillment\\
\vspace{6mm}
of the Requirements for the Course\\
\vspace{6mm}
Course Title\\
\vspace{6mm}
In the Division of...\\
\vspace{30mm}
Name\\
\vspace{6mm}
Degree\\
\vspace{6mm}
Degree\\
\vspace{6mm}
Degree\\
\vspace{6mm}
Date\\
\end{center}

\pagestyle{empty}
\pagebreak


% ------- EMPTY PAGE -------

\blankpage{
    \null
    \thispagestyle{empty}
    \newpage}


% ---- TABLE OF CONTENTS ----

\thispagestyle{plain}

\pagenumbering{roman}
\setcounter{page}{3}

\contentstable
\setlength{\footnotesep}{1.5\baselineskip}
\renewcommand{\footnotesize}{\fontsize{12pt}{12pt}\selectfont}

\section{CONTENTS}
\vspace{4mm}

\tocone{CHAPTER 1\dotfill 1\\}

\begin{quote}
\toctwo{Section 1\\}

\toctwo{Section 2\\}

\toctwo{Section 3\\}
\end{quote}

\tocone{BIBLIOGRAPHY\dotfill 20\\}

\vfill
\newpage


% ---- MAIN CONTENT ----

\thispagestyle{plain}
\newgeometry{top=2in}
\pagenumbering{arabic}
\setcounter{page}{1}\\

\content
\section{CHAPTER TITLE}

\begin{center}
\textbf{Section 1}
\end{center}
\vspace{-3mm}

text on page one...\footnote{Test footnote} 

text on page one...\footnote{Test footnote} 

\restoregeometry

    \pagestyle{fancy}
    \fancyhf{}
    \fancyhead[R]{\thepage}
     \renewcommand{\headrulewidth}{0pt}
     \setlength\headheight{50pt}

\setlength{\parindent}{0em}

Text continued from page one...\footnote{Test footnote}  

\setlength{\parindent}{1.5em}

Text on page two...\footnote{Test footnote} 

Text on page two...\footnote{Test footnote}\\

\begin{center}
\textbf{Section 2}
\end{center}
\vspace{-3mm}

text\\

\begin{center}
\textbf{Section 3}
\end{center}
\vspace{-3mm}

text\\

\newpage


% ---- BIBLIOGRAPHY ----

\thispagestyle{plain}
\newgeometry{top=2in}
\pagenumbering{arabic}
\setcounter{page}{20} % CHANGE bibliography start page number before printing

\bibliography
%\vspace{1mm}

\bibline{Bib entry}
\vspace{5mm}

\bibline{Bib entry}
\vspace{5mm}

\restoregeometry

\end{document}
Attachments
Example.tex
An example text file for a Turabian formatted paper.
(2.11 KiB) Downloaded 308 times
Last edited by Johannes_B on Fri Oct 02, 2015 2:04 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: Increase margin from last footnote to page bottom?

Post by Johannes_B »

Welcome,

the class you are using is on CTAN and available in TeX Live as well as MikTeX. It is licensed under the LPPL, so you are not allowed to change the class file without renaming it. I deleted the attachment and introduced your changes to the tex-file.

Running your example i can see one thing: It does not compile, a lot of the commands you are using are non standard and i have not the slightest idea where they come from.

Are you trying to do the table of contents by hand? LaTeX does it for you by just using one command.

Also, why are your formatting your sections by hand? LaTeX does that for you.

Did you read an introduction to LaTeX?

Please make your example compilable so we can reproduce the issue.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
joelgw1
Posts: 2
Joined: Thu Oct 01, 2015 11:12 pm

Re: Increase margin from last footnote to page bottom?

Post by joelgw1 »

Thanks for the help. I don't understand LaTex well, and I am only using it for Turabian papers. The examples compile without any problems on my end (the only formatting issue is the margin space on the footnotes), so I'm not sure what to do to make them compilable? If there's no easy answer on the footnote issue, then I'll just keep using the Tex program on my iPad only. It formats the papers perfectly from that program. Thanks for the time and the help.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Increase margin from last footnote to page bottom?

Post by Johannes_B »

Looking at class turabian i cannot recommend anybody to use it. I'll try to reach the author.


EDIT: The commands \tocone and similar have been valid in a previous version of the class.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply