Repeat in author names when referring to three or more authors Unicorn Meta Zoo #1: Why...

Mechanism of the formation of peracetic acid

Is it acceptable to use working hours to read general interest books?

Why did Israel vote against lifting the American embargo on Cuba?

Stretch a Tikz tree

Where did Arya get these scars?

"Working on a knee"

Putting Ant-Man on house arrest

How would it unbalance gameplay to rule that Weapon Master allows for picking a fighting style?

Is it OK if I do not take the receipt in Germany?

Retract an already submitted recommendation letter (written for an undergrad student)

What do you call an IPA symbol that lacks a name (e.g. ɲ)?

AI positioning circles within an arc at equal distances and heights

Can I criticise the more senior developers around me for not writing clean code?

What helicopter has the most rotor blades?

What is a good proxy for government quality?

Did war bonds have better investment alternatives during WWII?

What is the ongoing value of the Kanban board to the developers as opposed to management

Why didn't the Space Shuttle bounce back into space many times as possible so that it loose lot of kinetic energy over there?

Married in secret, can marital status in passport be changed at a later date?

How do I deal with an erroneously large refund?

Why does Java have support for time zone offsets with seconds precision?

Where can I find how to tex symbols for different fonts?

using NDEigensystem to solve the Mathieu equation

Is Bran literally the world's memory?



Repeat in author names when referring to three or more authors



Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraLaTeX stopped building a BibTeX bibliography, how to troubleshoot it?Elsevier style citation for biblatexCiting (author, journalabbr., year) needed(Autor, year) reference as well as citation styleTitle not showig in bibliography due to modification of .bst fileOne cite crash allbiblatex: how to match the Journal of Finance bibliographic style?Different style of citation for two and more author biblatexPresentation References — no-title footnotes, allowing arXivProblem in rendering bibliography in ConTeXt












1















I am using the two-column format of the latex template provided by Springer( https://www.springer.com/gp/livingreviews/latex-templates ). To break longer citations I am using "breakcites" package. I use a bibtex file.



When I cite any paper with three or more authors (say author names are A,B,C with the publication year 2015), the citation comes out as:



This is the sample to show citation [A et al.(2015)A,
B, and C] which has 3 authors, [M and N(2005)] hav-
ing 2 authors, and [H(2010)] which has 1 author.



Here's the corresponding code snippet:



RequirePackage{fix-cm}
documentclass[twocolumn]{article} % twocolumn

makeatletter
defcl@chapter{@elt {theorem}}
makeatother
usepackage{graphicx}
usepackage{moreverb}
usepackage{amssymb}
usepackage{relsize}
usepackage{subcaption}
usepackage{nicefrac}
usepackage{bm}
usepackage{amsmath}
usepackage{tikz}
usepackage{mathtools, cuted}
captionsetup{compatibility = false}

usepackage{hyperref}
hypersetup{backref=true,
pagebackref=true,
hyperindex=true,
colorlinks=true,
breaklinks=true,
urlcolor= black,
linkcolor= blue,
bookmarks=true,
bookmarksopen=false,
citecolor=black,
linkcolor=black,
filecolor=black,
citecolor=blue,
linkbordercolor=blue
}
usepackage{cleveref}
usepackage{breakcites}

begin{document}
title{TITLE OF THE ARTICLE}
author{Tej Kumar}
date{Received: date / Accepted: date}

maketitle

section{Introduction}
label{intro}

This is the sample to show citation cite{A2015} which has 3 authors, cite{M2005} having 2 authors, and cite{H2010} which has 1 author.

% BibTeX users please use one of
%bibliographystyle{unsrt}
bibliographystyle{spbasic} % basic style, author-year citations
%bibliographystyle{spmpsci} % mathematics and physical sciences
%bibliographystyle{spphys} % APS-like style for physics
bibliography{tempBIB} % name your BibTeX data base

end{document}
% end of file template.tex


and the BIB file:



@article{A2015,
abstract = {XYZ.},
author = {A and B and C},
doi = {DOI},
isbn = {1234},
issn = {5789},
journal = {someJournal3},
keywords = {keywords},
number = {1-2},
pages = {100--110},
publisher = {somePublisher3},
title = {{someTitle3}},
url = {someUrl},
volume = {1},
year = {2015}
}
@article{H2010,
abstract = {XYZ.},
author = {H},
doi = {DOI},
isbn = {1234},
issn = {5789},
journal = {someJourna2l},
keywords = {keywords},
number = {1-2},
pages = {100--110},
publisher = {somePublisher2},
title = {{someTitle2}},
url = {someUrl},
volume = {1},
year = {2010}
}
@article{M2005,
abstract = {XYZ.},
author = {M and N},
doi = {DOI},
isbn = {1234},
issn = {5789},
journal = {someJournal1},
keywords = {keywords},
number = {1-2},
pages = {100--110},
publisher = {somePublisher1},
title = {{someTitle1}},
url = {someUrl},
volume = {1},
year = {2005}
}


The output desired is the following:
This is the sample to show citation [A et al.(2015)] which has 3 authors, [M and N(2005)] hav-
ing 2 authors, and [H(2010)] which has 1 author.



Thanks.










share|improve this question




















  • 2





    Welcome to TeX.SX. Get yourself in our seat. In order to solve your problem, we would need to put together an example and fumble around long enough, till we actually reproduce your problem. Could take 2 minutes, could take 20 minutes, one could give up after half an hour. Please edit the question and add a minimal working example to minimize our efforts.

    – Johannes_B
    Oct 17 '18 at 4:42











  • Seems that spbasic works best with natbib, so I suggest you load that package as well.

    – moewe
    Oct 17 '18 at 19:43
















1















I am using the two-column format of the latex template provided by Springer( https://www.springer.com/gp/livingreviews/latex-templates ). To break longer citations I am using "breakcites" package. I use a bibtex file.



When I cite any paper with three or more authors (say author names are A,B,C with the publication year 2015), the citation comes out as:



This is the sample to show citation [A et al.(2015)A,
B, and C] which has 3 authors, [M and N(2005)] hav-
ing 2 authors, and [H(2010)] which has 1 author.



Here's the corresponding code snippet:



RequirePackage{fix-cm}
documentclass[twocolumn]{article} % twocolumn

makeatletter
defcl@chapter{@elt {theorem}}
makeatother
usepackage{graphicx}
usepackage{moreverb}
usepackage{amssymb}
usepackage{relsize}
usepackage{subcaption}
usepackage{nicefrac}
usepackage{bm}
usepackage{amsmath}
usepackage{tikz}
usepackage{mathtools, cuted}
captionsetup{compatibility = false}

usepackage{hyperref}
hypersetup{backref=true,
pagebackref=true,
hyperindex=true,
colorlinks=true,
breaklinks=true,
urlcolor= black,
linkcolor= blue,
bookmarks=true,
bookmarksopen=false,
citecolor=black,
linkcolor=black,
filecolor=black,
citecolor=blue,
linkbordercolor=blue
}
usepackage{cleveref}
usepackage{breakcites}

begin{document}
title{TITLE OF THE ARTICLE}
author{Tej Kumar}
date{Received: date / Accepted: date}

maketitle

section{Introduction}
label{intro}

This is the sample to show citation cite{A2015} which has 3 authors, cite{M2005} having 2 authors, and cite{H2010} which has 1 author.

% BibTeX users please use one of
%bibliographystyle{unsrt}
bibliographystyle{spbasic} % basic style, author-year citations
%bibliographystyle{spmpsci} % mathematics and physical sciences
%bibliographystyle{spphys} % APS-like style for physics
bibliography{tempBIB} % name your BibTeX data base

end{document}
% end of file template.tex


and the BIB file:



@article{A2015,
abstract = {XYZ.},
author = {A and B and C},
doi = {DOI},
isbn = {1234},
issn = {5789},
journal = {someJournal3},
keywords = {keywords},
number = {1-2},
pages = {100--110},
publisher = {somePublisher3},
title = {{someTitle3}},
url = {someUrl},
volume = {1},
year = {2015}
}
@article{H2010,
abstract = {XYZ.},
author = {H},
doi = {DOI},
isbn = {1234},
issn = {5789},
journal = {someJourna2l},
keywords = {keywords},
number = {1-2},
pages = {100--110},
publisher = {somePublisher2},
title = {{someTitle2}},
url = {someUrl},
volume = {1},
year = {2010}
}
@article{M2005,
abstract = {XYZ.},
author = {M and N},
doi = {DOI},
isbn = {1234},
issn = {5789},
journal = {someJournal1},
keywords = {keywords},
number = {1-2},
pages = {100--110},
publisher = {somePublisher1},
title = {{someTitle1}},
url = {someUrl},
volume = {1},
year = {2005}
}


The output desired is the following:
This is the sample to show citation [A et al.(2015)] which has 3 authors, [M and N(2005)] hav-
ing 2 authors, and [H(2010)] which has 1 author.



Thanks.










share|improve this question




















  • 2





    Welcome to TeX.SX. Get yourself in our seat. In order to solve your problem, we would need to put together an example and fumble around long enough, till we actually reproduce your problem. Could take 2 minutes, could take 20 minutes, one could give up after half an hour. Please edit the question and add a minimal working example to minimize our efforts.

    – Johannes_B
    Oct 17 '18 at 4:42











  • Seems that spbasic works best with natbib, so I suggest you load that package as well.

    – moewe
    Oct 17 '18 at 19:43














1












1








1








I am using the two-column format of the latex template provided by Springer( https://www.springer.com/gp/livingreviews/latex-templates ). To break longer citations I am using "breakcites" package. I use a bibtex file.



When I cite any paper with three or more authors (say author names are A,B,C with the publication year 2015), the citation comes out as:



This is the sample to show citation [A et al.(2015)A,
B, and C] which has 3 authors, [M and N(2005)] hav-
ing 2 authors, and [H(2010)] which has 1 author.



Here's the corresponding code snippet:



RequirePackage{fix-cm}
documentclass[twocolumn]{article} % twocolumn

makeatletter
defcl@chapter{@elt {theorem}}
makeatother
usepackage{graphicx}
usepackage{moreverb}
usepackage{amssymb}
usepackage{relsize}
usepackage{subcaption}
usepackage{nicefrac}
usepackage{bm}
usepackage{amsmath}
usepackage{tikz}
usepackage{mathtools, cuted}
captionsetup{compatibility = false}

usepackage{hyperref}
hypersetup{backref=true,
pagebackref=true,
hyperindex=true,
colorlinks=true,
breaklinks=true,
urlcolor= black,
linkcolor= blue,
bookmarks=true,
bookmarksopen=false,
citecolor=black,
linkcolor=black,
filecolor=black,
citecolor=blue,
linkbordercolor=blue
}
usepackage{cleveref}
usepackage{breakcites}

begin{document}
title{TITLE OF THE ARTICLE}
author{Tej Kumar}
date{Received: date / Accepted: date}

maketitle

section{Introduction}
label{intro}

This is the sample to show citation cite{A2015} which has 3 authors, cite{M2005} having 2 authors, and cite{H2010} which has 1 author.

% BibTeX users please use one of
%bibliographystyle{unsrt}
bibliographystyle{spbasic} % basic style, author-year citations
%bibliographystyle{spmpsci} % mathematics and physical sciences
%bibliographystyle{spphys} % APS-like style for physics
bibliography{tempBIB} % name your BibTeX data base

end{document}
% end of file template.tex


and the BIB file:



@article{A2015,
abstract = {XYZ.},
author = {A and B and C},
doi = {DOI},
isbn = {1234},
issn = {5789},
journal = {someJournal3},
keywords = {keywords},
number = {1-2},
pages = {100--110},
publisher = {somePublisher3},
title = {{someTitle3}},
url = {someUrl},
volume = {1},
year = {2015}
}
@article{H2010,
abstract = {XYZ.},
author = {H},
doi = {DOI},
isbn = {1234},
issn = {5789},
journal = {someJourna2l},
keywords = {keywords},
number = {1-2},
pages = {100--110},
publisher = {somePublisher2},
title = {{someTitle2}},
url = {someUrl},
volume = {1},
year = {2010}
}
@article{M2005,
abstract = {XYZ.},
author = {M and N},
doi = {DOI},
isbn = {1234},
issn = {5789},
journal = {someJournal1},
keywords = {keywords},
number = {1-2},
pages = {100--110},
publisher = {somePublisher1},
title = {{someTitle1}},
url = {someUrl},
volume = {1},
year = {2005}
}


The output desired is the following:
This is the sample to show citation [A et al.(2015)] which has 3 authors, [M and N(2005)] hav-
ing 2 authors, and [H(2010)] which has 1 author.



Thanks.










share|improve this question
















I am using the two-column format of the latex template provided by Springer( https://www.springer.com/gp/livingreviews/latex-templates ). To break longer citations I am using "breakcites" package. I use a bibtex file.



When I cite any paper with three or more authors (say author names are A,B,C with the publication year 2015), the citation comes out as:



This is the sample to show citation [A et al.(2015)A,
B, and C] which has 3 authors, [M and N(2005)] hav-
ing 2 authors, and [H(2010)] which has 1 author.



Here's the corresponding code snippet:



RequirePackage{fix-cm}
documentclass[twocolumn]{article} % twocolumn

makeatletter
defcl@chapter{@elt {theorem}}
makeatother
usepackage{graphicx}
usepackage{moreverb}
usepackage{amssymb}
usepackage{relsize}
usepackage{subcaption}
usepackage{nicefrac}
usepackage{bm}
usepackage{amsmath}
usepackage{tikz}
usepackage{mathtools, cuted}
captionsetup{compatibility = false}

usepackage{hyperref}
hypersetup{backref=true,
pagebackref=true,
hyperindex=true,
colorlinks=true,
breaklinks=true,
urlcolor= black,
linkcolor= blue,
bookmarks=true,
bookmarksopen=false,
citecolor=black,
linkcolor=black,
filecolor=black,
citecolor=blue,
linkbordercolor=blue
}
usepackage{cleveref}
usepackage{breakcites}

begin{document}
title{TITLE OF THE ARTICLE}
author{Tej Kumar}
date{Received: date / Accepted: date}

maketitle

section{Introduction}
label{intro}

This is the sample to show citation cite{A2015} which has 3 authors, cite{M2005} having 2 authors, and cite{H2010} which has 1 author.

% BibTeX users please use one of
%bibliographystyle{unsrt}
bibliographystyle{spbasic} % basic style, author-year citations
%bibliographystyle{spmpsci} % mathematics and physical sciences
%bibliographystyle{spphys} % APS-like style for physics
bibliography{tempBIB} % name your BibTeX data base

end{document}
% end of file template.tex


and the BIB file:



@article{A2015,
abstract = {XYZ.},
author = {A and B and C},
doi = {DOI},
isbn = {1234},
issn = {5789},
journal = {someJournal3},
keywords = {keywords},
number = {1-2},
pages = {100--110},
publisher = {somePublisher3},
title = {{someTitle3}},
url = {someUrl},
volume = {1},
year = {2015}
}
@article{H2010,
abstract = {XYZ.},
author = {H},
doi = {DOI},
isbn = {1234},
issn = {5789},
journal = {someJourna2l},
keywords = {keywords},
number = {1-2},
pages = {100--110},
publisher = {somePublisher2},
title = {{someTitle2}},
url = {someUrl},
volume = {1},
year = {2010}
}
@article{M2005,
abstract = {XYZ.},
author = {M and N},
doi = {DOI},
isbn = {1234},
issn = {5789},
journal = {someJournal1},
keywords = {keywords},
number = {1-2},
pages = {100--110},
publisher = {somePublisher1},
title = {{someTitle1}},
url = {someUrl},
volume = {1},
year = {2005}
}


The output desired is the following:
This is the sample to show citation [A et al.(2015)] which has 3 authors, [M and N(2005)] hav-
ing 2 authors, and [H(2010)] which has 1 author.



Thanks.







bibliographies bibtex hyperref citing author-number






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 17 '18 at 15:41







Tej

















asked Oct 16 '18 at 22:00









TejTej

63




63








  • 2





    Welcome to TeX.SX. Get yourself in our seat. In order to solve your problem, we would need to put together an example and fumble around long enough, till we actually reproduce your problem. Could take 2 minutes, could take 20 minutes, one could give up after half an hour. Please edit the question and add a minimal working example to minimize our efforts.

    – Johannes_B
    Oct 17 '18 at 4:42











  • Seems that spbasic works best with natbib, so I suggest you load that package as well.

    – moewe
    Oct 17 '18 at 19:43














  • 2





    Welcome to TeX.SX. Get yourself in our seat. In order to solve your problem, we would need to put together an example and fumble around long enough, till we actually reproduce your problem. Could take 2 minutes, could take 20 minutes, one could give up after half an hour. Please edit the question and add a minimal working example to minimize our efforts.

    – Johannes_B
    Oct 17 '18 at 4:42











  • Seems that spbasic works best with natbib, so I suggest you load that package as well.

    – moewe
    Oct 17 '18 at 19:43








2




2





Welcome to TeX.SX. Get yourself in our seat. In order to solve your problem, we would need to put together an example and fumble around long enough, till we actually reproduce your problem. Could take 2 minutes, could take 20 minutes, one could give up after half an hour. Please edit the question and add a minimal working example to minimize our efforts.

– Johannes_B
Oct 17 '18 at 4:42





Welcome to TeX.SX. Get yourself in our seat. In order to solve your problem, we would need to put together an example and fumble around long enough, till we actually reproduce your problem. Could take 2 minutes, could take 20 minutes, one could give up after half an hour. Please edit the question and add a minimal working example to minimize our efforts.

– Johannes_B
Oct 17 '18 at 4:42













Seems that spbasic works best with natbib, so I suggest you load that package as well.

– moewe
Oct 17 '18 at 19:43





Seems that spbasic works best with natbib, so I suggest you load that package as well.

– moewe
Oct 17 '18 at 19:43










1 Answer
1






active

oldest

votes


















0














I was also having the same issue and as per the comment, I used usepackage{natbib} at the beginning of the document.
The issue was resolved.





share








New contributor




Abdul Aleem is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















    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
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f455482%2frepeat-in-author-names-when-referring-to-three-or-more-authors%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    I was also having the same issue and as per the comment, I used usepackage{natbib} at the beginning of the document.
    The issue was resolved.





    share








    New contributor




    Abdul Aleem is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.

























      0














      I was also having the same issue and as per the comment, I used usepackage{natbib} at the beginning of the document.
      The issue was resolved.





      share








      New contributor




      Abdul Aleem is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.























        0












        0








        0







        I was also having the same issue and as per the comment, I used usepackage{natbib} at the beginning of the document.
        The issue was resolved.





        share








        New contributor




        Abdul Aleem is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.










        I was also having the same issue and as per the comment, I used usepackage{natbib} at the beginning of the document.
        The issue was resolved.






        share








        New contributor




        Abdul Aleem is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.








        share


        share






        New contributor




        Abdul Aleem is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered 5 mins ago









        Abdul AleemAbdul Aleem

        1




        1




        New contributor




        Abdul Aleem is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        Abdul Aleem is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        Abdul Aleem is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f455482%2frepeat-in-author-names-when-referring-to-three-or-more-authors%23new-answer', 'question_page');
            }
            );

            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







            Popular posts from this blog

            Paper upload error, “Upload failed: The top margin is 0.715 in on page 3, which is below the required...

            Emraan Hashmi Filmografia | Linki zewnętrzne | Menu nawigacyjneGulshan GroverGulshan...

            How can I write this formula?newline and italics added with leqWhy does widehat behave differently if I...