Skip to content

report-cover

The report-cover template generates a professional cover page for reports, whitepapers, and research documents. It features a bold typographic layout with optional abstract, classification level, and version number.

<glyph-editor
api-key="gk_your_key"
template="report-cover"
data='...'
></glyph-editor>
FieldTypeDescription
report.titlestringReport title
report.authorstringAuthor name
report.datestringPublication date
report.organizationstringOrganization or department name
FieldTypeDescription
report.subtitlestringReport subtitle or tagline
report.versionstringDocument version
report.classificationstringClassification level (e.g. “Internal”, “Confidential”)
report.abstractstringSummary or abstract text
styles.accentColorstringAccent color (default: #1e293b)
Terminal window
curl -X POST https://api.glyph.you/v1/create \
-H "Authorization: Bearer gk_your_key" \
-H "Content-Type: application/json" \
-d '{
"template": "report-cover",
"data": {
"report": {
"title": "Q4 2024 Market Analysis",
"subtitle": "Trends, Opportunities, and Strategic Recommendations",
"author": "Dr. Emily Rodriguez",
"date": "January 15, 2024",
"organization": "Meridian Research Group",
"version": "2.1",
"classification": "Internal",
"abstract": "This report examines key market trends observed during Q4 2024, with particular focus on the enterprise SaaS segment. Our analysis covers pricing dynamics, competitive movements, and emerging opportunities in adjacent markets."
},
"styles": {
"accentColor": "#1e293b"
}
}
}'