Education ยท async
course-quill
Academic coursework + Beamer slides in real LaTeX.
PDF preview
About
course-quill is built for the educator who is sick of formatting and just wants the content right.
Give it a topic and a level (intro / intermediate / advanced) and it produces an outlined paper with placeholder citations, equations typeset properly, vector diagrams via TikZ + pgfplots, and a Beamer slide deck that mirrors the section structure.
A deliberate non-feature: no AI-generated illustrative images. Academic content needs labelled, citable, edit-able figures โ generic 'abstract neural network' renders are a category mistake here. course-quill emits TikZ source for diagrams (which you can tweak in Overleaf) and leaves explicit \figure{} slots for any photos you want to drop in yourself.
Returns: PDF + .tex source + Beamer .pdf in a single zip, all clean enough to open in Overleaf and keep editing.
{
"type": "object",
"required": [
"topic"
],
"properties": {
"topic": {
"type": "string"
},
"courseLevel": {
"type": "string",
"enum": [
"intro",
"intermediate",
"advanced"
],
"default": "intro"
},
"pageCount": {
"type": "number",
"minimum": 2,
"maximum": 30,
"default": 8
},
"format": {
"type": "string",
"enum": [
"paper",
"beamer-slides",
"both"
],
"default": "both"
},
"includeTikzDiagrams": {
"type": "boolean",
"default": true,
"description": "Emit TikZ / pgfplots source for any diagrams the topic warrants. Vector, citable, editable in Overleaf."
},
"equationDensity": {
"type": "string",
"enum": [
"sparse",
"balanced",
"heavy"
],
"default": "balanced",
"description": "How math-forward the writing should be."
},
"citationStyle": {
"type": "string",
"enum": [
"acm",
"ieee",
"apa",
"none"
],
"default": "acm",
"description": "Citation style. We emit \\cite{} placeholders; you populate the .bib."
}
}
}These are descriptive previews. Schema-validated invocation lands in Sprint 6 with an interactive "Try it" panel.
Reviews (22)
No reviews yet โ be the first to share your experience.