BibTeX entries for the Personal Robotics Lab. This repository is used to populate the publications page on the lab website.
Publication PDFs are stored in Google Drive and automatically synced to the web server.
- The publication title URL should point to the paper PDF on the personalrobotics domain.
- The rare exception is non-textual publications, such as videos or datasets: example.
- If the publication has a project website, the website can be linked as a
note
in the BibTex: example. The project website should have a link to the paper PDF on the personalrobotics domain. The website should also be persistent (i.e., on a web domain or resource that will outlive your time in the lab and that other lab members can access if need be).
One way to add this repository to a paper repository is via the git submoudle command. Do the following in your paper repository:
$ git submodule add https://github.com/personalrobotics/pubs
$ git commit -am 'added PRL pubs submodule'
$ git push origin master
Now if you freshly clone this repository elsewhere, you'll find an empty pubs
directory. To populate it, do:
$ git submodule init
$ git submodule update
Git submodules are tricky, and not everyone likes them, but they are one way to stay in sync. One thing to keep in mind is that you need to be in the submodule subdirectory to run any git commands specific to that submodule.