How to obtain Harvard Referencing Style with Page Numbers?












1















I am new to LaTex and using TexShop as my Editor. I have been able to generate my list of references and cite them in text using cite{}, but the thing is that I want to use the Harvard Referencing Style, so that in text, my citation comes with parentheses, authors' names and the year. There should also be a provision to specify a page number if I would like to in the in-text citation.



I am using BibLatex as outlined below:-



usepackage[backend=bibtex]{biblatex}
addbibresource{references.bib}


This is followed by



printbibliography


at the end of the document (before end{document})



A sample reference in my references.bib file looks like this:



@article{einstein,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{"o}rper}. ({German})
[{On} the electrodynamics of moving bodies]",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
DOI = "http://dx.doi.org/10.1002/andp.19053221004"


I have tried using cite{}, parencite{} etc. and also with for specifying page number but nothing seems to work. I looked into various similar questions on Stackechange for Tex but am highly confused. My ultimate goal is to be able to generate in-text citations with author names, year, and page number (which can be specified if needed in-text). The final bibliography at the end of my document should look as well in the Harvard Referencing Style. Also, I have the query that if there are multiple authors in a paper, such as Firstname1 Lastname1, Firstname2 Lastname2 etc., so in the .bib file, should I mention authors name as complete names or as Firstname1_Initial.Lastname1, Firstname2_Initial.Lastname2 etc.



Any help in this regard would be highly appreciated. Many thanks and Cheers!










share|improve this question


















  • 1





    usepackage[style=authoryear, backend=bibtex]{biblatex} would give you "Harvard style" (i.e. author year citations)

    – moewe
    3 hours ago











  • Thanks. But could you kindly clarify on how to specify page numbers in the in-text citations? I am not understanding how to use parencite or cite for this purpose. Also, I have the query that if there are multiple authors in a paper, such as Firstname1 Lastname1, Firstname2 Lastname2 etc., so in the .bib file, should I mention authors name as complete names or as Firstname1_Initial.Lastname1, Firstname2_Initial.Lastname2 etc as my final bibliography looks quite odd and weird maybe because I am using wrong style of authors naming.

    – Joyjit Chatterjee
    3 hours ago











  • parencite[380]{sigfridsson}. Names should always be given as in tex.stackexchange.com/q/557/35864 and tex.stackexchange.com/q/36396/35864

    – moewe
    3 hours ago











  • When I use author = "Chatterjee, J. and Saxena, A.", where Chatterjee and Saxena are Last names and J. and A. are first name initials, I am getting bibliography in end of document which shows Chatterjee, J. and A. Saxena. This is quite odd as in one case first name shows before, while in other, first name comes afterwards. I followed tex.stackexchange.com/q/557/35864. Thanks

    – Joyjit Chatterjee
    3 hours ago








  • 1





    I have tried to address your questions in my answer below. Please comment if anything is unclear. For future questions you may want to try to ask about only one issue per question. That makes things easier to handle and more relevant for other people as well. See tex.meta.stackexchange.com/q/7425/35864.

    – moewe
    3 hours ago
















1















I am new to LaTex and using TexShop as my Editor. I have been able to generate my list of references and cite them in text using cite{}, but the thing is that I want to use the Harvard Referencing Style, so that in text, my citation comes with parentheses, authors' names and the year. There should also be a provision to specify a page number if I would like to in the in-text citation.



I am using BibLatex as outlined below:-



usepackage[backend=bibtex]{biblatex}
addbibresource{references.bib}


This is followed by



printbibliography


at the end of the document (before end{document})



A sample reference in my references.bib file looks like this:



@article{einstein,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{"o}rper}. ({German})
[{On} the electrodynamics of moving bodies]",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
DOI = "http://dx.doi.org/10.1002/andp.19053221004"


I have tried using cite{}, parencite{} etc. and also with for specifying page number but nothing seems to work. I looked into various similar questions on Stackechange for Tex but am highly confused. My ultimate goal is to be able to generate in-text citations with author names, year, and page number (which can be specified if needed in-text). The final bibliography at the end of my document should look as well in the Harvard Referencing Style. Also, I have the query that if there are multiple authors in a paper, such as Firstname1 Lastname1, Firstname2 Lastname2 etc., so in the .bib file, should I mention authors name as complete names or as Firstname1_Initial.Lastname1, Firstname2_Initial.Lastname2 etc.



Any help in this regard would be highly appreciated. Many thanks and Cheers!










share|improve this question


















  • 1





    usepackage[style=authoryear, backend=bibtex]{biblatex} would give you "Harvard style" (i.e. author year citations)

    – moewe
    3 hours ago











  • Thanks. But could you kindly clarify on how to specify page numbers in the in-text citations? I am not understanding how to use parencite or cite for this purpose. Also, I have the query that if there are multiple authors in a paper, such as Firstname1 Lastname1, Firstname2 Lastname2 etc., so in the .bib file, should I mention authors name as complete names or as Firstname1_Initial.Lastname1, Firstname2_Initial.Lastname2 etc as my final bibliography looks quite odd and weird maybe because I am using wrong style of authors naming.

    – Joyjit Chatterjee
    3 hours ago











  • parencite[380]{sigfridsson}. Names should always be given as in tex.stackexchange.com/q/557/35864 and tex.stackexchange.com/q/36396/35864

    – moewe
    3 hours ago











  • When I use author = "Chatterjee, J. and Saxena, A.", where Chatterjee and Saxena are Last names and J. and A. are first name initials, I am getting bibliography in end of document which shows Chatterjee, J. and A. Saxena. This is quite odd as in one case first name shows before, while in other, first name comes afterwards. I followed tex.stackexchange.com/q/557/35864. Thanks

    – Joyjit Chatterjee
    3 hours ago








  • 1





    I have tried to address your questions in my answer below. Please comment if anything is unclear. For future questions you may want to try to ask about only one issue per question. That makes things easier to handle and more relevant for other people as well. See tex.meta.stackexchange.com/q/7425/35864.

    – moewe
    3 hours ago














1












1








1








I am new to LaTex and using TexShop as my Editor. I have been able to generate my list of references and cite them in text using cite{}, but the thing is that I want to use the Harvard Referencing Style, so that in text, my citation comes with parentheses, authors' names and the year. There should also be a provision to specify a page number if I would like to in the in-text citation.



I am using BibLatex as outlined below:-



usepackage[backend=bibtex]{biblatex}
addbibresource{references.bib}


This is followed by



printbibliography


at the end of the document (before end{document})



A sample reference in my references.bib file looks like this:



@article{einstein,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{"o}rper}. ({German})
[{On} the electrodynamics of moving bodies]",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
DOI = "http://dx.doi.org/10.1002/andp.19053221004"


I have tried using cite{}, parencite{} etc. and also with for specifying page number but nothing seems to work. I looked into various similar questions on Stackechange for Tex but am highly confused. My ultimate goal is to be able to generate in-text citations with author names, year, and page number (which can be specified if needed in-text). The final bibliography at the end of my document should look as well in the Harvard Referencing Style. Also, I have the query that if there are multiple authors in a paper, such as Firstname1 Lastname1, Firstname2 Lastname2 etc., so in the .bib file, should I mention authors name as complete names or as Firstname1_Initial.Lastname1, Firstname2_Initial.Lastname2 etc.



Any help in this regard would be highly appreciated. Many thanks and Cheers!










share|improve this question














I am new to LaTex and using TexShop as my Editor. I have been able to generate my list of references and cite them in text using cite{}, but the thing is that I want to use the Harvard Referencing Style, so that in text, my citation comes with parentheses, authors' names and the year. There should also be a provision to specify a page number if I would like to in the in-text citation.



I am using BibLatex as outlined below:-



usepackage[backend=bibtex]{biblatex}
addbibresource{references.bib}


This is followed by



printbibliography


at the end of the document (before end{document})



A sample reference in my references.bib file looks like this:



@article{einstein,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{"o}rper}. ({German})
[{On} the electrodynamics of moving bodies]",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
DOI = "http://dx.doi.org/10.1002/andp.19053221004"


I have tried using cite{}, parencite{} etc. and also with for specifying page number but nothing seems to work. I looked into various similar questions on Stackechange for Tex but am highly confused. My ultimate goal is to be able to generate in-text citations with author names, year, and page number (which can be specified if needed in-text). The final bibliography at the end of my document should look as well in the Harvard Referencing Style. Also, I have the query that if there are multiple authors in a paper, such as Firstname1 Lastname1, Firstname2 Lastname2 etc., so in the .bib file, should I mention authors name as complete names or as Firstname1_Initial.Lastname1, Firstname2_Initial.Lastname2 etc.



Any help in this regard would be highly appreciated. Many thanks and Cheers!







biblatex bibtex texshop






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 3 hours ago









Joyjit ChatterjeeJoyjit Chatterjee

153




153








  • 1





    usepackage[style=authoryear, backend=bibtex]{biblatex} would give you "Harvard style" (i.e. author year citations)

    – moewe
    3 hours ago











  • Thanks. But could you kindly clarify on how to specify page numbers in the in-text citations? I am not understanding how to use parencite or cite for this purpose. Also, I have the query that if there are multiple authors in a paper, such as Firstname1 Lastname1, Firstname2 Lastname2 etc., so in the .bib file, should I mention authors name as complete names or as Firstname1_Initial.Lastname1, Firstname2_Initial.Lastname2 etc as my final bibliography looks quite odd and weird maybe because I am using wrong style of authors naming.

    – Joyjit Chatterjee
    3 hours ago











  • parencite[380]{sigfridsson}. Names should always be given as in tex.stackexchange.com/q/557/35864 and tex.stackexchange.com/q/36396/35864

    – moewe
    3 hours ago











  • When I use author = "Chatterjee, J. and Saxena, A.", where Chatterjee and Saxena are Last names and J. and A. are first name initials, I am getting bibliography in end of document which shows Chatterjee, J. and A. Saxena. This is quite odd as in one case first name shows before, while in other, first name comes afterwards. I followed tex.stackexchange.com/q/557/35864. Thanks

    – Joyjit Chatterjee
    3 hours ago








  • 1





    I have tried to address your questions in my answer below. Please comment if anything is unclear. For future questions you may want to try to ask about only one issue per question. That makes things easier to handle and more relevant for other people as well. See tex.meta.stackexchange.com/q/7425/35864.

    – moewe
    3 hours ago














  • 1





    usepackage[style=authoryear, backend=bibtex]{biblatex} would give you "Harvard style" (i.e. author year citations)

    – moewe
    3 hours ago











  • Thanks. But could you kindly clarify on how to specify page numbers in the in-text citations? I am not understanding how to use parencite or cite for this purpose. Also, I have the query that if there are multiple authors in a paper, such as Firstname1 Lastname1, Firstname2 Lastname2 etc., so in the .bib file, should I mention authors name as complete names or as Firstname1_Initial.Lastname1, Firstname2_Initial.Lastname2 etc as my final bibliography looks quite odd and weird maybe because I am using wrong style of authors naming.

    – Joyjit Chatterjee
    3 hours ago











  • parencite[380]{sigfridsson}. Names should always be given as in tex.stackexchange.com/q/557/35864 and tex.stackexchange.com/q/36396/35864

    – moewe
    3 hours ago











  • When I use author = "Chatterjee, J. and Saxena, A.", where Chatterjee and Saxena are Last names and J. and A. are first name initials, I am getting bibliography in end of document which shows Chatterjee, J. and A. Saxena. This is quite odd as in one case first name shows before, while in other, first name comes afterwards. I followed tex.stackexchange.com/q/557/35864. Thanks

    – Joyjit Chatterjee
    3 hours ago








  • 1





    I have tried to address your questions in my answer below. Please comment if anything is unclear. For future questions you may want to try to ask about only one issue per question. That makes things easier to handle and more relevant for other people as well. See tex.meta.stackexchange.com/q/7425/35864.

    – moewe
    3 hours ago








1




1





usepackage[style=authoryear, backend=bibtex]{biblatex} would give you "Harvard style" (i.e. author year citations)

– moewe
3 hours ago





usepackage[style=authoryear, backend=bibtex]{biblatex} would give you "Harvard style" (i.e. author year citations)

– moewe
3 hours ago













Thanks. But could you kindly clarify on how to specify page numbers in the in-text citations? I am not understanding how to use parencite or cite for this purpose. Also, I have the query that if there are multiple authors in a paper, such as Firstname1 Lastname1, Firstname2 Lastname2 etc., so in the .bib file, should I mention authors name as complete names or as Firstname1_Initial.Lastname1, Firstname2_Initial.Lastname2 etc as my final bibliography looks quite odd and weird maybe because I am using wrong style of authors naming.

– Joyjit Chatterjee
3 hours ago





Thanks. But could you kindly clarify on how to specify page numbers in the in-text citations? I am not understanding how to use parencite or cite for this purpose. Also, I have the query that if there are multiple authors in a paper, such as Firstname1 Lastname1, Firstname2 Lastname2 etc., so in the .bib file, should I mention authors name as complete names or as Firstname1_Initial.Lastname1, Firstname2_Initial.Lastname2 etc as my final bibliography looks quite odd and weird maybe because I am using wrong style of authors naming.

– Joyjit Chatterjee
3 hours ago













parencite[380]{sigfridsson}. Names should always be given as in tex.stackexchange.com/q/557/35864 and tex.stackexchange.com/q/36396/35864

– moewe
3 hours ago





parencite[380]{sigfridsson}. Names should always be given as in tex.stackexchange.com/q/557/35864 and tex.stackexchange.com/q/36396/35864

– moewe
3 hours ago













When I use author = "Chatterjee, J. and Saxena, A.", where Chatterjee and Saxena are Last names and J. and A. are first name initials, I am getting bibliography in end of document which shows Chatterjee, J. and A. Saxena. This is quite odd as in one case first name shows before, while in other, first name comes afterwards. I followed tex.stackexchange.com/q/557/35864. Thanks

– Joyjit Chatterjee
3 hours ago







When I use author = "Chatterjee, J. and Saxena, A.", where Chatterjee and Saxena are Last names and J. and A. are first name initials, I am getting bibliography in end of document which shows Chatterjee, J. and A. Saxena. This is quite odd as in one case first name shows before, while in other, first name comes afterwards. I followed tex.stackexchange.com/q/557/35864. Thanks

– Joyjit Chatterjee
3 hours ago






1




1





I have tried to address your questions in my answer below. Please comment if anything is unclear. For future questions you may want to try to ask about only one issue per question. That makes things easier to handle and more relevant for other people as well. See tex.meta.stackexchange.com/q/7425/35864.

– moewe
3 hours ago





I have tried to address your questions in my answer below. Please comment if anything is unclear. For future questions you may want to try to ask about only one issue per question. That makes things easier to handle and more relevant for other people as well. See tex.meta.stackexchange.com/q/7425/35864.

– moewe
3 hours ago










1 Answer
1






active

oldest

votes


















2














There are several questions here. Let's try and walk through them one by one.



Harvard style



"Harvard style" is not a fixed term like "APA style" or "Chicago style", it usually just means author-year citations. You can get author-year citations with style=authoryear



usepackage[style=authoryear, backend=biber]{biblatex}


I used Biber here instead of the 'legacy backend' BibTeX. You then have to run Biber instead of BibTeX, see Biblatex with Biber: Configuring my editor to avoid undefined citations.



Name input



Names should be given as



author = {Anne Elk and Emma Sigfridsson and James Hacker},


or



author = {Elk, Anne and Sigfridsson, Emma and Hacker, James},


see How should I type author names in a bib file? and How to properly write multiple authors in bibtex file?.



Whether or not you should give full names or initials is a slightly more complex matter. Sometimes the original source only includes initials even though you know the full name. biblatex can print all names with only initial (if you give the option giveninitials=true), but of course it can't reconstruct the full name from that.



Name output



The name format in the output is the on first glance unusual family-given/given-family order




Elk, Anne, Emma Sigfridsson and James Hacker




You can switch to all family-given with



DeclareNameAlias{sortname}{family-given}


See also Guidelines for customizing biblatex styles



Page numbers



Page numbers in citations are given in the optional postnote argument



autocite[380]{sigfridsson}
autocite[cf.][380]{sigfridsson}


Note how you don't need to include 'p.' or 'pp.' with the page number, biblatex adds the appropriate string atomatically.



In total you may want to try



documentclass[british]{article}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage{babel}
usepackage{csquotes}

usepackage[style=authoryear, backend=biber]{biblatex}

DeclareNameAlias{sortname}{family-given}

addbibresource{biblatex-examples.bib}

begin{document}
autocite[380]{sigfridsson} and
autocite[cf.][380]{sigfridsson}

printbibliography
end{document}


(Sigfridsson and Ryde 1998, p. 380) and (cf. Sigfridsson and Ryde 1998, p. 380)






share|improve this answer























    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%2f470136%2fhow-to-obtain-harvard-referencing-style-with-page-numbers%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









    2














    There are several questions here. Let's try and walk through them one by one.



    Harvard style



    "Harvard style" is not a fixed term like "APA style" or "Chicago style", it usually just means author-year citations. You can get author-year citations with style=authoryear



    usepackage[style=authoryear, backend=biber]{biblatex}


    I used Biber here instead of the 'legacy backend' BibTeX. You then have to run Biber instead of BibTeX, see Biblatex with Biber: Configuring my editor to avoid undefined citations.



    Name input



    Names should be given as



    author = {Anne Elk and Emma Sigfridsson and James Hacker},


    or



    author = {Elk, Anne and Sigfridsson, Emma and Hacker, James},


    see How should I type author names in a bib file? and How to properly write multiple authors in bibtex file?.



    Whether or not you should give full names or initials is a slightly more complex matter. Sometimes the original source only includes initials even though you know the full name. biblatex can print all names with only initial (if you give the option giveninitials=true), but of course it can't reconstruct the full name from that.



    Name output



    The name format in the output is the on first glance unusual family-given/given-family order




    Elk, Anne, Emma Sigfridsson and James Hacker




    You can switch to all family-given with



    DeclareNameAlias{sortname}{family-given}


    See also Guidelines for customizing biblatex styles



    Page numbers



    Page numbers in citations are given in the optional postnote argument



    autocite[380]{sigfridsson}
    autocite[cf.][380]{sigfridsson}


    Note how you don't need to include 'p.' or 'pp.' with the page number, biblatex adds the appropriate string atomatically.



    In total you may want to try



    documentclass[british]{article}
    usepackage[T1]{fontenc}
    usepackage[utf8]{inputenc}
    usepackage{babel}
    usepackage{csquotes}

    usepackage[style=authoryear, backend=biber]{biblatex}

    DeclareNameAlias{sortname}{family-given}

    addbibresource{biblatex-examples.bib}

    begin{document}
    autocite[380]{sigfridsson} and
    autocite[cf.][380]{sigfridsson}

    printbibliography
    end{document}


    (Sigfridsson and Ryde 1998, p. 380) and (cf. Sigfridsson and Ryde 1998, p. 380)






    share|improve this answer




























      2














      There are several questions here. Let's try and walk through them one by one.



      Harvard style



      "Harvard style" is not a fixed term like "APA style" or "Chicago style", it usually just means author-year citations. You can get author-year citations with style=authoryear



      usepackage[style=authoryear, backend=biber]{biblatex}


      I used Biber here instead of the 'legacy backend' BibTeX. You then have to run Biber instead of BibTeX, see Biblatex with Biber: Configuring my editor to avoid undefined citations.



      Name input



      Names should be given as



      author = {Anne Elk and Emma Sigfridsson and James Hacker},


      or



      author = {Elk, Anne and Sigfridsson, Emma and Hacker, James},


      see How should I type author names in a bib file? and How to properly write multiple authors in bibtex file?.



      Whether or not you should give full names or initials is a slightly more complex matter. Sometimes the original source only includes initials even though you know the full name. biblatex can print all names with only initial (if you give the option giveninitials=true), but of course it can't reconstruct the full name from that.



      Name output



      The name format in the output is the on first glance unusual family-given/given-family order




      Elk, Anne, Emma Sigfridsson and James Hacker




      You can switch to all family-given with



      DeclareNameAlias{sortname}{family-given}


      See also Guidelines for customizing biblatex styles



      Page numbers



      Page numbers in citations are given in the optional postnote argument



      autocite[380]{sigfridsson}
      autocite[cf.][380]{sigfridsson}


      Note how you don't need to include 'p.' or 'pp.' with the page number, biblatex adds the appropriate string atomatically.



      In total you may want to try



      documentclass[british]{article}
      usepackage[T1]{fontenc}
      usepackage[utf8]{inputenc}
      usepackage{babel}
      usepackage{csquotes}

      usepackage[style=authoryear, backend=biber]{biblatex}

      DeclareNameAlias{sortname}{family-given}

      addbibresource{biblatex-examples.bib}

      begin{document}
      autocite[380]{sigfridsson} and
      autocite[cf.][380]{sigfridsson}

      printbibliography
      end{document}


      (Sigfridsson and Ryde 1998, p. 380) and (cf. Sigfridsson and Ryde 1998, p. 380)






      share|improve this answer


























        2












        2








        2







        There are several questions here. Let's try and walk through them one by one.



        Harvard style



        "Harvard style" is not a fixed term like "APA style" or "Chicago style", it usually just means author-year citations. You can get author-year citations with style=authoryear



        usepackage[style=authoryear, backend=biber]{biblatex}


        I used Biber here instead of the 'legacy backend' BibTeX. You then have to run Biber instead of BibTeX, see Biblatex with Biber: Configuring my editor to avoid undefined citations.



        Name input



        Names should be given as



        author = {Anne Elk and Emma Sigfridsson and James Hacker},


        or



        author = {Elk, Anne and Sigfridsson, Emma and Hacker, James},


        see How should I type author names in a bib file? and How to properly write multiple authors in bibtex file?.



        Whether or not you should give full names or initials is a slightly more complex matter. Sometimes the original source only includes initials even though you know the full name. biblatex can print all names with only initial (if you give the option giveninitials=true), but of course it can't reconstruct the full name from that.



        Name output



        The name format in the output is the on first glance unusual family-given/given-family order




        Elk, Anne, Emma Sigfridsson and James Hacker




        You can switch to all family-given with



        DeclareNameAlias{sortname}{family-given}


        See also Guidelines for customizing biblatex styles



        Page numbers



        Page numbers in citations are given in the optional postnote argument



        autocite[380]{sigfridsson}
        autocite[cf.][380]{sigfridsson}


        Note how you don't need to include 'p.' or 'pp.' with the page number, biblatex adds the appropriate string atomatically.



        In total you may want to try



        documentclass[british]{article}
        usepackage[T1]{fontenc}
        usepackage[utf8]{inputenc}
        usepackage{babel}
        usepackage{csquotes}

        usepackage[style=authoryear, backend=biber]{biblatex}

        DeclareNameAlias{sortname}{family-given}

        addbibresource{biblatex-examples.bib}

        begin{document}
        autocite[380]{sigfridsson} and
        autocite[cf.][380]{sigfridsson}

        printbibliography
        end{document}


        (Sigfridsson and Ryde 1998, p. 380) and (cf. Sigfridsson and Ryde 1998, p. 380)






        share|improve this answer













        There are several questions here. Let's try and walk through them one by one.



        Harvard style



        "Harvard style" is not a fixed term like "APA style" or "Chicago style", it usually just means author-year citations. You can get author-year citations with style=authoryear



        usepackage[style=authoryear, backend=biber]{biblatex}


        I used Biber here instead of the 'legacy backend' BibTeX. You then have to run Biber instead of BibTeX, see Biblatex with Biber: Configuring my editor to avoid undefined citations.



        Name input



        Names should be given as



        author = {Anne Elk and Emma Sigfridsson and James Hacker},


        or



        author = {Elk, Anne and Sigfridsson, Emma and Hacker, James},


        see How should I type author names in a bib file? and How to properly write multiple authors in bibtex file?.



        Whether or not you should give full names or initials is a slightly more complex matter. Sometimes the original source only includes initials even though you know the full name. biblatex can print all names with only initial (if you give the option giveninitials=true), but of course it can't reconstruct the full name from that.



        Name output



        The name format in the output is the on first glance unusual family-given/given-family order




        Elk, Anne, Emma Sigfridsson and James Hacker




        You can switch to all family-given with



        DeclareNameAlias{sortname}{family-given}


        See also Guidelines for customizing biblatex styles



        Page numbers



        Page numbers in citations are given in the optional postnote argument



        autocite[380]{sigfridsson}
        autocite[cf.][380]{sigfridsson}


        Note how you don't need to include 'p.' or 'pp.' with the page number, biblatex adds the appropriate string atomatically.



        In total you may want to try



        documentclass[british]{article}
        usepackage[T1]{fontenc}
        usepackage[utf8]{inputenc}
        usepackage{babel}
        usepackage{csquotes}

        usepackage[style=authoryear, backend=biber]{biblatex}

        DeclareNameAlias{sortname}{family-given}

        addbibresource{biblatex-examples.bib}

        begin{document}
        autocite[380]{sigfridsson} and
        autocite[cf.][380]{sigfridsson}

        printbibliography
        end{document}


        (Sigfridsson and Ryde 1998, p. 380) and (cf. Sigfridsson and Ryde 1998, p. 380)







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 3 hours ago









        moewemoewe

        88k9110335




        88k9110335






























            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%2f470136%2fhow-to-obtain-harvard-referencing-style-with-page-numbers%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

            Lallio

            Unable to find Lightning Node

            Futebolista