(非官方)华中科技大学网安学院实验/实践报告Typst 模板
at 31 lines 746 B view raw
1#import "@preview/modern-hust-cse-report:0.1.2": report, fig, tbl 2 3#show:report.with( 4 name: "", 5 class: "", 6 id: "U202", 7 contact: "(电子邮件)", 8 title: [本科:《》实践报告], 9 scoretable: [], // 评分表格内容 10 signature: none, // 签名图片路径,如 "signature.png",留空则不显示签名 11) 12 13// 使用示例: 14// = 第一章 15// == 第一节 16// 17// #fig("image.png", caption: "示例图片", width: 80%) 18// 这将显示为:图1-1-1:示例图片 19// 20// #tbl( 21// table( 22// columns: 3, 23// [列1], [列2], [列3], 24// [数据1], [数据2], [数据3], 25// ), 26// caption: "示例表格" 27// ) 28// 这将显示为:表1-1-1:示例表格 29// 30// $ E = m c^2 $ 31// 这将自动显示为:E = m c^2 (1-1-1)