A tool to get publications list from DBLP as a table in LaTeX or in BibTeX for references.
Don't reveal this to your professor. Say you are doing clerical work.
$ node index.js latex-table https://dblp.org/pid/XX/YYYY.html -o output.tex
# Generated LaTeX table saved to output.tex
$ node index.js bibtex https://dblp.org/pid/XX/YYYY.html -o output.bib
# Generated BibTeX file saved to output.bib
$ node index.js latex-table https://dblp.org/pid/XX/YYYY.html -o output.tex --title /dynamic/i
# Filter publications by title containing "dynamic" (case-insensitive), and save to output.tex
$ node index.js latex-table https://dblp.org/pid/XX/YYYY.html -o output.tex --year 1999-2009
# Filter publications by year between 1999 and 2009, and save to output.tex
$ node index.js latex-table https://dblp.org/pid/XX/YYYY.html -o output.tex --author /Teja/i
# Filter publications by author containing "Teja" (case-insensitive), and save to output.tex
$ node index.js bibtex https://dblp.org/pid/XX/YYYY.html -o output.bib --author /Teja/i
# Filter publications by author containing "Teja" (case-insensitive), and save to output.bib
- dblp: How can I fetch all publications of one specific author?
- JavaScript Reference : MDN Web Docs
- Regex lookahead, lookbehind and atomic groups
- BibTeX