├── .github └── workflows │ ├── autofix.yml │ ├── build.yml │ └── check.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── docs ├── .vitepress │ ├── config.ts │ ├── plugins │ │ └── markdown_transform.ts │ ├── theme │ │ ├── FAQList.vue │ │ ├── Layout.vue │ │ ├── SeeAlso.vue │ │ ├── custom.css │ │ ├── faqlist.data.ts │ │ ├── index.ts │ │ ├── see_also.data.ts │ │ ├── see_also_data │ │ │ ├── auto_title.ts │ │ │ ├── caching.ts │ │ │ ├── frontmatter.ts │ │ │ └── gap_index.ts │ │ ├── typst_version.ts │ │ └── utils.ts │ ├── typst_render.ts │ ├── typst_template.ts │ ├── util.ts │ └── util_node.ts ├── FAQ.md ├── FAQ │ ├── above_below.md │ ├── array-transpose.md │ ├── auto-three-line-table.md │ ├── bib-csl.md │ ├── bib-etal-lang.md │ ├── bib-markup.md │ ├── bib-missing-group-delimiter.md │ ├── bib-missing-page-delimiter.md │ ├── bib-missing-school.md │ ├── bibitem.md │ ├── block-equation-in-paragraph.md │ ├── book-note-template.md │ ├── cases-right.md │ ├── cetz_install.md │ ├── chapter-zero.md │ ├── character-intersperse.md │ ├── chemical-formulae.md │ ├── chinese-bold.md │ ├── chinese-in-raw.md │ ├── chinese-remove-space.md │ ├── chinese-skew.md │ ├── chinese-space.md │ ├── cite-flying.md │ ├── cjk-latin-spacing-in-raw.md │ ├── code-block-justify.md │ ├── continued-table.md │ ├── convert_to_word.md │ ├── custom_matrix_func.md │ ├── dcases.md │ ├── diagonal-in-table-cell.md │ ├── doc-comment.md │ ├── dual_language_caption.md │ ├── emptyset.md │ ├── enum-list-marker-fix.md │ ├── enum-number-width.md │ ├── equation-chinese-font.md │ ├── equation_linebreak_superscript.md │ ├── first-line-indent.md │ ├── fix-enum-list.md │ ├── footnote-in-block.md │ ├── footnote-in-heading.md │ ├── general-table.md │ ├── get-label-page.md │ ├── grid-auto-width.md │ ├── heading-formats.md │ ├── heading-numbering-bold.md │ ├── heading-numbering-none.md │ ├── heading-numbering-space.md │ ├── heading-various-format.md │ ├── how-to-publish-package.md │ ├── hyphenate.md │ ├── include-pdf.md │ ├── input-symbol.md │ ├── install-fonts.md │ ├── lang-font-size.md │ ├── lang-fonts.md │ ├── latex-equation.md │ ├── left_center_right.md │ ├── link-colors.md │ ├── list_styles.md │ ├── math-bold-upright.md │ ├── math-delim.md │ ├── math-equation.md │ ├── math-fonts.md │ ├── math-inline-display.md │ ├── math-ocr.md │ ├── math-tag.md │ ├── mathcal_font.md │ ├── mermaid.md │ ├── missing-ref.md │ ├── modify_operator.md │ ├── multiple-files.md │ ├── outline-contain-self.md │ ├── page-numbering-format.md │ ├── page-odd-even.md │ ├── par-leading.md │ ├── ref-superscript.md │ ├── rounded-corner-table.md │ ├── smartquote-font.md │ ├── strange-fonts.md │ ├── strong-emph.md │ ├── sub-figure.md │ ├── symbol-mathscr.md │ ├── text-shadow.md │ ├── three-line-table.md │ ├── underline-evade.md │ ├── underline-misplace.md │ ├── underline-not-display.md │ ├── variant-heading.md │ ├── variant-symbol.md │ ├── wave-underline.md │ ├── webapp-fonts.md │ ├── webapp-spellcheck.md │ ├── weird-punct.md │ └── word-line-spacing.md ├── GridView.vue ├── ShowyCard.vue ├── about.md ├── garden-help.md ├── garden.md ├── garden │ └── demo.md ├── images │ ├── 20240715132539.png │ ├── 20240715222928.png │ ├── 20240715223645.png │ ├── chinese-in-raw.png │ └── pointless-size.svg ├── index.md ├── public │ ├── garden │ │ └── demo1.html │ └── math_fonts.pdf ├── quick-start.md ├── showcase.md └── word.md ├── netlify.toml ├── package.json ├── pnpm-lock.yaml ├── scripts └── download-fonts.sh └── uno.config.ts /.github/workflows/autofix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/.github/workflows/autofix.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/README.md -------------------------------------------------------------------------------- /docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/markdown_transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/plugins/markdown_transform.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/FAQList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/FAQList.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/Layout.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/SeeAlso.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/SeeAlso.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/faqlist.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/faqlist.data.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/see_also.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/see_also.data.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/see_also_data/auto_title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/see_also_data/auto_title.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/see_also_data/caching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/see_also_data/caching.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/see_also_data/frontmatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/see_also_data/frontmatter.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/see_also_data/gap_index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/see_also_data/gap_index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/typst_version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/typst_version.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/theme/utils.ts -------------------------------------------------------------------------------- /docs/.vitepress/typst_render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/typst_render.ts -------------------------------------------------------------------------------- /docs/.vitepress/typst_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/typst_template.ts -------------------------------------------------------------------------------- /docs/.vitepress/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/util.ts -------------------------------------------------------------------------------- /docs/.vitepress/util_node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/.vitepress/util_node.ts -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/FAQ/above_below.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/above_below.md -------------------------------------------------------------------------------- /docs/FAQ/array-transpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/array-transpose.md -------------------------------------------------------------------------------- /docs/FAQ/auto-three-line-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/auto-three-line-table.md -------------------------------------------------------------------------------- /docs/FAQ/bib-csl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/bib-csl.md -------------------------------------------------------------------------------- /docs/FAQ/bib-etal-lang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/bib-etal-lang.md -------------------------------------------------------------------------------- /docs/FAQ/bib-markup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/bib-markup.md -------------------------------------------------------------------------------- /docs/FAQ/bib-missing-group-delimiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/bib-missing-group-delimiter.md -------------------------------------------------------------------------------- /docs/FAQ/bib-missing-page-delimiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/bib-missing-page-delimiter.md -------------------------------------------------------------------------------- /docs/FAQ/bib-missing-school.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/bib-missing-school.md -------------------------------------------------------------------------------- /docs/FAQ/bibitem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/bibitem.md -------------------------------------------------------------------------------- /docs/FAQ/block-equation-in-paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/block-equation-in-paragraph.md -------------------------------------------------------------------------------- /docs/FAQ/book-note-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/book-note-template.md -------------------------------------------------------------------------------- /docs/FAQ/cases-right.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/cases-right.md -------------------------------------------------------------------------------- /docs/FAQ/cetz_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/cetz_install.md -------------------------------------------------------------------------------- /docs/FAQ/chapter-zero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/chapter-zero.md -------------------------------------------------------------------------------- /docs/FAQ/character-intersperse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/character-intersperse.md -------------------------------------------------------------------------------- /docs/FAQ/chemical-formulae.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/chemical-formulae.md -------------------------------------------------------------------------------- /docs/FAQ/chinese-bold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/chinese-bold.md -------------------------------------------------------------------------------- /docs/FAQ/chinese-in-raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/chinese-in-raw.md -------------------------------------------------------------------------------- /docs/FAQ/chinese-remove-space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/chinese-remove-space.md -------------------------------------------------------------------------------- /docs/FAQ/chinese-skew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/chinese-skew.md -------------------------------------------------------------------------------- /docs/FAQ/chinese-space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/chinese-space.md -------------------------------------------------------------------------------- /docs/FAQ/cite-flying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/cite-flying.md -------------------------------------------------------------------------------- /docs/FAQ/cjk-latin-spacing-in-raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/cjk-latin-spacing-in-raw.md -------------------------------------------------------------------------------- /docs/FAQ/code-block-justify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/code-block-justify.md -------------------------------------------------------------------------------- /docs/FAQ/continued-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/continued-table.md -------------------------------------------------------------------------------- /docs/FAQ/convert_to_word.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/convert_to_word.md -------------------------------------------------------------------------------- /docs/FAQ/custom_matrix_func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/custom_matrix_func.md -------------------------------------------------------------------------------- /docs/FAQ/dcases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/dcases.md -------------------------------------------------------------------------------- /docs/FAQ/diagonal-in-table-cell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/diagonal-in-table-cell.md -------------------------------------------------------------------------------- /docs/FAQ/doc-comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/doc-comment.md -------------------------------------------------------------------------------- /docs/FAQ/dual_language_caption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/dual_language_caption.md -------------------------------------------------------------------------------- /docs/FAQ/emptyset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/emptyset.md -------------------------------------------------------------------------------- /docs/FAQ/enum-list-marker-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/enum-list-marker-fix.md -------------------------------------------------------------------------------- /docs/FAQ/enum-number-width.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/enum-number-width.md -------------------------------------------------------------------------------- /docs/FAQ/equation-chinese-font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/equation-chinese-font.md -------------------------------------------------------------------------------- /docs/FAQ/equation_linebreak_superscript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/equation_linebreak_superscript.md -------------------------------------------------------------------------------- /docs/FAQ/first-line-indent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/first-line-indent.md -------------------------------------------------------------------------------- /docs/FAQ/fix-enum-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/fix-enum-list.md -------------------------------------------------------------------------------- /docs/FAQ/footnote-in-block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/footnote-in-block.md -------------------------------------------------------------------------------- /docs/FAQ/footnote-in-heading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/footnote-in-heading.md -------------------------------------------------------------------------------- /docs/FAQ/general-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/general-table.md -------------------------------------------------------------------------------- /docs/FAQ/get-label-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/get-label-page.md -------------------------------------------------------------------------------- /docs/FAQ/grid-auto-width.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/grid-auto-width.md -------------------------------------------------------------------------------- /docs/FAQ/heading-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/heading-formats.md -------------------------------------------------------------------------------- /docs/FAQ/heading-numbering-bold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/heading-numbering-bold.md -------------------------------------------------------------------------------- /docs/FAQ/heading-numbering-none.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/heading-numbering-none.md -------------------------------------------------------------------------------- /docs/FAQ/heading-numbering-space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/heading-numbering-space.md -------------------------------------------------------------------------------- /docs/FAQ/heading-various-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/heading-various-format.md -------------------------------------------------------------------------------- /docs/FAQ/how-to-publish-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/how-to-publish-package.md -------------------------------------------------------------------------------- /docs/FAQ/hyphenate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/hyphenate.md -------------------------------------------------------------------------------- /docs/FAQ/include-pdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/include-pdf.md -------------------------------------------------------------------------------- /docs/FAQ/input-symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/input-symbol.md -------------------------------------------------------------------------------- /docs/FAQ/install-fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/install-fonts.md -------------------------------------------------------------------------------- /docs/FAQ/lang-font-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/lang-font-size.md -------------------------------------------------------------------------------- /docs/FAQ/lang-fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/lang-fonts.md -------------------------------------------------------------------------------- /docs/FAQ/latex-equation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/latex-equation.md -------------------------------------------------------------------------------- /docs/FAQ/left_center_right.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/left_center_right.md -------------------------------------------------------------------------------- /docs/FAQ/link-colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/link-colors.md -------------------------------------------------------------------------------- /docs/FAQ/list_styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/list_styles.md -------------------------------------------------------------------------------- /docs/FAQ/math-bold-upright.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/math-bold-upright.md -------------------------------------------------------------------------------- /docs/FAQ/math-delim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/math-delim.md -------------------------------------------------------------------------------- /docs/FAQ/math-equation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/math-equation.md -------------------------------------------------------------------------------- /docs/FAQ/math-fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/math-fonts.md -------------------------------------------------------------------------------- /docs/FAQ/math-inline-display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/math-inline-display.md -------------------------------------------------------------------------------- /docs/FAQ/math-ocr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/math-ocr.md -------------------------------------------------------------------------------- /docs/FAQ/math-tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/math-tag.md -------------------------------------------------------------------------------- /docs/FAQ/mathcal_font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/mathcal_font.md -------------------------------------------------------------------------------- /docs/FAQ/mermaid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/mermaid.md -------------------------------------------------------------------------------- /docs/FAQ/missing-ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/missing-ref.md -------------------------------------------------------------------------------- /docs/FAQ/modify_operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/modify_operator.md -------------------------------------------------------------------------------- /docs/FAQ/multiple-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/multiple-files.md -------------------------------------------------------------------------------- /docs/FAQ/outline-contain-self.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/outline-contain-self.md -------------------------------------------------------------------------------- /docs/FAQ/page-numbering-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/page-numbering-format.md -------------------------------------------------------------------------------- /docs/FAQ/page-odd-even.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/page-odd-even.md -------------------------------------------------------------------------------- /docs/FAQ/par-leading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/par-leading.md -------------------------------------------------------------------------------- /docs/FAQ/ref-superscript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/ref-superscript.md -------------------------------------------------------------------------------- /docs/FAQ/rounded-corner-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/rounded-corner-table.md -------------------------------------------------------------------------------- /docs/FAQ/smartquote-font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/smartquote-font.md -------------------------------------------------------------------------------- /docs/FAQ/strange-fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/strange-fonts.md -------------------------------------------------------------------------------- /docs/FAQ/strong-emph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/strong-emph.md -------------------------------------------------------------------------------- /docs/FAQ/sub-figure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/sub-figure.md -------------------------------------------------------------------------------- /docs/FAQ/symbol-mathscr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/symbol-mathscr.md -------------------------------------------------------------------------------- /docs/FAQ/text-shadow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/text-shadow.md -------------------------------------------------------------------------------- /docs/FAQ/three-line-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/three-line-table.md -------------------------------------------------------------------------------- /docs/FAQ/underline-evade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/underline-evade.md -------------------------------------------------------------------------------- /docs/FAQ/underline-misplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/underline-misplace.md -------------------------------------------------------------------------------- /docs/FAQ/underline-not-display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/underline-not-display.md -------------------------------------------------------------------------------- /docs/FAQ/variant-heading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/variant-heading.md -------------------------------------------------------------------------------- /docs/FAQ/variant-symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/variant-symbol.md -------------------------------------------------------------------------------- /docs/FAQ/wave-underline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/wave-underline.md -------------------------------------------------------------------------------- /docs/FAQ/webapp-fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/webapp-fonts.md -------------------------------------------------------------------------------- /docs/FAQ/webapp-spellcheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/webapp-spellcheck.md -------------------------------------------------------------------------------- /docs/FAQ/weird-punct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/weird-punct.md -------------------------------------------------------------------------------- /docs/FAQ/word-line-spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/FAQ/word-line-spacing.md -------------------------------------------------------------------------------- /docs/GridView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/GridView.vue -------------------------------------------------------------------------------- /docs/ShowyCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/ShowyCard.vue -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/garden-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/garden-help.md -------------------------------------------------------------------------------- /docs/garden.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/garden.md -------------------------------------------------------------------------------- /docs/garden/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/garden/demo.md -------------------------------------------------------------------------------- /docs/images/20240715132539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/images/20240715132539.png -------------------------------------------------------------------------------- /docs/images/20240715222928.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/images/20240715222928.png -------------------------------------------------------------------------------- /docs/images/20240715223645.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/images/20240715223645.png -------------------------------------------------------------------------------- /docs/images/chinese-in-raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/images/chinese-in-raw.png -------------------------------------------------------------------------------- /docs/images/pointless-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/images/pointless-size.svg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/public/garden/demo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/public/garden/demo1.html -------------------------------------------------------------------------------- /docs/public/math_fonts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/public/math_fonts.pdf -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/showcase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/showcase.md -------------------------------------------------------------------------------- /docs/word.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/docs/word.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/download-fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/scripts/download-fonts.sh -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typst-doc-cn/guide/HEAD/uno.config.ts --------------------------------------------------------------------------------