BibTeX, biblatex and biberReferences do not show up all

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Leonardo100
Posts: 4
Joined: Thu Aug 24, 2017 6:02 pm

References do not show up all

Post by Leonardo100 »

Hello guys ;

I have a trouble with this tex file, I put all my references in the file as usual but it only shows 13-16 references only, I am using Texpad in mac os and it shows no error in generating .

Here is the minimal example with all my references . I am forced to use this document class {amsart} according to the journal. May anyone help for this problem please.

Thanks in advanced .


Code, edit and compile here:
\documentclass[12pt, reqno]{amsart}
\usepackage[utf8]{inputenc}
\usepackage{amssymb,amsbsy,amsmath,amsfonts,amssymb,amscd}
\usepackage{amsthm}
\usepackage[mathcal]{eucal}
\usepackage{eufrak}
\usepackage[mathcal]{eucal}
\usepackage{eufrak}\date{}
\usepackage[T1]{fontenc}
\usepackage[all]{xy}
\usepackage{verbatim}
%\usepackage{amsmath}
%\usepackage{amssymb}
\usepackage{epsfig}
\usepackage{float}
\usepackage{amsmath, amsthm, amscd, amsfonts, amssymb, graphicx, color}
\usepackage[bookmarksnumbered, plainpages, backref]{hyperref}
%\usepackage{geometry}
%\geometry{a4paper,top=2cm,bottom=2cm,hmargin=2cm}
%\usepackage{amsmath, amsthm, amscd, amsfonts, amssymb, graphicx, color}
%\usepackage[bookmarksnumbered, plainpages, backref]{hyperref}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{conjecture}[theorem]{Conjecture}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\newtheorem{xca}[theorem]{Exercise}
\newtheorem{problem}[theorem]{Problem}
\theoremstyle{remark}
\newtheorem{remark}[theorem]{Remark}
\newcommand{\N}{\mathbb N}
\newcommand{\R}{\mathbb R}
\numberwithin{equation}{section}
\begin{document}
 
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

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

Ijon Tichy
Posts: 640
Joined: Mon Dec 24, 2018 10:12 am

References do not show up all

Post by Ijon Tichy »

First of all: You should not packages more than once. And amsart already loads amsmath and amsfonts. amsmath already loads amsby. So, from all the ams…- packages, you need only amssymb, amscd and amsthm and only, if you use them.

epsfig is a LaTeX 2.09 compatibility package, you should not use it for new documents. Use the graphicx interface instead of the epsfig interface.

Please avoid commented code in MWEs.

\setcounter{page}{1} does not make sense at the first page.

Now, let's talk about your bibliography problem:

You have several items with the same label (argument of \bibitem). But these should be unique. So you have to make the labels unique. Label duplicates result in real errors with hyperref.

And there are invisible characters in some entries that result in error messages like
Package inputenc Error: Unicode character  (U+0080) (also for U+0081, U+0085, U+0093 etc). You have to eliminate all these errors.

And there are entries with more errors using hyperref with option backref.

With hyperref all these problems are fatal. Without hyperref and after elimination of the inputenc Errors at least a PDF with all references is produced. But you cannot use \cite for duplicated labels. So you really should use unique labels.

Note: I've done only some fixes in the following example. The labels are unique now. The unicode error messages are eliminated in the entries with the "HERE" comments. But you should revise the whole references!

Code: Select all

Code, edit and compile here:
\documentclass[12pt, reqno]{amsart}
\usepackage[utf8]{inputenc}% NOTE: Not needed with LaTeX since 2018-04-01
% NOTE: amsart already loads amsmath and amsfonts
% amsmath already loads amsbsy, it also loads amstext and amsopn.
% So you at most need to load amssymb (once!), amscd and amsthm
\usepackage{amsmath,amssymb,amscd}% NOTE: Reduced (see note above).
\usepackage{amsthm}
\usepackage[mathcal]{eucal}
%\usepackage{eufrak}% NOTE: Redundant if amsfonts are loaded (see above)
%\usepackage[mathcal]{eucal}% NOTE: Don't load packages more than once
%\usepackage{eufrak}% NOTE: Don't load packages more than once
\date{}
\usepackage[T1]{fontenc}
\usepackage[all]{xy}
\usepackage{verbatim}
%\usepackage{amsmath}% NOTE: Don't load packages more than once
%\usepackage{amssymb}% NOTE: Don't load packages more than oncve
%\usepackage{epsfig}% NOTE: You should not use this LaTeX 2.09 compatibility wrapper any longer!
\usepackage{float}
%\usepackage{amsmath, amsthm, amscd, amsfonts, amssymb}% NOTE: Don't load packages more than once
\usepackage{graphicx,color}
\usepackage[bookmarksnumbered, plainpages]{hyperref}% NOTE: backref removed because of several errors with bibitems
%\usepackage{geometry}% NOTE: Avoid commented preamble code in MWEs
%\geometry{a4paper,top=2cm,bottom=2cm,hmargin=2cm}% NOTE: Avoid commented preamble code in MWEs
%\usepackage{amsmath, amsthm, amscd, amsfonts, amssymb, graphicx, color}% NOTE: Don't load packages more than once
%\usepackage[bookmarksnumbered, plainpages, backref]{hyperref}% NOTE: Don't load packages more than once
\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{corollary}[theorem]{Corollary}
\newtheorem{conjecture}[theorem]{Conjecture}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\newtheorem{xca}[theorem]{Exercise}
\newtheorem{problem}[theorem]{Problem}
\theoremstyle{remark}
\newtheorem{remark}[theorem]{Remark}
\newcommand{\N}{\mathbb N}
 
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
BTW: I would recommend to use biblatex and biber or at least BibTeX to make the references.
Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. :cry:
Leonardo100
Posts: 4
Joined: Thu Aug 24, 2017 6:02 pm

References do not show up all

Post by Leonardo100 »

Thanks in advanced , I really appreciate your notes, I will work on what you told me to do .
Post Reply