including citavi “parallel title” feature with biblatex











up vote
0
down vote

favorite












This is a very simple question, probably not needing even a MWE - how do I include the "parallel title" field in Citavi in any of the standard style files by accessing the .bib database with biblatex? The output should display both the main title and parallel title a work is known by.










share|improve this question




















  • 1




    I guess most people would use the titleaddon field.
    – moewe
    Nov 17 at 10:39















up vote
0
down vote

favorite












This is a very simple question, probably not needing even a MWE - how do I include the "parallel title" field in Citavi in any of the standard style files by accessing the .bib database with biblatex? The output should display both the main title and parallel title a work is known by.










share|improve this question




















  • 1




    I guess most people would use the titleaddon field.
    – moewe
    Nov 17 at 10:39













up vote
0
down vote

favorite









up vote
0
down vote

favorite











This is a very simple question, probably not needing even a MWE - how do I include the "parallel title" field in Citavi in any of the standard style files by accessing the .bib database with biblatex? The output should display both the main title and parallel title a work is known by.










share|improve this question















This is a very simple question, probably not needing even a MWE - how do I include the "parallel title" field in Citavi in any of the standard style files by accessing the .bib database with biblatex? The output should display both the main title and parallel title a work is known by.







biblatex biber






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 17 at 16:19









moewe

82.8k8106317




82.8k8106317










asked Nov 16 at 19:44









Gyalten Jigdrel

939




939








  • 1




    I guess most people would use the titleaddon field.
    – moewe
    Nov 17 at 10:39














  • 1




    I guess most people would use the titleaddon field.
    – moewe
    Nov 17 at 10:39








1




1




I guess most people would use the titleaddon field.
– moewe
Nov 17 at 10:39




I guess most people would use the titleaddon field.
– moewe
Nov 17 at 10:39










1 Answer
1






active

oldest

votes

















up vote
1
down vote













If you are looking for an existing field, I guess the most common idiom would be to use titleaddon. If you like, you can modify the field format so that it comes out in square brackets, see for example (Hg.) for Authors.



documentclass{article}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@book{Doi.1978,
author = {Doi, Yutaka and Sano, Tetsuji and Tanaka, Itsuo},
year = {1978},
title = {Senkyo seido},
titleaddon = {Das Wahlsystem},
location = {T^oky^o},
publisher = {Gy^osei}
}
end{filecontents}
usepackage[ngerman]{babel}
usepackage{csquotes}
usepackage[style=authoryear]{biblatex}
addbibresource{jobname.bib}

begin{document}
cite{Doi.1978}
printbibliography
end{document}


gives



Doi, Yutaka, Tetsuji Sano und Itsuo Tanaka (1978). Senkyo seido. Das Wahlsystem. Tôkyô: Gyôsei.





But you could also define an entirely new field for those kind of titles. Add field "tome" to biblatex entries shows all kinds of strategies to get define new fields. The disadvantage here is that you will definitely have to manipulate some bibmacros, while you might be able to get away without redefining bibmacros when you use titleaddon and accept the output it gives you out of the box.



documentclass{article}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage[ngerman]{babel}
usepackage{csquotes}
usepackage{filecontents}
begin{filecontents}{paralleltitle.dbx}
DeclareDatamodelFields[type=field,datatype=literal]{paralleltitle}
DeclareDatamodelEntryfields{paralleltitle}
end{filecontents}

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

DeclareFieldFormat{paralleltitle}{mkbibbrackets{#1}}
newcommand*{paralleltitlepunct}{addspace}
renewbibmacro*{title}{%
ifboolexpr{
test {iffieldundef{title}}
and
test {iffieldundef{subtitle}}
}
{}
{printtext[title]{%
printfield[titlecase]{title}%
setunit{subtitlepunct}%
printfield[titlecase]{subtitle}}%
setunit{paralleltitlepunct}%
printfield{paralleltitle}%
newunit}%
printfield{titleaddon}}

usepackage{filecontents}
begin{filecontents}{jobname.bib}
@book{Doi.1978,
author = {Doi, Yutaka and Sano, Tetsuji and Tanaka, Itsuo},
year = {1978},
title = {Senkyo seido},
paralleltitle = {Das Wahlsystem},
location = {T^oky^o},
publisher = {Gy^osei}
}
end{filecontents}
addbibresource{jobname.bib}

begin{document}
cite{Doi.1978}
printbibliography
end{document}


gives



Doi, Yutaka, Tetsuji Sano und Itsuo Tanaka (1978). Senkyo seido [Das Wahlsystem]. Tôkyô: Gyôsei.






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',
    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%2f460370%2fincluding-citavi-parallel-title-feature-with-biblatex%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








    up vote
    1
    down vote













    If you are looking for an existing field, I guess the most common idiom would be to use titleaddon. If you like, you can modify the field format so that it comes out in square brackets, see for example (Hg.) for Authors.



    documentclass{article}
    usepackage{filecontents}
    begin{filecontents}{jobname.bib}
    @book{Doi.1978,
    author = {Doi, Yutaka and Sano, Tetsuji and Tanaka, Itsuo},
    year = {1978},
    title = {Senkyo seido},
    titleaddon = {Das Wahlsystem},
    location = {T^oky^o},
    publisher = {Gy^osei}
    }
    end{filecontents}
    usepackage[ngerman]{babel}
    usepackage{csquotes}
    usepackage[style=authoryear]{biblatex}
    addbibresource{jobname.bib}

    begin{document}
    cite{Doi.1978}
    printbibliography
    end{document}


    gives



    Doi, Yutaka, Tetsuji Sano und Itsuo Tanaka (1978). Senkyo seido. Das Wahlsystem. Tôkyô: Gyôsei.





    But you could also define an entirely new field for those kind of titles. Add field "tome" to biblatex entries shows all kinds of strategies to get define new fields. The disadvantage here is that you will definitely have to manipulate some bibmacros, while you might be able to get away without redefining bibmacros when you use titleaddon and accept the output it gives you out of the box.



    documentclass{article}
    usepackage[T1]{fontenc}
    usepackage[utf8]{inputenc}
    usepackage[ngerman]{babel}
    usepackage{csquotes}
    usepackage{filecontents}
    begin{filecontents}{paralleltitle.dbx}
    DeclareDatamodelFields[type=field,datatype=literal]{paralleltitle}
    DeclareDatamodelEntryfields{paralleltitle}
    end{filecontents}

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

    DeclareFieldFormat{paralleltitle}{mkbibbrackets{#1}}
    newcommand*{paralleltitlepunct}{addspace}
    renewbibmacro*{title}{%
    ifboolexpr{
    test {iffieldundef{title}}
    and
    test {iffieldundef{subtitle}}
    }
    {}
    {printtext[title]{%
    printfield[titlecase]{title}%
    setunit{subtitlepunct}%
    printfield[titlecase]{subtitle}}%
    setunit{paralleltitlepunct}%
    printfield{paralleltitle}%
    newunit}%
    printfield{titleaddon}}

    usepackage{filecontents}
    begin{filecontents}{jobname.bib}
    @book{Doi.1978,
    author = {Doi, Yutaka and Sano, Tetsuji and Tanaka, Itsuo},
    year = {1978},
    title = {Senkyo seido},
    paralleltitle = {Das Wahlsystem},
    location = {T^oky^o},
    publisher = {Gy^osei}
    }
    end{filecontents}
    addbibresource{jobname.bib}

    begin{document}
    cite{Doi.1978}
    printbibliography
    end{document}


    gives



    Doi, Yutaka, Tetsuji Sano und Itsuo Tanaka (1978). Senkyo seido [Das Wahlsystem]. Tôkyô: Gyôsei.






    share|improve this answer

























      up vote
      1
      down vote













      If you are looking for an existing field, I guess the most common idiom would be to use titleaddon. If you like, you can modify the field format so that it comes out in square brackets, see for example (Hg.) for Authors.



      documentclass{article}
      usepackage{filecontents}
      begin{filecontents}{jobname.bib}
      @book{Doi.1978,
      author = {Doi, Yutaka and Sano, Tetsuji and Tanaka, Itsuo},
      year = {1978},
      title = {Senkyo seido},
      titleaddon = {Das Wahlsystem},
      location = {T^oky^o},
      publisher = {Gy^osei}
      }
      end{filecontents}
      usepackage[ngerman]{babel}
      usepackage{csquotes}
      usepackage[style=authoryear]{biblatex}
      addbibresource{jobname.bib}

      begin{document}
      cite{Doi.1978}
      printbibliography
      end{document}


      gives



      Doi, Yutaka, Tetsuji Sano und Itsuo Tanaka (1978). Senkyo seido. Das Wahlsystem. Tôkyô: Gyôsei.





      But you could also define an entirely new field for those kind of titles. Add field "tome" to biblatex entries shows all kinds of strategies to get define new fields. The disadvantage here is that you will definitely have to manipulate some bibmacros, while you might be able to get away without redefining bibmacros when you use titleaddon and accept the output it gives you out of the box.



      documentclass{article}
      usepackage[T1]{fontenc}
      usepackage[utf8]{inputenc}
      usepackage[ngerman]{babel}
      usepackage{csquotes}
      usepackage{filecontents}
      begin{filecontents}{paralleltitle.dbx}
      DeclareDatamodelFields[type=field,datatype=literal]{paralleltitle}
      DeclareDatamodelEntryfields{paralleltitle}
      end{filecontents}

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

      DeclareFieldFormat{paralleltitle}{mkbibbrackets{#1}}
      newcommand*{paralleltitlepunct}{addspace}
      renewbibmacro*{title}{%
      ifboolexpr{
      test {iffieldundef{title}}
      and
      test {iffieldundef{subtitle}}
      }
      {}
      {printtext[title]{%
      printfield[titlecase]{title}%
      setunit{subtitlepunct}%
      printfield[titlecase]{subtitle}}%
      setunit{paralleltitlepunct}%
      printfield{paralleltitle}%
      newunit}%
      printfield{titleaddon}}

      usepackage{filecontents}
      begin{filecontents}{jobname.bib}
      @book{Doi.1978,
      author = {Doi, Yutaka and Sano, Tetsuji and Tanaka, Itsuo},
      year = {1978},
      title = {Senkyo seido},
      paralleltitle = {Das Wahlsystem},
      location = {T^oky^o},
      publisher = {Gy^osei}
      }
      end{filecontents}
      addbibresource{jobname.bib}

      begin{document}
      cite{Doi.1978}
      printbibliography
      end{document}


      gives



      Doi, Yutaka, Tetsuji Sano und Itsuo Tanaka (1978). Senkyo seido [Das Wahlsystem]. Tôkyô: Gyôsei.






      share|improve this answer























        up vote
        1
        down vote










        up vote
        1
        down vote









        If you are looking for an existing field, I guess the most common idiom would be to use titleaddon. If you like, you can modify the field format so that it comes out in square brackets, see for example (Hg.) for Authors.



        documentclass{article}
        usepackage{filecontents}
        begin{filecontents}{jobname.bib}
        @book{Doi.1978,
        author = {Doi, Yutaka and Sano, Tetsuji and Tanaka, Itsuo},
        year = {1978},
        title = {Senkyo seido},
        titleaddon = {Das Wahlsystem},
        location = {T^oky^o},
        publisher = {Gy^osei}
        }
        end{filecontents}
        usepackage[ngerman]{babel}
        usepackage{csquotes}
        usepackage[style=authoryear]{biblatex}
        addbibresource{jobname.bib}

        begin{document}
        cite{Doi.1978}
        printbibliography
        end{document}


        gives



        Doi, Yutaka, Tetsuji Sano und Itsuo Tanaka (1978). Senkyo seido. Das Wahlsystem. Tôkyô: Gyôsei.





        But you could also define an entirely new field for those kind of titles. Add field "tome" to biblatex entries shows all kinds of strategies to get define new fields. The disadvantage here is that you will definitely have to manipulate some bibmacros, while you might be able to get away without redefining bibmacros when you use titleaddon and accept the output it gives you out of the box.



        documentclass{article}
        usepackage[T1]{fontenc}
        usepackage[utf8]{inputenc}
        usepackage[ngerman]{babel}
        usepackage{csquotes}
        usepackage{filecontents}
        begin{filecontents}{paralleltitle.dbx}
        DeclareDatamodelFields[type=field,datatype=literal]{paralleltitle}
        DeclareDatamodelEntryfields{paralleltitle}
        end{filecontents}

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

        DeclareFieldFormat{paralleltitle}{mkbibbrackets{#1}}
        newcommand*{paralleltitlepunct}{addspace}
        renewbibmacro*{title}{%
        ifboolexpr{
        test {iffieldundef{title}}
        and
        test {iffieldundef{subtitle}}
        }
        {}
        {printtext[title]{%
        printfield[titlecase]{title}%
        setunit{subtitlepunct}%
        printfield[titlecase]{subtitle}}%
        setunit{paralleltitlepunct}%
        printfield{paralleltitle}%
        newunit}%
        printfield{titleaddon}}

        usepackage{filecontents}
        begin{filecontents}{jobname.bib}
        @book{Doi.1978,
        author = {Doi, Yutaka and Sano, Tetsuji and Tanaka, Itsuo},
        year = {1978},
        title = {Senkyo seido},
        paralleltitle = {Das Wahlsystem},
        location = {T^oky^o},
        publisher = {Gy^osei}
        }
        end{filecontents}
        addbibresource{jobname.bib}

        begin{document}
        cite{Doi.1978}
        printbibliography
        end{document}


        gives



        Doi, Yutaka, Tetsuji Sano und Itsuo Tanaka (1978). Senkyo seido [Das Wahlsystem]. Tôkyô: Gyôsei.






        share|improve this answer












        If you are looking for an existing field, I guess the most common idiom would be to use titleaddon. If you like, you can modify the field format so that it comes out in square brackets, see for example (Hg.) for Authors.



        documentclass{article}
        usepackage{filecontents}
        begin{filecontents}{jobname.bib}
        @book{Doi.1978,
        author = {Doi, Yutaka and Sano, Tetsuji and Tanaka, Itsuo},
        year = {1978},
        title = {Senkyo seido},
        titleaddon = {Das Wahlsystem},
        location = {T^oky^o},
        publisher = {Gy^osei}
        }
        end{filecontents}
        usepackage[ngerman]{babel}
        usepackage{csquotes}
        usepackage[style=authoryear]{biblatex}
        addbibresource{jobname.bib}

        begin{document}
        cite{Doi.1978}
        printbibliography
        end{document}


        gives



        Doi, Yutaka, Tetsuji Sano und Itsuo Tanaka (1978). Senkyo seido. Das Wahlsystem. Tôkyô: Gyôsei.





        But you could also define an entirely new field for those kind of titles. Add field "tome" to biblatex entries shows all kinds of strategies to get define new fields. The disadvantage here is that you will definitely have to manipulate some bibmacros, while you might be able to get away without redefining bibmacros when you use titleaddon and accept the output it gives you out of the box.



        documentclass{article}
        usepackage[T1]{fontenc}
        usepackage[utf8]{inputenc}
        usepackage[ngerman]{babel}
        usepackage{csquotes}
        usepackage{filecontents}
        begin{filecontents}{paralleltitle.dbx}
        DeclareDatamodelFields[type=field,datatype=literal]{paralleltitle}
        DeclareDatamodelEntryfields{paralleltitle}
        end{filecontents}

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

        DeclareFieldFormat{paralleltitle}{mkbibbrackets{#1}}
        newcommand*{paralleltitlepunct}{addspace}
        renewbibmacro*{title}{%
        ifboolexpr{
        test {iffieldundef{title}}
        and
        test {iffieldundef{subtitle}}
        }
        {}
        {printtext[title]{%
        printfield[titlecase]{title}%
        setunit{subtitlepunct}%
        printfield[titlecase]{subtitle}}%
        setunit{paralleltitlepunct}%
        printfield{paralleltitle}%
        newunit}%
        printfield{titleaddon}}

        usepackage{filecontents}
        begin{filecontents}{jobname.bib}
        @book{Doi.1978,
        author = {Doi, Yutaka and Sano, Tetsuji and Tanaka, Itsuo},
        year = {1978},
        title = {Senkyo seido},
        paralleltitle = {Das Wahlsystem},
        location = {T^oky^o},
        publisher = {Gy^osei}
        }
        end{filecontents}
        addbibresource{jobname.bib}

        begin{document}
        cite{Doi.1978}
        printbibliography
        end{document}


        gives



        Doi, Yutaka, Tetsuji Sano und Itsuo Tanaka (1978). Senkyo seido [Das Wahlsystem]. Tôkyô: Gyôsei.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 17 at 16:18









        moewe

        82.8k8106317




        82.8k8106317






























             

            draft saved


            draft discarded



















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f460370%2fincluding-citavi-parallel-title-feature-with-biblatex%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

            How to send String Array data to Server using php in android

            Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

            Is anime1.com a legal site for watching anime?