create_project() provides a convenient function for creating a new academic/paper project.

create_project(path, ...)

Arguments

path

the directory name for the project (e.g. "my-project", "dissertation", or whatever)

...

optional stuff, but you can ignore this

Value

create_project() creates a directory named with whatever is supplied in the path variable. This directory will appear in the current working directory if it is executed in the command line. The contents of that directory will include a skeleton project to get the user started. The user can (and must) ultimately make it their own.

Examples

if (FALSE) { create_project("example") create_project("dissertation") }