$ cd ../
$ cat /backups/brain/
0040
Sample Typst Plot
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#lq.diagram(
  title: [Plot of the results],
  xlabel: [x-axis],
  ylabel: [y-axis],
  lq.plot(
    (0, 1, 2, 3, 4),
    (9, 4, 2, 1, 2),
    mark: "s",
    label: [A],
  ),
  lq.plot(
    (0, 1, 2, 3, 4),
    (0, 4, 7, 6, 0),
    mark: "o",
    label: [B],
  )
)

$ cd ../