You can use the Canvas view to organize notes visually. Canvas gives you infinite space to brainstorm, diagram and lay out your ideas. With Canvas view you can create mind maps, flow charts, org charts, moodboards, family trees and more.
---
tags: function/weeklyNote
week: 2023-W04
---
## Habit tracking of `=this.week`
```dataview
table without id file.link as 日期,
dateformat(date, "ccc") as 星期,写笔记, 读书, 家务, 家务项, 健身, 健身项
from "DailyNotes"
where
dateformat(date, "yyyy-'W'WW") = this.week
sort file.link asc
```
## New notes of `=this.week`
```dataview
table
action as 动作,
file.etags as 标签,
file.inlinks as 被引用,
file.outlinks as 引用其他,
date as "创建日期"
from #function/project and -"templates"
where
dateformat(date, "yyyy-'W'WW") = this.week
sort date asc
```
## Update notes of `=this.week`
```dataview
table
file.inlinks as 被引用,
file.outlinks as 引用其他,
file.mday as "最后更新"
from #function/project and -"templates"
where
dateformat(file.mday, "yyyy-'W'WW") = this.week and
dateformat(date, "yyyy-'W'WW") != dateformat(file.mday, "yyyy-'W'WW")
sort file.mday desc
```