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
```
toml
[Project]
author = "Author"
title = "Title"
date = "Date"
project_name = "Project Name"
template = "Template"
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.