Page LayoutPage Layout

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
nenu28
Posts: 28
Joined: Mon Jun 27, 2011 11:24 am

Page Layout

Post by nenu28 »

Hello everybody,

I am writing a document in latex with {report} class. But after enter my References list almost 20 ref, I just got 15 and for the rest they are hided to the next page. Is there someone who knows how to solve this problem ? I hereby attached the pdf file showing what I got after compilation.

And, I also post the preamble of my document

Code: Select all

\documentclass[11pt,fleqn,a4paper]{report}
\usepackage[top=2.12cm,bottom=2.3cm,left=2.8cm,right=2.8cm,includehead,includefoot]{geometry}
\renewcommand{\baselinestretch}{1.25}
\renewcommand{\baselinestretch}{1}
\newenvironment{matrice}{\left[\begin{array}}{\end{array}\right]}
\usepackage{amssymb,amsfonts,psfrag,amsmath,graphicx,lscape,color,xcolor}
\renewcommand{\theequation}{\thesection.\arabic{equation}}
\renewcommand{\thefootnote}{\alph{footnote}}

\newcommand{\supercite}[1]{\textsuperscript{\cite{#1}}}  
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\renewcommand\contentsname{Table of Contents}
\renewcommand\bibname{References}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newtheorem{satz}{Satz}[section]
\newtheorem{lemma}[satz]{Lemma}
\newtheorem{theorem}[satz]{Theorem}
\newtheorem{definition}[satz]{Definition}
\newcommand{\D}{\displaystyle}
\def\proofbegin{{\bf {}Proof}. }
\def\proofend{\quad$\square$ }
\allowdisplaybreaks
\usepackage{multicol}


\usepackage{multirow}

\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage[all]{xy}
\usepackage{pifont}%%

\usepackage{array}
\usepackage{tabularx}
\newcolumntype{Y}{>{\itshape\raggedright}X}
\newcolumntype{Z}{>{\itshape\raggedleft}X}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\usepackage{fancyhdr}
\pagestyle{fancy}
 %\lfoot{\tiny{\textbf{PhD Vital Delmas M.}}}
 \lhead{}
 \chead{}


\begin{document}
Attachments
ref.pdf
(50.79 KiB) Downloaded 175 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Page Layout

Post by localghost »

A document preamble is absolutely useless [1]. Prepare a proper minimal example that exactly reproduces the described behaviour. This means that you have to drop all code that is not necessary to reproduce the problem. It is completely unclear how you do your reference list so from my point of view specific help is not possible at the moment.

[1] View topic: Avoidable Mistakes


Thorsten
nenu28
Posts: 28
Joined: Mon Jun 27, 2011 11:24 am

Page Layout

Post by nenu28 »

Thanks for answer,
My references code is

Code: Select all

\begin{thebibliography}{10}

\bibitem{Agrawal1993}
Agrawal R, Imielinski T, Swami AN.
\newblock Mining Association Rules between sets of items in Large Databases.
\newblock In Proceedings ACM SIGMOD International Conference on Management of
  Data. 1993;22(2):207--216.
.......

\end{thebibliography}

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Page Layout

Post by localghost »

This is not a minimal example. Do you expect us to fudge a solution only by these useless code snippets? *facepalm*
Post Reply