Skip to content

Instantly share code, notes, and snippets.

@MasWag
Created November 18, 2023 03:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MasWag/f71ecf4042f88fec9bcddcfebeab9151 to your computer and use it in GitHub Desktop.
Save MasWag/f71ecf4042f88fec9bcddcfebeab9151 to your computer and use it in GitHub Desktop.
Example showing a potential issue on author ordering in BiByFi
@require: stdjareport
@require: bibyfi/bibyfi
@require: bibyfi/bibyfi-IEEETran
let bibs = [
(`sawada2013multichannel`, Article(|
author= [`Hiroshi Sawada`;`Hirokazu Kameoka`;`Shoko Araki`;`Naonori Ueda`];
title = `Multichannel Extensions of Non-Negative Matrix Factorization With Complex-Valued Data`;
journal = `IEEE Transactions on Audio, Speech, and Language Processing`;
year = `2013`;
volume = Some(`21`);
number = Some(`5`);
pages = (`971`,`982`);
month = None;
key = None;
note = None;
|));
] in
let bibyfi-theme = BiByFiIEEETran.theme (|
name-shrink = true;
et-al = true;
journal-abbr = [(`European Association for Signal Processing`, `EUSIPCO`)];
|)
in
document(|
title = {Issue of \BiByFi; on author order};
author = {Masaki Waga};
|) '<
+p{
\cite[`sawada2013multichannel`];
}
+makebibliography ?:(|sort-references=true; citestyle=CiteAsAuthorsEtAl; name-shrink=true;|) (bibyfi-theme)(bibs);
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment