my document is suppose to be 2 pages long, but its only 1 page and the text is getting cut off at the bottom of the page.
please help!
Thanks,
Leon
Page Layout ⇒ Page got cut off!
Re: Page got cut off!
Hi Leon,
perhaps you are using an environment that causes the undesired behaviour; to detect the problem and provide effective help, we will need to see the actual code that you are using.
perhaps you are using an environment that causes the undesired behaviour; to detect the problem and provide effective help, we will need to see the actual code that you are using.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Page got cut off!
Code: Select all
\documentclass{article}
\makeatletter
\renewcommand\@biblabel[1]{}
\renewenvironment{thebibliography}[1]
{\section*{\refname}%
\@mkboth{\MakeUppercase\refname}{\MakeUppercase\refname}%
\list{\@biblabel{\@arabic\c@enumiv}}%
{\settowidth\labelwidth{\@biblabel{#1}}%
\leftmargin\labelwidth
\advance\leftmargin\labelsep
\itemindent-\labelsep
\@openbib@code
\usecounter{enumiv}%
\let\p@enumiv\@empty
\renewcommand\theenumiv{\@arabic\c@enumiv}}%
\sloppy
\clubpenalty4000
\@clubpenalty \clubpenalty
\widowpenalty4000%
\sfcode`\.\@m}
{\def\@noitemerr
{\@latex@warning{Empty `thebibliography' environment}}%
\endlist}
\makeatother\renewcommand{\refname}{}
\title{XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX}
\author{Leon He}
\date{\today}
\maketitle
\begin{document}
\nocite{*}
\section{Topic of Interest}
\textbf{Keywords:} Disability, disable, consumption, work-limited, earning, income, employment, long-run shock, earning shock, health, health shock, longitudinal study, marriage, limitation, labour supply, poverty. \\
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXX
\section{Important Researches}
\subsection{The Longitudinal Structure of Earnings Losses among Work-Limited Dissabled Workers}
\emph{Paper by Charles, Kerwin K.}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
\subsection{Disability, Earnings, Income, and Consumption}
\emph{Paper by Meyer, Bruce D. and Mok, Wallace K.C.
\section{List of References}
\bibliographystyle{chicago}
\bibliography{mybib}
\end{document}
Page got cut off!
Hi,
your code contains two errors:
1) \maketitle should appear after \begin{document}
2) A closing brace is missing here:
Use
your code contains two errors:
1) \maketitle should appear after \begin{document}
2) A closing brace is missing here:
Code: Select all
\emph{Paper by Meyer, Bruce D. and Mok, Wallace K.C.
Code: Select all
\emph{Paper by Meyer, Bruce D. and Mok, Wallace K.C.}
1,1,2,3,5,8,13,21,34,55,89,144,233,...