I am currently using LyX 2.0 and writing an article which has to respect certain page margins/other rules. I managed to set up almost everything the way it should be, however, one issue remains:
There is some extra space between the footnote and my text, which caused my footnote to appear above the bottom of the page.
I fixed the footnote placement issue by putting
Code: Select all
\usepackage[bottom]{footmisc}
My text looks like:
Code: Select all
texttexttexttexttexttexttexttexttexttexttexttext
texttexttexttexttexttexttexttexttexttexttexttext
texttexttexttexttexttexttexttexttexttexttexttext
texttexttexttexttexttexttexttexttexttexttexttext
<- I want remove this extra space and fill it with text from the next page
---------------------
footnote
----------------[Next Page]---------------------
texttexttexttexttexttexttexttexttexttexttexttext
texttexttexttexttexttexttexttexttexttexttexttext
texttexttexttexttexttexttexttexttexttexttexttext
texttexttexttexttexttexttexttexttexttexttexttext
Does anybody know how to resolve this issue?
PS: My Preamble:
Code: Select all
\usepackage[paper=a4paper, left=25mm, right=25mm, top=25mm, bottom=20mm]{geometry}
\usepackage{abstract}\usepackage[bf,sc]{titlesec}\usepackage{fancyhdr}
\renewcommand{\abstractnamefont}{\normalfont}
\renewcommand{\abstracttextfont}{\normalfont\itshape}
\titleformat*{\section} {\bfseries}
\titleformat*{\subsection} {\bfseries}
\setlength{\absparindent}{0mm}
\setlength{\absleftindent}{10mm}
\setlength{\absrightindent}{10mm}
\renewcommand{\headrulewidth}{0pt}
\title{\Title}
\author{\AuthorA, \AuthorB}
\lhead{\begin{small}\Title\end{small}}
\rhead{\begin{small}\AuthorA, \AuthorB\end{small}}
\cfoot{}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage{color}
\definecolor{middlegray}{rgb}{0.5,0.5,0.5}
\definecolor{lightgray}{rgb}{0.8,0.8,0.8}
\definecolor{orange}{rgb}{0.8,0.3,0.3}
\definecolor{yac}{rgb}{0.6,0.6,0.1}
\definecolor{darkblue}{rgb}{0,0,.6}
\definecolor{darkred}{rgb}{.6,0,0}
\definecolor{darkgreen}{rgb}{0,.6,0}
\definecolor{red}{rgb}{.98,0,0}
\usepackage{layout}
\usepackage[bottom]{footmisc}
