dzming.li / hust-cse-report

HUST CSE report typst template

1
hust-cse-report / template / main.typ
726 B · 31 lines raw
#import "@preview/modern-hust-cse-report:0.1.2": report, fig, tbl

#show:report.with(
  name: "",
  class: "",
  id: "U202",
  contact: "(电子邮件)",
  title: [],
  scoretable: [], // 评分表格内容
  signature: none, // 签名图片路径,如 "signature.png",留空则不显示签名
)

// 使用示例:
// = 第一章
// == 第一节
//
// #fig(image("image.png", width: 80%), caption: "示例图片")
// 这将显示为:图1-1-1:示例图片
//
// #tbl(
//   table(
//     columns: 3,
//     [列1], [列2], [列3],
//     [数据1], [数据2], [数据3],
//   ),
//   caption: "示例表格"
// )
// 这将显示为:表1-1-1:示例表格
//
// $ E = m c^2 $
// 这将自动显示为:E = m c^2  (1-1-1)