how to change bibbliography title from “References” to “DAFTAR PUSTAKA”?












2















I want to change "References" with "DAFTAR PUSTAKA" on bibliography. I used this code to change it but it doesn't work on my file. My fried tell me that it is work on her thesis.



bibliographystyle{unsrt}

renewcommand{bibname}{DAFTAR PUSTAKA}

bibliography{Referensi}


enter image description here










share|improve this question

























  • Depending on the class and other packages, bibname might not be used in the bibliography environment etc. all; perhaps it is hard coded as References there, so any change of bibname is not getting what you want. As long as you do not post the minimal version of your document, that has this issue, there is not much help, I fear

    – Christian Hupfer
    Jan 17 at 18:31











  • try AtBeginDocument{renewcommand{bibname}{DAFTAR PUSTAKA}}

    – Herbert
    Jan 17 at 18:33
















2















I want to change "References" with "DAFTAR PUSTAKA" on bibliography. I used this code to change it but it doesn't work on my file. My fried tell me that it is work on her thesis.



bibliographystyle{unsrt}

renewcommand{bibname}{DAFTAR PUSTAKA}

bibliography{Referensi}


enter image description here










share|improve this question

























  • Depending on the class and other packages, bibname might not be used in the bibliography environment etc. all; perhaps it is hard coded as References there, so any change of bibname is not getting what you want. As long as you do not post the minimal version of your document, that has this issue, there is not much help, I fear

    – Christian Hupfer
    Jan 17 at 18:31











  • try AtBeginDocument{renewcommand{bibname}{DAFTAR PUSTAKA}}

    – Herbert
    Jan 17 at 18:33














2












2








2








I want to change "References" with "DAFTAR PUSTAKA" on bibliography. I used this code to change it but it doesn't work on my file. My fried tell me that it is work on her thesis.



bibliographystyle{unsrt}

renewcommand{bibname}{DAFTAR PUSTAKA}

bibliography{Referensi}


enter image description here










share|improve this question
















I want to change "References" with "DAFTAR PUSTAKA" on bibliography. I used this code to change it but it doesn't work on my file. My fried tell me that it is work on her thesis.



bibliographystyle{unsrt}

renewcommand{bibname}{DAFTAR PUSTAKA}

bibliography{Referensi}


enter image description here







bibliographies bibtex






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 17 at 18:27









Stefan Pinnow

19.7k83276




19.7k83276










asked Jan 17 at 18:20









user179714user179714

111




111













  • Depending on the class and other packages, bibname might not be used in the bibliography environment etc. all; perhaps it is hard coded as References there, so any change of bibname is not getting what you want. As long as you do not post the minimal version of your document, that has this issue, there is not much help, I fear

    – Christian Hupfer
    Jan 17 at 18:31











  • try AtBeginDocument{renewcommand{bibname}{DAFTAR PUSTAKA}}

    – Herbert
    Jan 17 at 18:33



















  • Depending on the class and other packages, bibname might not be used in the bibliography environment etc. all; perhaps it is hard coded as References there, so any change of bibname is not getting what you want. As long as you do not post the minimal version of your document, that has this issue, there is not much help, I fear

    – Christian Hupfer
    Jan 17 at 18:31











  • try AtBeginDocument{renewcommand{bibname}{DAFTAR PUSTAKA}}

    – Herbert
    Jan 17 at 18:33

















Depending on the class and other packages, bibname might not be used in the bibliography environment etc. all; perhaps it is hard coded as References there, so any change of bibname is not getting what you want. As long as you do not post the minimal version of your document, that has this issue, there is not much help, I fear

– Christian Hupfer
Jan 17 at 18:31





Depending on the class and other packages, bibname might not be used in the bibliography environment etc. all; perhaps it is hard coded as References there, so any change of bibname is not getting what you want. As long as you do not post the minimal version of your document, that has this issue, there is not much help, I fear

– Christian Hupfer
Jan 17 at 18:31













try AtBeginDocument{renewcommand{bibname}{DAFTAR PUSTAKA}}

– Herbert
Jan 17 at 18:33





try AtBeginDocument{renewcommand{bibname}{DAFTAR PUSTAKA}}

– Herbert
Jan 17 at 18:33










1 Answer
1






active

oldest

votes


















1














You should add babel support for Indonesian.



begin{filecontents*}{jobname.bib}
@article{uthor,
author={A. Uthor},
title={Title},
journal={Journal},
year=2018,
}
end{filecontents*}

documentclass[a4paper]{article}
usepackage[T1]{fontenc}
usepackage[indonesian]{babel}

begin{document}

section{Indonesia}

Republik Indonesia (RI) atau Negara Kesatuan Republik Indonesia (NKRI),
atau lebih umum disebut Indonesia, adalah negara di Asia Tenggara yang
dilintasi garis khatulistiwa dan berada di antara daratan benua Asia dan
Australia, serta antara Samudra Pasifik dan Samudra Hindia~cite{uthor}.

bibliographystyle{unsrt}

bibliography{jobname}

end{document}


enter image description here



If you want to change the title for the references to “DAFTAR PUSTAKA”, then add the relevant information: the correct command to redefine is refname when the document class is article; it is bibname for report or book. Other classes may differ.



begin{filecontents*}{jobname.bib}
@article{uthor,
author={A. Uthor},
title={Title},
journal={Journal},
year=2018,
}
end{filecontents*}

documentclass[a4paper]{article}
usepackage[T1]{fontenc}
usepackage[indonesian]{babel}

addtocaptionsindonesian{renewcommand{refname}{DAFTAR PUSTAKA}}

begin{document}

section{Indonesia}

Republik Indonesia (RI) atau Negara Kesatuan Republik Indonesia (NKRI),
atau lebih umum disebut Indonesia, adalah negara di Asia Tenggara yang
dilintasi garis khatulistiwa dan berada di antara daratan benua Asia dan
Australia, serta antara Samudra Pasifik dan Samudra Hindia~cite{uthor}.

bibliographystyle{unsrt}

bibliography{jobname}

end{document}


enter image description here



Notes: the text is from Indonesian Wikipedia; the filecontents* environment is used only for making the example self-contained.






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%2f470582%2fhow-to-change-bibbliography-title-from-references-to-daftar-pustaka%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









    1














    You should add babel support for Indonesian.



    begin{filecontents*}{jobname.bib}
    @article{uthor,
    author={A. Uthor},
    title={Title},
    journal={Journal},
    year=2018,
    }
    end{filecontents*}

    documentclass[a4paper]{article}
    usepackage[T1]{fontenc}
    usepackage[indonesian]{babel}

    begin{document}

    section{Indonesia}

    Republik Indonesia (RI) atau Negara Kesatuan Republik Indonesia (NKRI),
    atau lebih umum disebut Indonesia, adalah negara di Asia Tenggara yang
    dilintasi garis khatulistiwa dan berada di antara daratan benua Asia dan
    Australia, serta antara Samudra Pasifik dan Samudra Hindia~cite{uthor}.

    bibliographystyle{unsrt}

    bibliography{jobname}

    end{document}


    enter image description here



    If you want to change the title for the references to “DAFTAR PUSTAKA”, then add the relevant information: the correct command to redefine is refname when the document class is article; it is bibname for report or book. Other classes may differ.



    begin{filecontents*}{jobname.bib}
    @article{uthor,
    author={A. Uthor},
    title={Title},
    journal={Journal},
    year=2018,
    }
    end{filecontents*}

    documentclass[a4paper]{article}
    usepackage[T1]{fontenc}
    usepackage[indonesian]{babel}

    addtocaptionsindonesian{renewcommand{refname}{DAFTAR PUSTAKA}}

    begin{document}

    section{Indonesia}

    Republik Indonesia (RI) atau Negara Kesatuan Republik Indonesia (NKRI),
    atau lebih umum disebut Indonesia, adalah negara di Asia Tenggara yang
    dilintasi garis khatulistiwa dan berada di antara daratan benua Asia dan
    Australia, serta antara Samudra Pasifik dan Samudra Hindia~cite{uthor}.

    bibliographystyle{unsrt}

    bibliography{jobname}

    end{document}


    enter image description here



    Notes: the text is from Indonesian Wikipedia; the filecontents* environment is used only for making the example self-contained.






    share|improve this answer




























      1














      You should add babel support for Indonesian.



      begin{filecontents*}{jobname.bib}
      @article{uthor,
      author={A. Uthor},
      title={Title},
      journal={Journal},
      year=2018,
      }
      end{filecontents*}

      documentclass[a4paper]{article}
      usepackage[T1]{fontenc}
      usepackage[indonesian]{babel}

      begin{document}

      section{Indonesia}

      Republik Indonesia (RI) atau Negara Kesatuan Republik Indonesia (NKRI),
      atau lebih umum disebut Indonesia, adalah negara di Asia Tenggara yang
      dilintasi garis khatulistiwa dan berada di antara daratan benua Asia dan
      Australia, serta antara Samudra Pasifik dan Samudra Hindia~cite{uthor}.

      bibliographystyle{unsrt}

      bibliography{jobname}

      end{document}


      enter image description here



      If you want to change the title for the references to “DAFTAR PUSTAKA”, then add the relevant information: the correct command to redefine is refname when the document class is article; it is bibname for report or book. Other classes may differ.



      begin{filecontents*}{jobname.bib}
      @article{uthor,
      author={A. Uthor},
      title={Title},
      journal={Journal},
      year=2018,
      }
      end{filecontents*}

      documentclass[a4paper]{article}
      usepackage[T1]{fontenc}
      usepackage[indonesian]{babel}

      addtocaptionsindonesian{renewcommand{refname}{DAFTAR PUSTAKA}}

      begin{document}

      section{Indonesia}

      Republik Indonesia (RI) atau Negara Kesatuan Republik Indonesia (NKRI),
      atau lebih umum disebut Indonesia, adalah negara di Asia Tenggara yang
      dilintasi garis khatulistiwa dan berada di antara daratan benua Asia dan
      Australia, serta antara Samudra Pasifik dan Samudra Hindia~cite{uthor}.

      bibliographystyle{unsrt}

      bibliography{jobname}

      end{document}


      enter image description here



      Notes: the text is from Indonesian Wikipedia; the filecontents* environment is used only for making the example self-contained.






      share|improve this answer


























        1












        1








        1







        You should add babel support for Indonesian.



        begin{filecontents*}{jobname.bib}
        @article{uthor,
        author={A. Uthor},
        title={Title},
        journal={Journal},
        year=2018,
        }
        end{filecontents*}

        documentclass[a4paper]{article}
        usepackage[T1]{fontenc}
        usepackage[indonesian]{babel}

        begin{document}

        section{Indonesia}

        Republik Indonesia (RI) atau Negara Kesatuan Republik Indonesia (NKRI),
        atau lebih umum disebut Indonesia, adalah negara di Asia Tenggara yang
        dilintasi garis khatulistiwa dan berada di antara daratan benua Asia dan
        Australia, serta antara Samudra Pasifik dan Samudra Hindia~cite{uthor}.

        bibliographystyle{unsrt}

        bibliography{jobname}

        end{document}


        enter image description here



        If you want to change the title for the references to “DAFTAR PUSTAKA”, then add the relevant information: the correct command to redefine is refname when the document class is article; it is bibname for report or book. Other classes may differ.



        begin{filecontents*}{jobname.bib}
        @article{uthor,
        author={A. Uthor},
        title={Title},
        journal={Journal},
        year=2018,
        }
        end{filecontents*}

        documentclass[a4paper]{article}
        usepackage[T1]{fontenc}
        usepackage[indonesian]{babel}

        addtocaptionsindonesian{renewcommand{refname}{DAFTAR PUSTAKA}}

        begin{document}

        section{Indonesia}

        Republik Indonesia (RI) atau Negara Kesatuan Republik Indonesia (NKRI),
        atau lebih umum disebut Indonesia, adalah negara di Asia Tenggara yang
        dilintasi garis khatulistiwa dan berada di antara daratan benua Asia dan
        Australia, serta antara Samudra Pasifik dan Samudra Hindia~cite{uthor}.

        bibliographystyle{unsrt}

        bibliography{jobname}

        end{document}


        enter image description here



        Notes: the text is from Indonesian Wikipedia; the filecontents* environment is used only for making the example self-contained.






        share|improve this answer













        You should add babel support for Indonesian.



        begin{filecontents*}{jobname.bib}
        @article{uthor,
        author={A. Uthor},
        title={Title},
        journal={Journal},
        year=2018,
        }
        end{filecontents*}

        documentclass[a4paper]{article}
        usepackage[T1]{fontenc}
        usepackage[indonesian]{babel}

        begin{document}

        section{Indonesia}

        Republik Indonesia (RI) atau Negara Kesatuan Republik Indonesia (NKRI),
        atau lebih umum disebut Indonesia, adalah negara di Asia Tenggara yang
        dilintasi garis khatulistiwa dan berada di antara daratan benua Asia dan
        Australia, serta antara Samudra Pasifik dan Samudra Hindia~cite{uthor}.

        bibliographystyle{unsrt}

        bibliography{jobname}

        end{document}


        enter image description here



        If you want to change the title for the references to “DAFTAR PUSTAKA”, then add the relevant information: the correct command to redefine is refname when the document class is article; it is bibname for report or book. Other classes may differ.



        begin{filecontents*}{jobname.bib}
        @article{uthor,
        author={A. Uthor},
        title={Title},
        journal={Journal},
        year=2018,
        }
        end{filecontents*}

        documentclass[a4paper]{article}
        usepackage[T1]{fontenc}
        usepackage[indonesian]{babel}

        addtocaptionsindonesian{renewcommand{refname}{DAFTAR PUSTAKA}}

        begin{document}

        section{Indonesia}

        Republik Indonesia (RI) atau Negara Kesatuan Republik Indonesia (NKRI),
        atau lebih umum disebut Indonesia, adalah negara di Asia Tenggara yang
        dilintasi garis khatulistiwa dan berada di antara daratan benua Asia dan
        Australia, serta antara Samudra Pasifik dan Samudra Hindia~cite{uthor}.

        bibliographystyle{unsrt}

        bibliography{jobname}

        end{document}


        enter image description here



        Notes: the text is from Indonesian Wikipedia; the filecontents* environment is used only for making the example self-contained.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 17 at 18:47









        egregegreg

        715k8618983185




        715k8618983185






























            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%2f470582%2fhow-to-change-bibbliography-title-from-references-to-daftar-pustaka%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

            Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

            ComboBox Display Member on multiple fields

            Is it possible to collect Nectar points via Trainline?