From b28f97f3526859633fde603764b827389279d10f Mon Sep 17 00:00:00 2001 From: Denis Chevalier Date: Mon, 10 Aug 2026 22:32:38 +0200 Subject: extract figures in separate files --- tables/mathematical-operators-and-functions.typ | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tables/mathematical-operators-and-functions.typ (limited to 'tables/mathematical-operators-and-functions.typ') diff --git a/tables/mathematical-operators-and-functions.typ b/tables/mathematical-operators-and-functions.typ new file mode 100644 index 0000000..d0c93eb --- /dev/null +++ b/tables/mathematical-operators-and-functions.typ @@ -0,0 +1,22 @@ +#import "@preview/diverential:0.3.0": * + +#figure( + table( + columns: 2, + table.header([Notation], [Meaning]), + [$sum$], [Summation], + [$product$], [Product], + [$sqrt("")$], [Square root], + [$dvp(y, x)$], [Partial derivative of $y$ with respect to $x$], + [$dv(y, x)$], [Total derivative of $y$ with respect to $x$], + [$integral$], [Integral], + [$log_10$], [Common logarithm (base $10$)], + [$ln$], [Natural logarithm (base $e$)], + [$exp$], [Exponential function], + [$abs(x)$], [Absolute value of $x$], + [$x mod y$], [Modulo operation (remainder of $x$ divided by $y$)], + [$in$], [Element of a set], + [$upright("RSS")$], [Root-sum-square: $sqrt(x_1^2 + x_2^2 + ... + x_n^2)$], + ), + caption: [Mathematical operators and functions], +) -- cgit