This commit is contained in:
Zelong Kuang
2025-09-30 22:59:47 +10:00
parent 46c470d1f7
commit b5303f2cdd
28 changed files with 279 additions and 1689 deletions

View File

@@ -136,121 +136,7 @@ return {
s({ trig = "=>", snippetType = "autosnippet" }, {
t("\\(\\implies\\)"),
}, { condition = tex.in_text }),
s(
{ trig = "homework" },
fmta(
[[
\documentclass{article}
\newcommand{\Class}{<>}
\newcommand{\Title}{Homework <>}
\author{Hanyu Yan}
\input{~/Documents/Latex/Package_elegantbook.tex}
\input{~/Documents/Latex/Sample_Homework.tex}
\begin{document}
\maketitle \thispagestyle{empty}
<>
\end{document}
]],
{
c(1, {
t("Numerical Analysis"),
t("Experimental Quantum Information Processing"),
t("Quantum Communication and Cryptography"),
}),
i(2, "number"),
i(0),
}
),
{ condition = tex.in_text * line_begin }
),
s(
{ trig = "note" },
fmta(
[[
\documentclass[letterpaper, 12pt]{article}
\input{~/Documents/Latex/note_template.tex}
\begin{document}
\title{<> \\[1em]
\normalsize <>}
\author{\normalsize Fireond}
\date{\normalsize\vspace{-1ex} Last updated: \today}
\maketitle
\tableofcontents\label{sec:contents}
<>
\end{document}
]],
{
i(1, "title"),
i(2, "subtitle"),
i(0),
}
),
{ condition = tex.in_text * line_begin }
),
s(
{ trig = "algo" },
fmta(
[[
\documentclass[utf8]{article}
\usepackage{amsmath,amssymb}
\usepackage{graphicx}
\usepackage{fullpage}
\usepackage{setspace}
\usepackage{verbatim}
\usepackage{algorithm}
\usepackage{algpseudocodex}
\algrenewcommand\algorithmicrequire{\textbf{Input:}}
\algrenewcommand\algorithmicensure{\textbf{Output:}}
\input{~/Documents/Latex/Package_elegantbook.tex}
\onehalfspacing
\title{\bf\huge Algorithm Design - Assignment <>}
\author{Hanyu Yan\\2022010860\\Class 23}
\date{\today}
\begin{document}
\maketitle
<>
\end{document}
]],
{ i(1), i(0) }
),
{ condition = tex.in_text * line_begin }
),
s(
{ trig = "report" },
fmta(
[[
%! TeX program = xelatex
\documentclass{article}
\newcommand{\Class}{<>}
\newcommand{\Title}{<>}
\author{严涵宇}
\usepackage[UTF8]{ctex}
\input{~/Documents/Latex/Package_elegantbook.tex}
\input{~/Documents/Latex/Sample_Homework.tex}
\begin{document}
\maketitle \thispagestyle{empty}
<>
\end{document}
]],
{
c(1, {
t("量子信息实验报告"),
}),
i(2),
i(0),
}
),
{ condition = tex.in_text * line_begin }
),
s({ trig = "=<", snippetType = "autosnippet" }, {
t("\\(\\impliedby\\)"),
}, { condition = tex.in_text }),
}