Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 1.22 KB

README.md

File metadata and controls

26 lines (21 loc) · 1.22 KB

Personal Robotics Publications

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.

Adding this repo to a LaTeX paper repo

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.