elsarticle-num.bst: year appears twice in the bibliography entryelsarticle error: You can't pop an empty literal stack for entryYear is missing for articles entries in elsarticle-num bibilographyMissing year in bibliography entryBibligraphy ordering - ignore entryElsarticle no bibliography on the pdf outputLabels of the authors in elsarticleYear Missing in Bibliography Entries - elsarticleHow to include the doi in only one single bibtex reference and exclude it from all others?elsarticle: problems with begincaseselsarticle - same author, same year - show year twiceelsarticle error: You can't pop an empty literal stack for entry
Did 'Cinema Songs' exist during Hiranyakshipu's time?
 
 Notepad++ delete until colon for every line with replace all
 
 Getting extremely large arrows with tikzcd
 
 Avoiding the "not like other girls" trope?
 
 What is required to make GPS signals available indoors?
 
 Why were 5.25" floppy drives cheaper than 8"?
 
 How to prevent "they're falling in love" trope
 
 Is this draw by repetition?
 
 What reasons are there for a Capitalist to oppose a 100% inheritance tax?
 
 What do you call someone who asks many questions?
 
 Does int main() need a declaration on C++?
 
 How obscure is the use of 令 in 令和?
 
 files created then deleted at every second in tmp directory
 
 Obtaining database information and values in extended properties
 
 My ex-girlfriend uses my Apple ID to login to her iPad, do I have to give her my Apple ID password to reset it?
 
 How to compactly explain secondary and tertiary characters without resorting to stereotypes?
 
 Finding the reason behind the value of the integral.
 
 What is an equivalently powerful replacement spell for Yuan-Ti's Suggestion spell?
 
 Sums of two squares in arithmetic progressions
 
 Why was Sir Cadogan fired?
 
 Is it possible to map the firing of neurons in the human brain so as to stimulate artificial memories in someone else?
 
 Is there a hemisphere-neutral way of specifying a season?
 
 Implication of namely
 
 GFCI outlets - can they be repaired? Are they really needed at the end of a circuit?
elsarticle-num.bst: year appears twice in the bibliography entry
elsarticle error: You can't pop an empty literal stack for entryYear is missing for articles entries in elsarticle-num bibilographyMissing year in bibliography entryBibligraphy ordering - ignore entryElsarticle no bibliography on the pdf outputLabels of the authors in elsarticleYear Missing in Bibliography Entries - elsarticleHow to include the doi in only one single bibtex reference and exclude it from all others?elsarticle: problems with begincaseselsarticle - same author, same year - show year twiceelsarticle error: You can't pop an empty literal stack for entry
Continuing resolving the misc entry in https://tex.stackexchange.com/a/482872, let's conside the input
documentclasselsarticle%% V3.1 from https://ctan.org/tex-archive/macros/latex/contrib/elsarticle
usepackagefilecontents
beginfilecontentsjobname.bib
@articleLevesonTurner-InvestigationOfTheTherac25Accidents,
 author = Nancy Gail Leveson and Clark Savage Turner,
 title = Investigation of the Therac-25 accidents,
 journal = IEEE Computer,
 volume = 26,
 number = 7,
 pages = 18--41,
 year = 1993
endfilecontents
bibliographystyleelsarticle-num%%% V2.1 From https://ctan.org/tex-archive/macros/latex/contrib/elsarticle
begindocument
citeLevesonTurner-InvestigationOfTheTherac25Accidents
bibliographyjobname
enddocument
Running the standard pdflatex-bibtex loop on it produces the year (1993) twice:
When I look at the style file around line 1177, I see that the year is being processed only once:
FUNCTION article
 output.bibitem
 format.authors "author" output.check
 title empty$ 'skip$ 'setup.inlinelink if$ % urlbst
 format.title "title" output.check
 crossref missing$
 journal
 "journal" output.check
 % add.blank
 before.all 'output.state :=
 format.vol.num.pages output
 
 format.article.crossref output.nonnull
 format.pages output
 
 if$
 format.journal.pages
 format.note output
 format.date "year" output.check
 fin.entry
 write.url
I don't see what's wrong. Any bugfix?
bibtex elsarticle
add a comment |
Continuing resolving the misc entry in https://tex.stackexchange.com/a/482872, let's conside the input
documentclasselsarticle%% V3.1 from https://ctan.org/tex-archive/macros/latex/contrib/elsarticle
usepackagefilecontents
beginfilecontentsjobname.bib
@articleLevesonTurner-InvestigationOfTheTherac25Accidents,
 author = Nancy Gail Leveson and Clark Savage Turner,
 title = Investigation of the Therac-25 accidents,
 journal = IEEE Computer,
 volume = 26,
 number = 7,
 pages = 18--41,
 year = 1993
endfilecontents
bibliographystyleelsarticle-num%%% V2.1 From https://ctan.org/tex-archive/macros/latex/contrib/elsarticle
begindocument
citeLevesonTurner-InvestigationOfTheTherac25Accidents
bibliographyjobname
enddocument
Running the standard pdflatex-bibtex loop on it produces the year (1993) twice:
When I look at the style file around line 1177, I see that the year is being processed only once:
FUNCTION article
 output.bibitem
 format.authors "author" output.check
 title empty$ 'skip$ 'setup.inlinelink if$ % urlbst
 format.title "title" output.check
 crossref missing$
 journal
 "journal" output.check
 % add.blank
 before.all 'output.state :=
 format.vol.num.pages output
 
 format.article.crossref output.nonnull
 format.pages output
 
 if$
 format.journal.pages
 format.note output
 format.date "year" output.check
 fin.entry
 write.url
I don't see what's wrong. Any bugfix?
bibtex elsarticle
add a comment |
Continuing resolving the misc entry in https://tex.stackexchange.com/a/482872, let's conside the input
documentclasselsarticle%% V3.1 from https://ctan.org/tex-archive/macros/latex/contrib/elsarticle
usepackagefilecontents
beginfilecontentsjobname.bib
@articleLevesonTurner-InvestigationOfTheTherac25Accidents,
 author = Nancy Gail Leveson and Clark Savage Turner,
 title = Investigation of the Therac-25 accidents,
 journal = IEEE Computer,
 volume = 26,
 number = 7,
 pages = 18--41,
 year = 1993
endfilecontents
bibliographystyleelsarticle-num%%% V2.1 From https://ctan.org/tex-archive/macros/latex/contrib/elsarticle
begindocument
citeLevesonTurner-InvestigationOfTheTherac25Accidents
bibliographyjobname
enddocument
Running the standard pdflatex-bibtex loop on it produces the year (1993) twice:
When I look at the style file around line 1177, I see that the year is being processed only once:
FUNCTION article
 output.bibitem
 format.authors "author" output.check
 title empty$ 'skip$ 'setup.inlinelink if$ % urlbst
 format.title "title" output.check
 crossref missing$
 journal
 "journal" output.check
 % add.blank
 before.all 'output.state :=
 format.vol.num.pages output
 
 format.article.crossref output.nonnull
 format.pages output
 
 if$
 format.journal.pages
 format.note output
 format.date "year" output.check
 fin.entry
 write.url
I don't see what's wrong. Any bugfix?
bibtex elsarticle
Continuing resolving the misc entry in https://tex.stackexchange.com/a/482872, let's conside the input
documentclasselsarticle%% V3.1 from https://ctan.org/tex-archive/macros/latex/contrib/elsarticle
usepackagefilecontents
beginfilecontentsjobname.bib
@articleLevesonTurner-InvestigationOfTheTherac25Accidents,
 author = Nancy Gail Leveson and Clark Savage Turner,
 title = Investigation of the Therac-25 accidents,
 journal = IEEE Computer,
 volume = 26,
 number = 7,
 pages = 18--41,
 year = 1993
endfilecontents
bibliographystyleelsarticle-num%%% V2.1 From https://ctan.org/tex-archive/macros/latex/contrib/elsarticle
begindocument
citeLevesonTurner-InvestigationOfTheTherac25Accidents
bibliographyjobname
enddocument
Running the standard pdflatex-bibtex loop on it produces the year (1993) twice:
When I look at the style file around line 1177, I see that the year is being processed only once:
FUNCTION article
 output.bibitem
 format.authors "author" output.check
 title empty$ 'skip$ 'setup.inlinelink if$ % urlbst
 format.title "title" output.check
 crossref missing$
 journal
 "journal" output.check
 % add.blank
 before.all 'output.state :=
 format.vol.num.pages output
 
 format.article.crossref output.nonnull
 format.pages output
 
 if$
 format.journal.pages
 format.note output
 format.date "year" output.check
 fin.entry
 write.url
I don't see what's wrong. Any bugfix?
bibtex elsarticle
bibtex elsarticle
asked 3 mins ago
user49915user49915
703122
703122
add a comment |
add a comment |
 0
 
active
oldest
votes
Your Answer 
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f482878%2felsarticle-num-bst-year-appears-twice-in-the-bibliography-entry%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
 0
 
active
oldest
votes
 0
 
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
 
But avoid …
- Asking for help, clarification, or responding to other answers.
 - Making statements based on opinion; back them up with references or personal experience.
 
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f482878%2felsarticle-num-bst-year-appears-twice-in-the-bibliography-entry%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown