Articles, Essays, and Journal Templates ⇒ Article names does not appear in references
Article names does not appear in references
Please also see below how references are added to JabRef 2.10.
@Book{antoulas2005approximation,
Title = {Approximation of large-scale dynamical systems},
Author = {Antoulas, Athanasios C},
Publisher = {Siam},
Year = {2005},
Volume = {6},
Doi = {10.1137/1.9780898718713}
}
@Article{antoulas2001survey,
Title = {A survey of model reduction methods for large-scale systems},
Author = {Antoulas, Athanasios C and Sorensen, Danny C and Gugercin, Serkan},
Journal = {Contemporary mathematics},
Year = {2001},
Pages = {193--220},
Volume = {280},
Publisher = {Providence, RI; American Mathematical Society; 1999}
}
@Article{bai2002krylov,
Title = {Krylov subspace techniques for reduced-order modeling of large-scale dynamical systems},
Author = {Bai, Zhaojun},
Journal = {Applied numerical mathematics},
Year = {2002},
Number = {1-2},
Pages = {9--44},
Volume = {43},
Publisher = {Elsevier}
}
I hope anyone can help me with this issue. Thanks!
- Attachments
-
- references.png (40.23 KiB) Viewed 34467 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
Article names does not appear in references
Stefan
Article names does not appear in references
The content of the .bib file is:
% This file was created with JabRef 2.10.
% Encoding: UTF8
@Book{antoulas2005approximation,
Title = {Approximation of large-scale dynamical systems},
Author = {Antoulas, Athanasios C},
Publisher = {Siam},
Year = {2005},
Volume = {6},
Doi = {10.1137/1.9780898718713}
}
@Article{antoulas2001survey,
Title = {A survey of model reduction methods for large-scale systems},
Author = {Antoulas, Athanasios C and Sorensen, Danny C and Gugercin, Serkan},
Journal = {Contemporary mathematics},
Year = {2001},
Pages = {193--220},
Volume = {280},
Publisher = {Providence, RI; American Mathematical Society; 1999}
}
@Article{bai2002krylov,
Title = {Krylov subspace techniques for reduced-order modeling of large-scale dynamical systems},
Author = {Bai, Zhaojun},
Journal = {Applied numerical mathematics},
Year = {2002},
Number = {1-2},
Pages = {9--44},
Volume = {43},
Publisher = {Elsevier}
}
The .blg content is:
This is BibTeX, Version 0.99dThe top-level auxiliary file: scifile.aux
The style file: Science.bst
Database file #1: scibib.bib
Warning--I didn't find a database entry for "tth"
Warning--I didn't find a database entry for "use2e"
Warning--I didn't find a database entry for "inclme"
Warning--I didn't find a database entry for "nattex"
(There were 4 warnings)
And the .bbl content is:
\begin{thebibliography}{1}
\bibitem{antoulas2005approximation}
A.~C. Antoulas, {\it Approximation of large-scale dynamical systems\/}, vol.~6
(Siam, 2005).
\bibitem{antoulas2001survey}
A.~C. Antoulas, D.~C. Sorensen, S.~Gugercin, {\it Contemporary mathematics\/}
{\bf 280}, 193 (2001).
\bibitem{bai2002krylov}
Z.~Bai, {\it Applied numerical mathematics\/} {\bf 43}, 9 (2002).
\end{thebibliography}
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
Article names does not appear in references
Code: Select all
FUNCTION {article}
{ output.bibitem
format.authors "author" output.check
crossref missing$
{ journal
emphasize
"journal" output.check
add.blank
format.vol.num.pages output
format.date "year" output.check
}
{ format.article.crossref output.nonnull
format.pages output
}
if$
new.sentence
format.note output
fin.entry
}
Code: Select all
FUNCTION {book}
{ output.bibitem
author empty$
{ format.editors "author and editor" output.check
}
{ format.authors output.nonnull
crossref missing$
{ "author and editor" editor either.or.check }
'skip$
if$
}
if$
format.btitle "title" output.check
crossref missing$
{ format.bvolume output
format.number.series output
format.publisher.address output
}
{
format.book.crossref output.nonnull
format.date "year" output.check
}
if$
format.edition output
new.sentence
format.note output
fin.entry
}
Stefan