fukai-t / profile-page

Written by Emacs org-mode
0 stars 0 forks source link

プロフィールページ: 業績管理 #8

Open fukai-t opened 2 years ago

fukai-t commented 2 years ago
fukai-t commented 1 year ago

Bibtex parsers

Typescript で何か書くのが有力?

fukai-t commented 1 year ago

citation-js

fukai-t commented 1 year ago

以下の手順で、bibtex から JSON に変換できるようになる。 以下の例では、bibtex から著者一覧を回数順でソートして出力している。

mkdir try-citation.js
npm install npm install citation-js
mkdir bibtex-files
emacs -nw  bibtex-files/my_publications.bib #Make bibtex file
node_modules/.bin/citation-js -i bibtex-files/my_publications.bib  | jq -r '.[].author[]| .family + " " + .given' | sort  | uniq -c  | sort -n | less