I'm having trouble getting the width of my footnote area to be aligned with my body text. As of right now, the footnotes begin about half an inch to the left of where my body text begins, and they end about half an inch to the right of where the body text ends.
Here's my preamble
Code: Select all
\documentclass[letterpaper, 12pt,leqno,fleqn]{article}
\usepackage{multicol}
\usepackage{ntheorem}
\usepackage{graphics}
\usepackage{amsmath}
\usepackage{amsxtra}
\usepackage{amstext}
\usepackage{amssymb}
\usepackage{latexsym}
\usepackage{dsfont}
\usepackage{array}
\usepackage{ctable}
\usepackage{natbib}
\usepackage{pdflscape}
\usepackage{multirow}
\usepackage{enumerate}
\usepackage{colortbl}
\usepackage{caption}
\usepackage{xcolor}
\usepackage[flushmargin, bottom]{footmisc}
\usepackage{fullpage}
\usepackage{verbatim}
\addtolength{\oddsidemargin}{-.4in}
\addtolength{\evensidemargin}{-.4in}
\addtolength{\textwidth}{0.8in}
\newtheorem{lemma}{Lemma}
\newtheorem{theorem}{Theorem}
\newtheorem{definition}{Definition}
\newtheorem{proposition}{Proposition}
\newtheorem{assumption}{Assumption}
\renewcommand{\baselinestretch}{1.25}
\DeclareMathOperator*{\argmax}{argmax}
\renewcommand{\labelenumi}{\arabic{enumi}.}
\renewcommand{\labelenumii}{\arabic{enumi}.\arabic{enumii}}
\newcommand{\eps}{\varepsilon}
\renewcommand{\(}{\big(}
\renewcommand{\)}{\big)}
\newcolumntype{x}[1]{%
>{\raggedleft\hspace{0pt}}p{#1}}%
\newcommand{\tn}{\tabularnewline}
\newcommand{\mc}{\multicolumn}
Also, I tried commenting out the \addtolength commands in the middle of the preamble but it doesn't help.