I need your help once again

Today I have problem with BIB file. To display the bibliography I use these comments:
Code: Select all
\bibliographystyle{spmpsci}
\bibliography{library}

Do you have any ideas?
Code: Select all
\bibliographystyle{spmpsci}
\bibliography{library}
NEW: TikZ book now 40% off at Amazon.com for a short time.
\bibliographystyle
would result in an error and \bibliography
is also deprecated.Hi Stefan!Stefan Kottwitz wrote:Hi Martha,
what are your other settings? How do you load the biblatex, with which options? Did you run bibtex or biber? That's an external tool that you may need to run manually, of your editor doesn't run it automatically.
Stefan
\bibliographystyle
. These are two completely different approaches. See the linked manuals or a good up-to-date introduction to LaTeX for more information.spmpsci.bst
, which I do not know nor find on CTAN (maybe a publisher bibtex style file?), you cannot use biblatex
.OK. Here is the problem that I got this file from someone else and I think that maybe this file was compiled in Overleaf which has many easier settings than Texmaker which I am using.Ijon Tichy wrote:Please first decide to use eitherbiblatex +
biber or
bibtex with
\bibliographystyle
. These are two completely different approaches. See the linked manuals or a good up-to-date introduction to LaTeX for more information.
If you have to usespmpsci.bst
, which I do not know nor find on CTAN (maybe a publisher bibtex style file?), you cannot usebiblatex
.
So to answer your question, we need much more (detailed) information about what you are trying to do.
Code: Select all
\documentclass[runningheads]{svproc}
% to typeset URLs, URIs, and DOIs
\usepackage{url}
\def\UrlFont{\rmfamily}
\usepackage{makeidx} % allows for index generation
% multicolumn layout
\usepackage{multicol}
% graphics
\usepackage{graphicx} % permit graphics inclusion
\usepackage{subfigure}
\usepackage{rotating} % box rotating (use with moderation)
\usepackage[T1]{fontenc} % needed for (among other) Polish diactrics
% tables
\usepackage{tabularx} % advanced table formatting
\usepackage{multirow} % permit row spanning
% place footnotes on the bottom of the page
\usepackage[bottom]{footmisc}
% provide \Floatbarrier (use \Floatbarrier with caution!)
\usepackage{placeins}
% bibliography
\usepackage{cite}
% mathematical typesetting
\usepackage{amsmath} %
\usepackage{amssymb} %
\usepackage{amsfonts} %
ieeetr
and now I can see the bibliography and citations in the text. The last thing I want to change are the numbers in the list of references. plain
:
Code: Select all
\documentclass[a4paper]{article}
\begin{document}
This is an example of a paragraph with in-text
citations using the plain BibTeX style.
Here is a reference to a journal article with
a single author \cite{aksin}, to a journal
article with two authors \cite{baez/article} and
several authors \cite{murray}, and to a book
\cite{aristotle:anima}.
\bibliographystyle{plain}
\bibliography{biblatex-examples}
\end{document}
biblatex
+ biber
:
Code: Select all
\documentclass[a4paper,english]{article}
\usepackage{babel}
\usepackage{csquotes}
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
This is an example of a paragraph with in-text
citations using the plain BibTeX style.
Here is a reference to a journal article with
a single author \autocite{aksin}, to a journal
article with two authors \autocite{baez/article} and
several authors \autocite{murray}, and to a book
\autocite{aristotle:anima} and an online resource \autocite{ctan}.
\printbibliography
\end{document}
biber
instead of bibtex
.Code: Select all
\begin{filecontents}{library.bib}
@article{Decruz2019,
author = {Joshua Decruz and Rex Premchand Antony Rex and Suheal Ali Khan},
doi = {10.1016/j.cjtee.2019.01.004},
issn = {10081275},
issue = {2},
journal = {Chinese Journal of Traumatology},
month = {4},
unusedTitle = {Epidemiology of inpatient tibia fractures in Singapore – A single centre experience},
volume = {22},
year = {2019},
}
\end{filecontents}
\documentclass[runningheads,a4paper]{llncs}
% to typeset URLs, URIs, and DOIs
\usepackage{url}
\def\UrlFont{\rmfamily}
\usepackage{makeidx} % allows for index generation
% multicolumn layout
\usepackage{multicol}
% graphics
\usepackage{graphicx} % permit graphics inclusion
\usepackage{subfigure}
\usepackage{rotating} % box rotating (use with moderation)
\usepackage[T1]{fontenc} % needed for (among other) Polish diactrics
% tables
\usepackage{tabularx} % advanced table formatting
\usepackage{multirow} % permit row spanning
% place footnotes on the bottom of the page
\usepackage[bottom]{footmisc}
% provide \Floatbarrier (use \Floatbarrier with caution!)
\usepackage{placeins}
% bibliography
\usepackage{cite}
% mathematical typesetting
\usepackage{amsmath} %
\usepackage{amssymb} %
\usepackage{amsfonts} %
\begin{document}
Some text and some citation \cite{Decruz2019}
\bibliographystyle{ieeetr}
\bibliography{library}
\end{document}
Code: Select all
\begin{filecontents}{library.bib}
@article{Decruz2019,
author = {Joshua Decruz and Rex Premchand Antony Rex and Suheal Ali Khan},
doi = {10.1016/j.cjtee.2019.01.004},
issn = {10081275},
issue = {2},
journal = {Chinese Journal of Traumatology},
month = {4},
unusedTitle = {Epidemiology of inpatient tibia fractures in Singapore – A single centre experience},
volume = {22},
year = {2019},
}
\end{filecontents}
\documentclass[runningheads,a4paper]{article}
% to typeset URLs, URIs, and DOIs
\usepackage{url}
\def\UrlFont{\rmfamily}
\usepackage{makeidx} % allows for index generation
% multicolumn layout
\usepackage{multicol}
% graphics
\usepackage{graphicx} % permit graphics inclusion
\usepackage{subfigure}
\usepackage{rotating} % box rotating (use with moderation)
\usepackage[T1]{fontenc} % needed for (among other) Polish diactrics
% tables
\usepackage{tabularx} % advanced table formatting
\usepackage{multirow} % permit row spanning
% place footnotes on the bottom of the page
\usepackage[bottom]{footmisc}
% provide \Floatbarrier (use \Floatbarrier with caution!)
\usepackage{placeins}
% bibliography
\usepackage{cite}
% mathematical typesetting
\usepackage{amsmath} %
\usepackage{amssymb} %
\usepackage{amsfonts} %
\begin{document}
Some text and some citation \cite{Decruz2019}
\bibliographystyle{ieeetr}
\bibliography{library}
\end{document}
llns.cls
that the references are pointed in this way:NEW: TikZ book now 40% off at Amazon.com for a short time.