Currently only has two templates, but more are on the way: - Basic Template : Good for a single file project - Math Template : Good for a math project
You can install via Cargo
:
sh
$ cargo install texcreate
There are two ways to create projects, the create
& import
commands:
- create: Use to quickly create a project supplying name, template and path (optional)
- import: Use a config.toml
file to specify configurations to automatically generate when creating a project.
```sh
$ texcreate create -n
$ texcreate import -f config.toml
$ texcreate init ```
```toml [Project] author = "Author" title = "Title" date = "\today" project_name = "Project Name" template = "Math" #Make sure to have first letter upercased
[Document] papersize = "letterpaper" fontsize = 11 #font size number document_class = "article" packages = ["", ""] ``` More customizations will come in the future as I figure out more effective ways to create the projects, and get more templates on the way.