[Tex/LaTex] Citing RFCs with biblatex

biblatexciting

I want to cite RFCs in the format [RFCxxxx] instead of using the author's initials and the year it was published. Currently I am using the alphabetic style that comes with biblatex. So far, I tried using the \DeclareCiteCommand command to use the key field in the .bib file, but that does not seem to work. I would really appreciate any ideas as how to solve this problem.

Best Answer

According to the ietf recommendations, it's recommended to use @techreport

   @techreport{rfc1654,
   AUTHOR = "Yakov Rekhter and Tony Li",
   TITLE = "{A Border Gateway Protocol 4 (BGP-4)}",
   HOWPUBLISHED = {Internet Requests for Comments},
   TYPE="{RFC}",
   NUMBER=1654,
   PAGES = {1-56},
   YEAR = {1995},
   MONTH = {July},
   ISSN = {2070-1721},
   PUBLISHER = "{RFC Editor}",
   INSTITUTION = "{RFC Editor}",
   URL={https://www.rfc-editor.org/rfc/rfc1654.txt}
   }

You can probably add shorthand = {RFC1654} as explain by lockstep

Another solution could be to use the natbib package

\defcitealias{jon90}{Paper~I}

\citetalias{jon90}  Paper I
\citepalias{jon90}  (Paper I)

I tested this last solution with the following code:

\usepackage{natbib}

\defcitealias{rfc6749}{RFC6749}
\citepalias{rfc6749}

\bibliographystyle{plain}

But I got the result:

[RFC6749]

and it doesn't changed it in the list.