Can biblatex produce a citation using a keyword from the bib file as reference?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
2
down vote

favorite












I'm using biblatex for my thesis, and I'd like to refer to my own publications differently than normal bibliographic references. An example might be to refer to them using the name of the conference they were published to. For example:



beginfilecontentspublications.bib
@inproceedingsMe2016,
title = Lorem Ipsum,
author = Me, John Et Al,
keyword = IJCAI~2016

endfilecontents
beginfilecontentsbiblio.bib
@inproceedingsAuthor97,
title = Sit Amet,
author = John Author

endfilecontents
documentclassbook

usepackage[style=numeric]biblatex
addbibresourcepublications.bib
addbibresourcebiblio.bib % normal bibliography

begindocument

My work~citeMe2016 extends the work by textciteOther97.

enddocument


This example should print something like
My work [IJCAI 2016] extends the work by Author [1].



Note: I remember seeing a similar question years ago (and I though "ah! I'll use that in my thesis!"), so it's probably a duplicate, but I cannot find it now that it's needed).










share|improve this question

























    up vote
    2
    down vote

    favorite












    I'm using biblatex for my thesis, and I'd like to refer to my own publications differently than normal bibliographic references. An example might be to refer to them using the name of the conference they were published to. For example:



    beginfilecontentspublications.bib
    @inproceedingsMe2016,
    title = Lorem Ipsum,
    author = Me, John Et Al,
    keyword = IJCAI~2016

    endfilecontents
    beginfilecontentsbiblio.bib
    @inproceedingsAuthor97,
    title = Sit Amet,
    author = John Author

    endfilecontents
    documentclassbook

    usepackage[style=numeric]biblatex
    addbibresourcepublications.bib
    addbibresourcebiblio.bib % normal bibliography

    begindocument

    My work~citeMe2016 extends the work by textciteOther97.

    enddocument


    This example should print something like
    My work [IJCAI 2016] extends the work by Author [1].



    Note: I remember seeing a similar question years ago (and I though "ah! I'll use that in my thesis!"), so it's probably a duplicate, but I cannot find it now that it's needed).










    share|improve this question























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      I'm using biblatex for my thesis, and I'd like to refer to my own publications differently than normal bibliographic references. An example might be to refer to them using the name of the conference they were published to. For example:



      beginfilecontentspublications.bib
      @inproceedingsMe2016,
      title = Lorem Ipsum,
      author = Me, John Et Al,
      keyword = IJCAI~2016

      endfilecontents
      beginfilecontentsbiblio.bib
      @inproceedingsAuthor97,
      title = Sit Amet,
      author = John Author

      endfilecontents
      documentclassbook

      usepackage[style=numeric]biblatex
      addbibresourcepublications.bib
      addbibresourcebiblio.bib % normal bibliography

      begindocument

      My work~citeMe2016 extends the work by textciteOther97.

      enddocument


      This example should print something like
      My work [IJCAI 2016] extends the work by Author [1].



      Note: I remember seeing a similar question years ago (and I though "ah! I'll use that in my thesis!"), so it's probably a duplicate, but I cannot find it now that it's needed).










      share|improve this question













      I'm using biblatex for my thesis, and I'd like to refer to my own publications differently than normal bibliographic references. An example might be to refer to them using the name of the conference they were published to. For example:



      beginfilecontentspublications.bib
      @inproceedingsMe2016,
      title = Lorem Ipsum,
      author = Me, John Et Al,
      keyword = IJCAI~2016

      endfilecontents
      beginfilecontentsbiblio.bib
      @inproceedingsAuthor97,
      title = Sit Amet,
      author = John Author

      endfilecontents
      documentclassbook

      usepackage[style=numeric]biblatex
      addbibresourcepublications.bib
      addbibresourcebiblio.bib % normal bibliography

      begindocument

      My work~citeMe2016 extends the work by textciteOther97.

      enddocument


      This example should print something like
      My work [IJCAI 2016] extends the work by Author [1].



      Note: I remember seeing a similar question years ago (and I though "ah! I'll use that in my thesis!"), so it's probably a duplicate, but I cannot find it now that it's needed).







      biblatex






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 1 hour ago









      gigabytes

      1,2891018




      1,2891018




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          3
          down vote



          accepted










          Sounds as if you are looking for the shorthand field:



          documentclassbook

          usepackagefilecontents

          beginfilecontents*publications.bib
          @inproceedingsMe2016,
          title = Lorem Ipsum,
          author = Me, John Et Al,
          keyword = IJCAI~2016,
          shorthand = IJCAI~2016

          endfilecontents*
          beginfilecontents*biblio.bib
          @inproceedingsOther97,
          title = Sit Amet,
          author = John Author

          endfilecontents*

          usepackage[style=numeric]biblatex
          addbibresourcepublications.bib
          addbibresourcebiblio.bib % normal bibliography

          begindocument

          My work~citeMe2016 extends the work by textciteOther97.

          enddocument


          enter image description here






          share|improve this answer






















          • Great! How is it going to appear with printbibliography?
            – gigabytes
            1 hour ago










          • @gigabytes The shorthand will also be used in the bibliography
            – samcarter
            1 hour ago










          • Great! That’s exactly what I needed!
            – gigabytes
            34 mins ago










          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: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          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%2f457068%2fcan-biblatex-produce-a-citation-using-a-keyword-from-the-bib-file-as-reference%23new-answer', 'question_page');

          );

          Post as a guest






























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          3
          down vote



          accepted










          Sounds as if you are looking for the shorthand field:



          documentclassbook

          usepackagefilecontents

          beginfilecontents*publications.bib
          @inproceedingsMe2016,
          title = Lorem Ipsum,
          author = Me, John Et Al,
          keyword = IJCAI~2016,
          shorthand = IJCAI~2016

          endfilecontents*
          beginfilecontents*biblio.bib
          @inproceedingsOther97,
          title = Sit Amet,
          author = John Author

          endfilecontents*

          usepackage[style=numeric]biblatex
          addbibresourcepublications.bib
          addbibresourcebiblio.bib % normal bibliography

          begindocument

          My work~citeMe2016 extends the work by textciteOther97.

          enddocument


          enter image description here






          share|improve this answer






















          • Great! How is it going to appear with printbibliography?
            – gigabytes
            1 hour ago










          • @gigabytes The shorthand will also be used in the bibliography
            – samcarter
            1 hour ago










          • Great! That’s exactly what I needed!
            – gigabytes
            34 mins ago














          up vote
          3
          down vote



          accepted










          Sounds as if you are looking for the shorthand field:



          documentclassbook

          usepackagefilecontents

          beginfilecontents*publications.bib
          @inproceedingsMe2016,
          title = Lorem Ipsum,
          author = Me, John Et Al,
          keyword = IJCAI~2016,
          shorthand = IJCAI~2016

          endfilecontents*
          beginfilecontents*biblio.bib
          @inproceedingsOther97,
          title = Sit Amet,
          author = John Author

          endfilecontents*

          usepackage[style=numeric]biblatex
          addbibresourcepublications.bib
          addbibresourcebiblio.bib % normal bibliography

          begindocument

          My work~citeMe2016 extends the work by textciteOther97.

          enddocument


          enter image description here






          share|improve this answer






















          • Great! How is it going to appear with printbibliography?
            – gigabytes
            1 hour ago










          • @gigabytes The shorthand will also be used in the bibliography
            – samcarter
            1 hour ago










          • Great! That’s exactly what I needed!
            – gigabytes
            34 mins ago












          up vote
          3
          down vote



          accepted







          up vote
          3
          down vote



          accepted






          Sounds as if you are looking for the shorthand field:



          documentclassbook

          usepackagefilecontents

          beginfilecontents*publications.bib
          @inproceedingsMe2016,
          title = Lorem Ipsum,
          author = Me, John Et Al,
          keyword = IJCAI~2016,
          shorthand = IJCAI~2016

          endfilecontents*
          beginfilecontents*biblio.bib
          @inproceedingsOther97,
          title = Sit Amet,
          author = John Author

          endfilecontents*

          usepackage[style=numeric]biblatex
          addbibresourcepublications.bib
          addbibresourcebiblio.bib % normal bibliography

          begindocument

          My work~citeMe2016 extends the work by textciteOther97.

          enddocument


          enter image description here






          share|improve this answer














          Sounds as if you are looking for the shorthand field:



          documentclassbook

          usepackagefilecontents

          beginfilecontents*publications.bib
          @inproceedingsMe2016,
          title = Lorem Ipsum,
          author = Me, John Et Al,
          keyword = IJCAI~2016,
          shorthand = IJCAI~2016

          endfilecontents*
          beginfilecontents*biblio.bib
          @inproceedingsOther97,
          title = Sit Amet,
          author = John Author

          endfilecontents*

          usepackage[style=numeric]biblatex
          addbibresourcepublications.bib
          addbibresourcebiblio.bib % normal bibliography

          begindocument

          My work~citeMe2016 extends the work by textciteOther97.

          enddocument


          enter image description here







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 1 hour ago









          moewe

          80.1k7100306




          80.1k7100306










          answered 1 hour ago









          samcarter

          79.2k787253




          79.2k787253











          • Great! How is it going to appear with printbibliography?
            – gigabytes
            1 hour ago










          • @gigabytes The shorthand will also be used in the bibliography
            – samcarter
            1 hour ago










          • Great! That’s exactly what I needed!
            – gigabytes
            34 mins ago
















          • Great! How is it going to appear with printbibliography?
            – gigabytes
            1 hour ago










          • @gigabytes The shorthand will also be used in the bibliography
            – samcarter
            1 hour ago










          • Great! That’s exactly what I needed!
            – gigabytes
            34 mins ago















          Great! How is it going to appear with printbibliography?
          – gigabytes
          1 hour ago




          Great! How is it going to appear with printbibliography?
          – gigabytes
          1 hour ago












          @gigabytes The shorthand will also be used in the bibliography
          – samcarter
          1 hour ago




          @gigabytes The shorthand will also be used in the bibliography
          – samcarter
          1 hour ago












          Great! That’s exactly what I needed!
          – gigabytes
          34 mins ago




          Great! That’s exactly what I needed!
          – gigabytes
          34 mins ago

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f457068%2fcan-biblatex-produce-a-citation-using-a-keyword-from-the-bib-file-as-reference%23new-answer', 'question_page');

          );

          Post as a guest













































































          Comments

          Popular posts from this blog

          Long meetings (6-7 hours a day): Being “babysat” by supervisor

          Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

          Confectionery