BibTeX, biblatex and biberError when implementing bibtex

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
arjaan93
Posts: 7
Joined: Fri Feb 19, 2016 12:11 am

Error when implementing bibtex

Post by arjaan93 »

Dear all,

I implemented a bibliography in my first Latex report with the help of some Youtube videos but everytime I run it I get an error.The strange thing is that I can make PDF from my report fine and citing works as well. Still I want to get rid of the error messages.

Error message: 'Something's wrong--perhaps a missing \item.See' But there is nothing wrong with my itemize list. When I remove the itemize list in question the error is about another itemize list. The logfile is in the attachment.

This is all I implemented in order to get the bibliography right.

Code: Select all

\documentclass[11pt]{article}
\usepackage[rightcaption]{sidecap}%nodig voor verwijzingen
\usepackage[numbers,sort&compress]{natbib}
\begin{document}


\section{References}
\bibliographystyle{IEEEtran}% or plain \ IEEEtran \ unsrt
\renewcommand{\refname}{}
\bibliography{bib}
\end{document}
The bib file looks like this:

Code: Select all

5 Encoding: UTF-8

@Misc{helipad,
  howpublished = {http://nottinghamhospitalscharity.org.uk/appeals/emergency-care/}
}

@Misc{HSE,
  howpublished = {http://www.hse.gov.uk/coshh/basics.htm}
}

@Misc{safetymanual,
   howpublished = {http://www.nottingham.ac.uk/~pczsw/SAFETY/OrgManual13.pdf}
}

@Misc{safetywebsite,
  howpublished = {http://nottingham.ac.uk/~pczsw/SAFETY/index_files/Page497.htm}
}
Anyone any suggestions?
Attachments
Logfile.txt
(40.46 KiB) Downloaded 388 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

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Error when implementing bibtex

Post by Johannes_B »

This cannot be reproduced, the example shows another error. The given logfile does not match the example given.

Please test your examples and provide us with the information we need.

Please ask your advisor for advice on online entries. You cannot cite stuff that way (LaTeX doesn't care at all, but academically you cannot).
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
arjaan93
Posts: 7
Joined: Fri Feb 19, 2016 12:11 am

Re: Error when implementing bibtex

Post by arjaan93 »

Thanks for the reply. I am currently in the process of making it academically acceptable but wanted to get rid of the errors first. I changed my bib file now and made a shorter version of my report. The whole thing can be ran completely from the zip file I attached. The file in question is forum2.tex

The error that keeps coming up is: "missing \item in an itemize list" but there is nothing wrong with the list as you can see in the file.

I hope this is more useful

Arjaan
Attachments
FORUM ZIP.zip
(219.39 KiB) Downloaded 332 times
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Error when implementing bibtex

Post by Johannes_B »

Code: Select all

\documentclass[11pt]{article}
\begin{document}
\section{INFO}
\begin{flushleft}%voorkomt de indent van nieuwe paragraaf
\subsection{Chemistry}
Some text

\begin{itemize}
\item Theoretical and Computational Chemistry
\item Molecular Structure and Spectroscopy 
\item Chemical and Structural Biology 
\item Sustainable Synthesis and Catalysis
\item Functional Materials and Nano-sciences 
\end{itemize}
\end{flushleft}%voorkomt de indent van nieuwe paragraaf
\end{document}
That has nothing to do with your bibliography. Use \raggedright instead of the flushleft environment.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
arjaan93
Posts: 7
Joined: Fri Feb 19, 2016 12:11 am

Re: Error when implementing bibtex

Post by arjaan93 »

Wow John,

This solved it! Thank you for the quick response!
Post Reply