-
Notifications
You must be signed in to change notification settings - Fork 17
Adding publications from a single bibtex file
To speed up the process of adding your publications you can use 'academic' package. academic
is a special tool that allows you to add all your publications at once from a single BibTeX file. To install and use academic
follow the following steps.
- Open your Terminal and install
academic
:
pip3 install -U academic
- Use the cd command to navigate to your website folder in the terminal.
- Import publications:
academic import --bibtex my_publications.bib
Publications use the full author's name ("John A. Smith" or "John Smith"). To have a correct link to the author's personal page the name in publication's index.md file must be a username (john_smith). To change authors' manes in all index.md files in /content/publication/ folder you can run provided python script:
cd content/
python3 ./fix_usernames.py
If you want your publication to be linked to a project you need to go to publication's index.md file and add the line
projects = [project_name1, project_name2]
Notice that project_name is the name of project folder in content/projects/.