Ich stehe vor dem Problem, dass ich meine Zitate aufliste als
\cite{citation42,citation23}
aber es erscheint immer noch in meiner Latex-Ausgabedatei als:
works [42], [23] ....
aber es sollte works [42,23] ....
Wie behebe ich das? Ich verwende die folgenden Pakete:
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\bibliographystyle{unsrt}
\usepackage{cite}
Ich habe versucht, das cite
Paket zu entfernen, aber nichts ändert sich.
Darauf verwiesen:Mehrere Zitate in einer Klammer
Ich bin mir nicht sicher, warum es in diesem Fall nicht in einer einzelnen Klammer zusammengefasst werden kann. Bitte helfen Sie, danke!
bearbeiten:
Hinzufügen der anderen ebenfalls verwendeten Pakete
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\bibliographystyle{unsrt}
Bearbeitung 2:
Beispiel zum Kopieren und Einfügen (ich habe es überprüft, es funktioniert, aber das Problem besteht weiterhin)
\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\bibliographystyle{unsrt}
\begin{document}
\title{Exploring the reason why my latex wont work for bibs}
\maketitle
\begin{abstract}
Recently, this is the abstract i am testing
\end{abstract}
\section{Introduction}
This is how we do the introduction and thus how things are donee in works \cite{citation42,citation23} like this.
\section*{Acknowledgment}
This project is funded by abcedergrfgsdfg
\begin{thebibliography}{00}
\bibitem{citation42}
L.Writer
\newblock Large scale benchmark
\newblock testestest
\bibitem{citation23}
L.Writer
\newblock Large scale benchmark
\newblock testestest
\end{thebibliography}
\end{document}