Skip to content

Latest commit

 

History

History
72 lines (66 loc) · 1.56 KB

File metadata and controls

72 lines (66 loc) · 1.56 KB
title Functional Analysis MOC
date created Saturday, September 13th 2025, 4:31:26 pm
date modified Sunday, September 21st 2025, 4:39:28 pm
category functional-analysis
cssclasses
my-custom-style

Definitions

TABLE join(aliases, ", ") AS "Aliases",
  join(
    unique(
      map(
        filter(
          file.tags,
          (t) => startswith(t, "#mathematics/definitions/")
        ),
        (t) => regexreplace(t, "^#mathematics/definitions/([^/]+).*", "$1")
      )
    ),
    ", "
  ) AS "Categories",
  join(
    map(
      filter(
        file.tags,
        (t) => contains(t, "#mathematics/definitions/" + this.category + "/")
      ),
      (t) => regexreplace(t, "^#mathematics/definitions/" + this.category + "/", "")
    ),
    ", "
  ) AS "Sub-categories"
FROM #mathematics/definitions
WHERE contains(file.tags, "#mathematics/definitions/" + this.category)
SORT file.name ASC

Equations

TABLE 
  join(
    unique(
      map(
        filter(
          file.tags,
          (t) => startswith(t, "#mathematics/equations/")
        ),
        (t) => regexreplace(t, "^#mathematics/equations/([^/]+).*", "$1")
      )
    ),
    ", "
  ) AS "Categories",
  join(
    map(
      filter(
        file.tags,
        (t) => contains(t, "#mathematics/equations/" + this.category + "/")
      ),
      (t) => regexreplace(t, "^#mathematics/equations/" + this.category + "/", "")
    ),
    ", "
  ) AS "Sub-categories"
FROM #mathematics/equations
WHERE contains(file.tags, "#mathematics/equations/" + this.category)
SORT file.name ASC