8

As part of my thesis I read some sourcecode. Unfortunately this sourcecode is only available as an svn repository. How do I write a reference to it? The shortest way I found of accessing it is:

svn checkout -r187 http://seccompsandbox.googlecode.com/svn/trunk/ seccompsandbox-read-only

How do i write a reference to such sourcecode?

1

1 Answer 1

6

A possibility would be

@misc{key,
  title = {http://seccompsandbox.googlecode.com/svn/trunk/},
  howpublished = {svn checkout -r187},
}

If you consider biblatex it has an @online entry type with support for version

@online{key,
  url = {http://seccompsandbox.googlecode.com/svn/trunk},
  version = {svn checkout -r187},
}

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .