Completely Simplified Chinese translation for current docs. (#37)
* Completely Simplified Chinese translation for current docs. * Added roland's intro to SUMMARY.md * Correct the translation about relative path in CONTRIBUTING.md. * Correct the translation about local encryption following the main branch.
Before Width: | Height: | Size: 145 KiB |
BIN
.gitbook/assets/Anytype Primitives - Frame 2-2 - zh-cn.jpg
Normal file
After Width: | Height: | Size: 910 KiB |
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 140 KiB |
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 140 KiB |
BIN
.gitbook/assets/anytype-logo-360px.png
Normal file
After Width: | Height: | Size: 11 KiB |
|
@ -1,9 +1,10 @@
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://doc.anytype.io">
|
<a href="https://doc.anytype.io">
|
||||||
<img src="https://raw.githubusercontent.com/anytypeio/community/main/assets/anytype-docs-logo.svg" alt="Docs-Logo" width="180px" height="50px">
|
<img src=".gitbook/assets/anytype-logo-360px.png" alt="Docs-Logo" width="100px" height="100px">
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
|
||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
|
||||||
- [**Intro**](#Intro)
|
- [**Intro**](#Intro)
|
||||||
|
@ -100,17 +101,17 @@ You are welcome to propose any changes in PR and participate in discussion in [I
|
||||||
```
|
```
|
||||||
[URL Name](https://example.com)
|
[URL Name](https://example.com)
|
||||||
```
|
```
|
||||||
|
|
||||||
- 
|
- 
|
||||||
```
|
```
|
||||||

|

|
||||||
```
|
```
|
||||||
|
|
||||||
- `Inline Code`
|
- `Inline Code`
|
||||||
```
|
```
|
||||||
`Inline Code`
|
`Inline Code`
|
||||||
```
|
```
|
||||||
|
|
||||||
### Lists
|
### Lists
|
||||||
|
|
||||||
- **Un-Ordered List**
|
- **Un-Ordered List**
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
# Table of contents
|
# Table of contents
|
||||||
|
|
||||||
|
English | [简体中文](zh-CN/SUMMARY.md)
|
||||||
|
|
||||||
## Intro
|
## Intro
|
||||||
|
|
||||||
* [Documentation](README.md)
|
* [Documentation](README.md)
|
||||||
|
|
227
zh-CN/CONTRIBUTING.md
Normal file
|
@ -0,0 +1,227 @@
|
||||||
|
<p align="center">
|
||||||
|
<a href="https://doc.anytype.io">
|
||||||
|
<img src="../.gitbook/assets/anytype-logo-360px.png" alt="Docs-Logo" width="100px" height="100px">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
## 目录
|
||||||
|
|
||||||
|
- [**简介**](#Intro)
|
||||||
|
- [**贡献流程**](#contribution-process)
|
||||||
|
- [**文件结构**](#file-structure)
|
||||||
|
- [**约定**](#conventions)
|
||||||
|
- [**文本格式**](#text-formats)
|
||||||
|
- [**列表**](#lists)
|
||||||
|
- [**块(Blocks)**](#blocks)
|
||||||
|
- [**媒体**](#media)
|
||||||
|
|
||||||
|
## 简介
|
||||||
|
|
||||||
|
ℹ️我们要求所有用户在贡献文档之前阅读我们的 [行为守则](https://github.com/anytypeio/community/blob/main/README.md#code-of-conduct) 和 [Gitbook 公约](#conventions)。
|
||||||
|
欢迎在 PR 中提出任何修改建议,并参与 [改进 doc.anytype.io](https://community.anytype.io/t/improvements-for-doc-anytype-io/2862) 主题的讨论。请按照一下步骤进行贡献。如果你是 \_git\* 和/或 _GitHub_ 的新用户,我们建议你阅读 [GitHub 指南](https://guides.github.com/introduction/flow/)。
|
||||||
|
|
||||||
|
|
||||||
|
## 贡献流程
|
||||||
|
|
||||||
|
1. 分叉该版本库(Fork)
|
||||||
|
2. (可选)克隆分叉(Clone)
|
||||||
|
- 使用 SSH
|
||||||
|
```shell
|
||||||
|
git clone --filter=tree:0 git@github.com:anytypeio/community.git
|
||||||
|
```
|
||||||
|
- 使用 HTTPS
|
||||||
|
```shell
|
||||||
|
git clone --filter=tree:0 https://github.com/anytypeio/community.git
|
||||||
|
```
|
||||||
|
- 使用 GitHub CLI
|
||||||
|
```shell
|
||||||
|
gh repo clone anytypeio/community -- --filter=tree:0
|
||||||
|
```
|
||||||
|
3. 从 `main` 创建新的分支(branch)
|
||||||
|
4. 在新分支上进行更改
|
||||||
|
5. 提交并推送到新分支(Commit & push)
|
||||||
|
6. 提出拉取请求(pull request,PR)
|
||||||
|
7. 指定 [Vladimir](https://github.com/d1eselboy)、[Divyanshu](https://github.com/div3xi) 或 [Enda](https://github.com/endac) 为 PR 的审核人。
|
||||||
|
|
||||||
|
## 文件结构
|
||||||
|
|
||||||
|
* 文档中添加或删除的任何页面都需要添加到 [SUMMARY.md](https://github.com/anytypeio/docs/blob/main/SUMMARY.md) 文件的 **目录** 中。
|
||||||
|
* 缩进用于表示页面的嵌套(于子文件夹中)
|
||||||
|
* 使用 markdown 的 URL 表示方式来链接页面,例如:
|
||||||
|
```
|
||||||
|
[导航](https://github.com/anytypeio/docs/blob/main/features/navigation.md)
|
||||||
|
```
|
||||||
|
* 所有文件都以 **Markdown(.md)** 格式保存
|
||||||
|
* 对于子文件夹中的嵌套页面,需要被放在类别文件夹中。如果类别文件夹不存在,则你可以创建该文件夹
|
||||||
|
* 要使用图片,必须全部放在 [.gitbook/assets](https://github.com/anytypeio/docs/tree/main/.gitbook/assets) 文件夹中,然后从该文件夹中引用图片
|
||||||
|
> 所有媒体都应使用浅色模式
|
||||||
|
## 约定
|
||||||
|
|
||||||
|
> 以下是在 Gitbook 上创建 markdown 格式文档时要遵循的规则。请在进行任何修改时遵循这些规则。
|
||||||
|
|
||||||
|
### 文本格式
|
||||||
|
|
||||||
|
- # 一级标题
|
||||||
|
```
|
||||||
|
# 一级标题
|
||||||
|
```
|
||||||
|
|
||||||
|
- ## 二级标题
|
||||||
|
```
|
||||||
|
## 二级标题
|
||||||
|
```
|
||||||
|
|
||||||
|
- ### 三级标题
|
||||||
|
```
|
||||||
|
### 三级标题
|
||||||
|
```
|
||||||
|
|
||||||
|
- **粗体**
|
||||||
|
```
|
||||||
|
**粗体文本**
|
||||||
|
```
|
||||||
|
|
||||||
|
- *斜体*
|
||||||
|
```
|
||||||
|
_斜体文本_
|
||||||
|
```
|
||||||
|
|
||||||
|
- ~~删除线~~
|
||||||
|
```
|
||||||
|
~删除线文本~
|
||||||
|
```
|
||||||
|
|
||||||
|
- 水平分隔线
|
||||||
|
```
|
||||||
|
---
|
||||||
|
```
|
||||||
|
|
||||||
|
- [URL](#)
|
||||||
|
```
|
||||||
|
[URL 名称](https://example.com)
|
||||||
|
```
|
||||||
|
|
||||||
|
- 
|
||||||
|
```
|
||||||
|

|
||||||
|
```
|
||||||
|
|
||||||
|
- `行内代码`
|
||||||
|
```
|
||||||
|
`行内代码`
|
||||||
|
```
|
||||||
|
|
||||||
|
### 列表
|
||||||
|
|
||||||
|
- **无序列表**
|
||||||
|
```
|
||||||
|
* 项目 1
|
||||||
|
* 项目 2
|
||||||
|
* 项目 3
|
||||||
|
或
|
||||||
|
- 项目 1
|
||||||
|
- 项目 2
|
||||||
|
- 项目 3
|
||||||
|
```
|
||||||
|
|
||||||
|
- **有序列表**
|
||||||
|
```
|
||||||
|
1. 项目 1
|
||||||
|
2. 项目 2
|
||||||
|
3. 项目 3
|
||||||
|
```
|
||||||
|
|
||||||
|
- **任务列表**
|
||||||
|
```
|
||||||
|
* [ ] 未勾选任务
|
||||||
|
* [x] 已勾选任务
|
||||||
|
```
|
||||||
|
|
||||||
|
### 块(Blocks)
|
||||||
|
|
||||||
|
- **代码块**
|
||||||
|
```
|
||||||
|
``` 创建一个新代码块。
|
||||||
|
```py 使用 Python 语法高亮来创建一个新代码块。
|
||||||
|
```
|
||||||
|
|
||||||
|
- **引用**
|
||||||
|
```
|
||||||
|
使用 > 来开始一个引用块。
|
||||||
|
```
|
||||||
|
|
||||||
|
- **信息提示块**
|
||||||
|
```
|
||||||
|
{% hint style="info" %} 信息提示块 {% endhint %}
|
||||||
|
```
|
||||||
|
<p align="left">
|
||||||
|
<a href="https://doc.anytype.io">
|
||||||
|
<img src="https://raw.githubusercontent.com/anytypeio/community/main/assets/info-hints-block.png" alt="info-hints">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
- **警告提示块**
|
||||||
|
```
|
||||||
|
{% hint style="warning" %} 警告提示块 {% endhint %}
|
||||||
|
```
|
||||||
|
<p align="left">
|
||||||
|
<a href="https://doc.anytype.io">
|
||||||
|
<img src="https://raw.githubusercontent.com/anytypeio/community/main/assets/warning-hints-block.png" alt="warning-hints">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
- **成功提示块**
|
||||||
|
```
|
||||||
|
{% hint style="success" %} 成功提示块 {% endhint %}
|
||||||
|
```
|
||||||
|
<p align="left">
|
||||||
|
<a href="https://doc.anytype.io">
|
||||||
|
<img src="https://raw.githubusercontent.com/anytypeio/community/main/assets/success-hints-block.png" alt="success-hints">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
- **危险提示块**
|
||||||
|
```
|
||||||
|
{% hint style="danger" %} 危险提示块 {% endhint %}
|
||||||
|
```
|
||||||
|
<p align="left">
|
||||||
|
<a href="https://doc.anytype.io">
|
||||||
|
<img src="https://raw.githubusercontent.com/anytypeio/community/main/assets/danger-hint-block.png" alt="danger-hints">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
### 媒体
|
||||||
|
|
||||||
|
- **块:** 要创建一个媒体块,需要遵循以下约定
|
||||||
|
```
|
||||||
|

|
||||||
|
|
||||||
|
例:
|
||||||
|
|
||||||
|

|
||||||
|
```
|
||||||
|
当你添加媒体块时,如果正在编辑的页面处于子文件夹中,请使用在相对路径中适当次数的上层目录 `../` 以使嵌入生效。
|
||||||
|
|
||||||
|
- **文件存储:**任何媒体都必须先上传到 [.gitbook/assets/](https://github.com/anytypeio/docs/tree/main/.gitbook/assets) 文件夹。然后才可以在文档中使用。你可能会在现有的页面中看到 GitBook 独有的嵌入格式 `{% embed url=",但你不需要使用这种格式。
|
||||||
|
|
||||||
|
- **文件格式:**这些是在文档中上传媒体时唯一可接受的文件格式。
|
||||||
|
- **视频:**
|
||||||
|
|
||||||
|
> ✔ 仅使用 **MP4**
|
||||||
|
> ❌ 不要用 **gif** 或其他格式
|
||||||
|
|
||||||
|
- **图片:**
|
||||||
|
|
||||||
|
> ✔ 仅使用 **PNG** 和 **JPG** 图片
|
||||||
|
> ❌ 不要使用其他格式
|
||||||
|
|
||||||
|
- **大小限制:**每个上传媒体文件的大小限制为 **5 兆字节(MB)**。1000px 宽度的图片和视频仍然可以非常清晰地显示,将 4k 文件大小减少了大约 75%。
|
||||||
|
|
||||||
|
- **命名:**为了减少混淆,上传文件时,请以人类可读的格式重新命名你的文件
|
||||||
|
```
|
||||||
|
<图片标题>-<页面>.<文件格式>
|
||||||
|
|
||||||
|
例:
|
||||||
|
✔️ loadingscreen-intro.png
|
||||||
|
❌ Screenshot 2021-11-05 at 18.45.31.png
|
386
zh-CN/LICENSE
Normal file
|
@ -0,0 +1,386 @@
|
||||||
|
Attribution 4.0 International
|
||||||
|
|
||||||
|
=======================================================================
|
||||||
|
|
||||||
|
Creative Commons Corporation ("Creative Commons") is not a law firm and
|
||||||
|
does not provide legal services or legal advice. Distribution of
|
||||||
|
Creative Commons public licenses does not create a lawyer-client or
|
||||||
|
other relationship. Creative Commons makes its licenses and related
|
||||||
|
information available on an "as-is" basis. Creative Commons gives no
|
||||||
|
warranties regarding its licenses, any material licensed under their
|
||||||
|
terms and conditions, or any related information. Creative Commons
|
||||||
|
disclaims all liability for damages resulting from their use to the
|
||||||
|
fullest extent possible.
|
||||||
|
|
||||||
|
Using Creative Commons Public Licenses
|
||||||
|
|
||||||
|
Creative Commons public licenses provide a standard set of terms and
|
||||||
|
conditions that creators and other rights holders may use to share
|
||||||
|
original works of authorship and other material subject to copyright
|
||||||
|
and certain other rights specified in the public license below. The
|
||||||
|
following considerations are for informational purposes only, are not
|
||||||
|
exhaustive, and do not form part of our licenses.
|
||||||
|
|
||||||
|
Considerations for licensors: Our public licenses are
|
||||||
|
intended for use by those authorized to give the public
|
||||||
|
permission to use material in ways otherwise restricted by
|
||||||
|
copyright and certain other rights. Our licenses are
|
||||||
|
irrevocable. Licensors should read and understand the terms
|
||||||
|
and conditions of the license they choose before applying it.
|
||||||
|
Licensors should also secure all rights necessary before
|
||||||
|
applying our licenses so that the public can reuse the
|
||||||
|
material as expected. Licensors should clearly mark any
|
||||||
|
material not subject to the license. This includes other CC-
|
||||||
|
licensed material, or material used under an exception or
|
||||||
|
limitation to copyright. More considerations for licensors:
|
||||||
|
wiki.creativecommons.org/Considerations_for_licensors
|
||||||
|
|
||||||
|
Considerations for the public: By using one of our public
|
||||||
|
licenses, a licensor grants the public permission to use the
|
||||||
|
licensed material under specified terms and conditions. If
|
||||||
|
the licensor's permission is not necessary for any reason--for
|
||||||
|
example, because of any applicable exception or limitation to
|
||||||
|
copyright--then that use is not regulated by the license. Our
|
||||||
|
licenses grant only permissions under copyright and certain
|
||||||
|
other rights that a licensor has authority to grant. Use of
|
||||||
|
the licensed material may still be restricted for other
|
||||||
|
reasons, including because others have copyright or other
|
||||||
|
rights in the material. A licensor may make special requests,
|
||||||
|
such as asking that all changes be marked or described.
|
||||||
|
Although not required by our licenses, you are encouraged to
|
||||||
|
respect those requests where reasonable. More considerations
|
||||||
|
for the public:
|
||||||
|
wiki.creativecommons.org/Considerations_for_licensees
|
||||||
|
|
||||||
|
=======================================================================
|
||||||
|
|
||||||
|
Creative Commons Attribution 4.0 International Public License
|
||||||
|
|
||||||
|
By exercising the Licensed Rights (defined below), You accept and agree
|
||||||
|
to be bound by the terms and conditions of this Creative Commons
|
||||||
|
Attribution 4.0 International Public License ("Public License"). To the
|
||||||
|
extent this Public License may be interpreted as a contract, You are
|
||||||
|
granted the Licensed Rights in consideration of Your acceptance of
|
||||||
|
these terms and conditions, and the Licensor grants You such rights in
|
||||||
|
consideration of benefits the Licensor receives from making the
|
||||||
|
Licensed Material available under these terms and conditions.
|
||||||
|
|
||||||
|
Section 1 -- Definitions.
|
||||||
|
|
||||||
|
a. Adapted Material means material subject to Copyright and Similar
|
||||||
|
Rights that is derived from or based upon the Licensed Material
|
||||||
|
and in which the Licensed Material is translated, altered,
|
||||||
|
arranged, transformed, or otherwise modified in a manner requiring
|
||||||
|
permission under the Copyright and Similar Rights held by the
|
||||||
|
Licensor. For purposes of this Public License, where the Licensed
|
||||||
|
Material is a musical work, performance, or sound recording,
|
||||||
|
Adapted Material is always produced where the Licensed Material is
|
||||||
|
synched in timed relation with a moving image.
|
||||||
|
|
||||||
|
b. Adapter's License means the license You apply to Your Copyright
|
||||||
|
and Similar Rights in Your contributions to Adapted Material in
|
||||||
|
accordance with the terms and conditions of this Public License.
|
||||||
|
|
||||||
|
c. Copyright and Similar Rights means copyright and/or similar rights
|
||||||
|
closely related to copyright including, without limitation,
|
||||||
|
performance, broadcast, sound recording, and Sui Generis Database
|
||||||
|
Rights, without regard to how the rights are labeled or
|
||||||
|
categorized. For purposes of this Public License, the rights
|
||||||
|
specified in Section 2(b)(1)-(2) are not Copyright and Similar
|
||||||
|
Rights.
|
||||||
|
|
||||||
|
d. Effective Technological Measures means those measures that, in the
|
||||||
|
absence of proper authority, may not be circumvented under laws
|
||||||
|
fulfilling obligations under Article 11 of the WIPO Copyright
|
||||||
|
Treaty adopted on December 20, 1996, and/or similar international
|
||||||
|
agreements.
|
||||||
|
|
||||||
|
e. Exceptions and Limitations means fair use, fair dealing, and/or
|
||||||
|
any other exception or limitation to Copyright and Similar Rights
|
||||||
|
that applies to Your use of the Licensed Material.
|
||||||
|
|
||||||
|
f. Licensed Material means the artistic or literary work, database,
|
||||||
|
or other material to which the Licensor applied this Public
|
||||||
|
License.
|
||||||
|
|
||||||
|
g. Licensed Rights means the rights granted to You subject to the
|
||||||
|
terms and conditions of this Public License, which are limited to
|
||||||
|
all Copyright and Similar Rights that apply to Your use of the
|
||||||
|
Licensed Material and that the Licensor has authority to license.
|
||||||
|
|
||||||
|
h. Licensor means the individual(s) or entity(ies) granting rights
|
||||||
|
under this Public License.
|
||||||
|
|
||||||
|
i. Share means to provide material to the public by any means or
|
||||||
|
process that requires permission under the Licensed Rights, such
|
||||||
|
as reproduction, public display, public performance, distribution,
|
||||||
|
dissemination, communication, or importation, and to make material
|
||||||
|
available to the public including in ways that members of the
|
||||||
|
public may access the material from a place and at a time
|
||||||
|
individually chosen by them.
|
||||||
|
|
||||||
|
j. Sui Generis Database Rights means rights other than copyright
|
||||||
|
resulting from Directive 96/9/EC of the European Parliament and of
|
||||||
|
the Council of 11 March 1996 on the legal protection of databases,
|
||||||
|
as amended and/or succeeded, as well as other essentially
|
||||||
|
equivalent rights anywhere in the world.
|
||||||
|
|
||||||
|
k. You means the individual or entity exercising the Licensed Rights
|
||||||
|
under this Public License. Your has a corresponding meaning.
|
||||||
|
|
||||||
|
Section 2 -- Scope.
|
||||||
|
|
||||||
|
a. License grant.
|
||||||
|
|
||||||
|
1. Subject to the terms and conditions of this Public License,
|
||||||
|
the Licensor hereby grants You a worldwide, royalty-free,
|
||||||
|
non-sublicensable, non-exclusive, irrevocable license to
|
||||||
|
exercise the Licensed Rights in the Licensed Material to:
|
||||||
|
|
||||||
|
a. reproduce and Share the Licensed Material, in whole or
|
||||||
|
in part; and
|
||||||
|
|
||||||
|
b. produce, reproduce, and Share Adapted Material.
|
||||||
|
|
||||||
|
2. Exceptions and Limitations. For the avoidance of doubt, where
|
||||||
|
Exceptions and Limitations apply to Your use, this Public
|
||||||
|
License does not apply, and You do not need to comply with
|
||||||
|
its terms and conditions.
|
||||||
|
|
||||||
|
3. Term. The term of this Public License is specified in Section
|
||||||
|
6(a).
|
||||||
|
|
||||||
|
4. Media and formats; technical modifications allowed. The
|
||||||
|
Licensor authorizes You to exercise the Licensed Rights in
|
||||||
|
all media and formats whether now known or hereafter created,
|
||||||
|
and to make technical modifications necessary to do so. The
|
||||||
|
Licensor waives and/or agrees not to assert any right or
|
||||||
|
authority to forbid You from making technical modifications
|
||||||
|
necessary to exercise the Licensed Rights, including
|
||||||
|
technical modifications necessary to circumvent Effective
|
||||||
|
Technological Measures. For purposes of this Public License,
|
||||||
|
simply making modifications authorized by this Section 2(a)
|
||||||
|
(4) never produces Adapted Material.
|
||||||
|
|
||||||
|
5. Downstream recipients.
|
||||||
|
|
||||||
|
a. Offer from the Licensor -- Licensed Material. Every
|
||||||
|
recipient of the Licensed Material automatically
|
||||||
|
receives an offer from the Licensor to exercise the
|
||||||
|
Licensed Rights under the terms and conditions of this
|
||||||
|
Public License.
|
||||||
|
|
||||||
|
b. No downstream restrictions. You may not offer or impose
|
||||||
|
any additional or different terms or conditions on, or
|
||||||
|
apply any Effective Technological Measures to, the
|
||||||
|
Licensed Material if doing so restricts exercise of the
|
||||||
|
Licensed Rights by any recipient of the Licensed
|
||||||
|
Material.
|
||||||
|
|
||||||
|
6. No endorsement. Nothing in this Public License constitutes or
|
||||||
|
may be construed as permission to assert or imply that You
|
||||||
|
are, or that Your use of the Licensed Material is, connected
|
||||||
|
with, or sponsored, endorsed, or granted official status by,
|
||||||
|
the Licensor or others designated to receive attribution as
|
||||||
|
provided in Section 3(a)(1)(A)(i).
|
||||||
|
|
||||||
|
b. Other rights.
|
||||||
|
|
||||||
|
1. Moral rights, such as the right of integrity, are not
|
||||||
|
licensed under this Public License, nor are publicity,
|
||||||
|
privacy, and/or other similar personality rights; however, to
|
||||||
|
the extent possible, the Licensor waives and/or agrees not to
|
||||||
|
assert any such rights held by the Licensor to the limited
|
||||||
|
extent necessary to allow You to exercise the Licensed
|
||||||
|
Rights, but not otherwise.
|
||||||
|
|
||||||
|
2. Patent and trademark rights are not licensed under this
|
||||||
|
Public License.
|
||||||
|
|
||||||
|
3. To the extent possible, the Licensor waives any right to
|
||||||
|
collect royalties from You for the exercise of the Licensed
|
||||||
|
Rights, whether directly or through a collecting society
|
||||||
|
under any voluntary or waivable statutory or compulsory
|
||||||
|
licensing scheme. In all other cases the Licensor expressly
|
||||||
|
reserves any right to collect such royalties.
|
||||||
|
|
||||||
|
Section 3 -- License Conditions.
|
||||||
|
|
||||||
|
Your exercise of the Licensed Rights is expressly made subject to the
|
||||||
|
following conditions.
|
||||||
|
|
||||||
|
a. Attribution.
|
||||||
|
|
||||||
|
1. If You Share the Licensed Material (including in modified
|
||||||
|
form), You must:
|
||||||
|
|
||||||
|
a. retain the following if it is supplied by the Licensor
|
||||||
|
with the Licensed Material:
|
||||||
|
|
||||||
|
i. identification of the creator(s) of the Licensed
|
||||||
|
Material and any others designated to receive
|
||||||
|
attribution, in any reasonable manner requested by
|
||||||
|
the Licensor (including by pseudonym if
|
||||||
|
designated);
|
||||||
|
|
||||||
|
ii. a copyright notice;
|
||||||
|
|
||||||
|
iii. a notice that refers to this Public License;
|
||||||
|
|
||||||
|
iv. a notice that refers to the disclaimer of
|
||||||
|
warranties;
|
||||||
|
|
||||||
|
v. a URI or hyperlink to the Licensed Material to the
|
||||||
|
extent reasonably practicable;
|
||||||
|
|
||||||
|
b. indicate if You modified the Licensed Material and
|
||||||
|
retain an indication of any previous modifications; and
|
||||||
|
|
||||||
|
c. indicate the Licensed Material is licensed under this
|
||||||
|
Public License, and include the text of, or the URI or
|
||||||
|
hyperlink to, this Public License.
|
||||||
|
|
||||||
|
2. You may satisfy the conditions in Section 3(a)(1) in any
|
||||||
|
reasonable manner based on the medium, means, and context in
|
||||||
|
which You Share the Licensed Material. For example, it may be
|
||||||
|
reasonable to satisfy the conditions by providing a URI or
|
||||||
|
hyperlink to a resource that includes the required
|
||||||
|
information.
|
||||||
|
|
||||||
|
3. If requested by the Licensor, You must remove any of the
|
||||||
|
information required by Section 3(a)(1)(A) to the extent
|
||||||
|
reasonably practicable.
|
||||||
|
|
||||||
|
4. If You Share Adapted Material You produce, the Adapter's
|
||||||
|
License You apply must not prevent recipients of the Adapted
|
||||||
|
Material from complying with this Public License.
|
||||||
|
|
||||||
|
Section 4 -- Sui Generis Database Rights.
|
||||||
|
|
||||||
|
Where the Licensed Rights include Sui Generis Database Rights that
|
||||||
|
apply to Your use of the Licensed Material:
|
||||||
|
|
||||||
|
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
|
||||||
|
to extract, reuse, reproduce, and Share all or a substantial
|
||||||
|
portion of the contents of the database;
|
||||||
|
|
||||||
|
b. if You include all or a substantial portion of the database
|
||||||
|
contents in a database in which You have Sui Generis Database
|
||||||
|
Rights, then the database in which You have Sui Generis Database
|
||||||
|
Rights (but not its individual contents) is Adapted Material; and
|
||||||
|
|
||||||
|
c. You must comply with the conditions in Section 3(a) if You Share
|
||||||
|
all or a substantial portion of the contents of the database.
|
||||||
|
|
||||||
|
For the avoidance of doubt, this Section 4 supplements and does not
|
||||||
|
replace Your obligations under this Public License where the Licensed
|
||||||
|
Rights include other Copyright and Similar Rights.
|
||||||
|
|
||||||
|
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
|
||||||
|
|
||||||
|
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
|
||||||
|
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
|
||||||
|
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
|
||||||
|
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
|
||||||
|
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
|
||||||
|
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
|
||||||
|
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
|
||||||
|
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
|
||||||
|
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
|
||||||
|
|
||||||
|
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
|
||||||
|
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
|
||||||
|
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
|
||||||
|
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
|
||||||
|
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
|
||||||
|
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
|
||||||
|
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
|
||||||
|
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
|
||||||
|
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
|
||||||
|
|
||||||
|
c. The disclaimer of warranties and limitation of liability provided
|
||||||
|
above shall be interpreted in a manner that, to the extent
|
||||||
|
possible, most closely approximates an absolute disclaimer and
|
||||||
|
waiver of all liability.
|
||||||
|
|
||||||
|
Section 6 -- Term and Termination.
|
||||||
|
|
||||||
|
a. This Public License applies for the term of the Copyright and
|
||||||
|
Similar Rights licensed here. However, if You fail to comply with
|
||||||
|
this Public License, then Your rights under this Public License
|
||||||
|
terminate automatically.
|
||||||
|
|
||||||
|
b. Where Your right to use the Licensed Material has terminated under
|
||||||
|
Section 6(a), it reinstates:
|
||||||
|
|
||||||
|
1. automatically as of the date the violation is cured, provided
|
||||||
|
it is cured within 30 days of Your discovery of the
|
||||||
|
violation; or
|
||||||
|
|
||||||
|
2. upon express reinstatement by the Licensor.
|
||||||
|
|
||||||
|
For the avoidance of doubt, this Section 6(b) does not affect any
|
||||||
|
right the Licensor may have to seek remedies for Your violations
|
||||||
|
of this Public License.
|
||||||
|
|
||||||
|
c. For the avoidance of doubt, the Licensor may also offer the
|
||||||
|
Licensed Material under separate terms or conditions or stop
|
||||||
|
distributing the Licensed Material at any time; however, doing so
|
||||||
|
will not terminate this Public License.
|
||||||
|
|
||||||
|
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
|
||||||
|
License.
|
||||||
|
|
||||||
|
Section 7 -- Other Terms and Conditions.
|
||||||
|
|
||||||
|
a. The Licensor shall not be bound by any additional or different
|
||||||
|
terms or conditions communicated by You unless expressly agreed.
|
||||||
|
|
||||||
|
b. Any arrangements, understandings, or agreements regarding the
|
||||||
|
Licensed Material not stated herein are separate from and
|
||||||
|
independent of the terms and conditions of this Public License.
|
||||||
|
|
||||||
|
Section 8 -- Interpretation.
|
||||||
|
|
||||||
|
a. For the avoidance of doubt, this Public License does not, and
|
||||||
|
shall not be interpreted to, reduce, limit, restrict, or impose
|
||||||
|
conditions on any use of the Licensed Material that could lawfully
|
||||||
|
be made without permission under this Public License.
|
||||||
|
|
||||||
|
b. To the extent possible, if any provision of this Public License is
|
||||||
|
deemed unenforceable, it shall be automatically reformed to the
|
||||||
|
minimum extent necessary to make it enforceable. If the provision
|
||||||
|
cannot be reformed, it shall be severed from this Public License
|
||||||
|
without affecting the enforceability of the remaining terms and
|
||||||
|
conditions.
|
||||||
|
|
||||||
|
c. No term or condition of this Public License will be waived and no
|
||||||
|
failure to comply consented to unless expressly agreed to by the
|
||||||
|
Licensor.
|
||||||
|
|
||||||
|
d. Nothing in this Public License constitutes or may be interpreted
|
||||||
|
as a limitation upon, or waiver of, any privileges and immunities
|
||||||
|
that apply to the Licensor or You, including from the legal
|
||||||
|
processes of any jurisdiction or authority.
|
||||||
|
|
||||||
|
=======================================================================
|
||||||
|
|
||||||
|
Creative Commons is not a party to its public
|
||||||
|
licenses. Notwithstanding, Creative Commons may elect to apply one of
|
||||||
|
its public licenses to material it publishes and in those instances
|
||||||
|
will be considered the “Licensor.” The text of the Creative Commons
|
||||||
|
public licenses is dedicated to the public domain under the CC0 Public
|
||||||
|
Domain Dedication. Except for the limited purpose of indicating that
|
||||||
|
material is shared under a Creative Commons public license or as
|
||||||
|
otherwise permitted by the Creative Commons policies published at
|
||||||
|
creativecommons.org/policies, Creative Commons does not authorize the
|
||||||
|
use of the trademark "Creative Commons" or any other trademark or logo
|
||||||
|
of Creative Commons without its prior written consent including,
|
||||||
|
without limitation, in connection with any unauthorized modifications
|
||||||
|
to any of its public licenses or any other arrangements,
|
||||||
|
understandings, or agreements concerning use of licensed material. For
|
||||||
|
the avoidance of doubt, this paragraph does not form part of the
|
||||||
|
public licenses.
|
||||||
|
|
||||||
|
Creative Commons may be contacted at creativecommons.org.
|
153
zh-CN/README.md
|
@ -1,152 +1,23 @@
|
||||||
---
|
---
|
||||||
description: Contributed by our user Roland
|
description: >-
|
||||||
|
Here you'll find guides, glossaries, and tutorials to help you on your Anytype
|
||||||
|
journey.
|
||||||
---
|
---
|
||||||
|
|
||||||
# 基本概念介绍
|
# 文档
|
||||||
|
|
||||||
前言
|
{% embed url="https://www.youtube.com/watch?v=dh_3NHY5eVs" %}
|
||||||
|
|
||||||
因为我自己的认识并不是从官方的资料中来,而是自己在使用过程中摸索出来的,所以可能与官方描述存在偏差,仅作为参考。
|
Anytype 是一款本地优先的端对端(E2E)加密软件,旨在作为创建和存储数字资产的安全场所。
|
||||||
|
|
||||||
我将分层级介绍Anytype中几个重要功能的概念。
|
你可以使用 Anytype 创建并连接你的任务、笔记、想法、文档、工作流程等。
|
||||||
|
|
||||||
关于这些概念,有必要先打一个预防针,Anytype在笔记形式的理念上是相较于大多数笔记软件是要更加前卫,下文提到的概念的名字,即使是在英语中也不能够只从字面上去理解,这些功能的真正的名字或许还没有在这个时代诞生,现在所用的名字只是借用了一些可能会在某方面相似的概念的名字,如果从这些名字来看,我们对于它们所习惯的用法可能会让我们的认知产生误解,所以最好将这些名字作为代号来看待,名字和定义都不去管吧,最好从这些功能能够怎么去用的角度去感受它们的实质。
|
未来的版本将允许你与其他人共享工作并且安全地开展协作。我们的长期愿景是让 Anytype 实现大规模协作,创建一个全球互联的知识存储库。
|
||||||
|
|
||||||
本篇内容,只需要看看,在本篇的介绍完成之后,会另有下文去介绍我如何去使用Anytype,在后文的用例中更能体现一些深入的理解,这会比琢磨定义和意思更直接。
|
浏览这里的文档,了解关于产品使用、账户故障排除和数据隐私的更多信息。
|
||||||
|
|
||||||
另外,我的用法不一定适合大家,但是相信大家可以从我的用法中找到可以借鉴的点,希望我的分享可以让更多人少走我所走的弯路。
|
如需了解更多信息,请访问我们的 [网站](https://anytype.io) 或 [常见问题](https://anytype.io/faq/) 页面。
|
||||||
|
|
||||||
#### Object、Type、Relation
|
### 精选指南
|
||||||
|
|
||||||
**Object**
|
<table data-view="cards"><thead><tr><th></th><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th><th data-hidden data-card-cover data-type="files"></th></tr></thead><tbody><tr><td><strong>深入探讨:对象集</strong></td><td>了解如何通过对象集将你的工作效率提升 10 倍</td><td></td><td><a href="basics/sets/deep-dive-sets.md">deep-dive-sets.md</a></td><td><a href="../.gitbook/assets/Screenshot 2023-05-30 at 14.59.37.png">Screenshot 2023-05-30 at 14.59.37.png</a></td></tr><tr><td><strong>每日日志</strong></td><td>在你的私人空间中培养每天写日记的习惯</td><td></td><td><a href="use-cases/anytype-editor.md">anytype-editor.md</a></td><td><a href="../.gitbook/assets/Screenshot 2023-05-31 at 09.49.05.png">Screenshot 2023-05-31 at 09.49.05.png</a></td></tr><tr><td><strong>旅行 Wiki</strong></td><td>将一切内容整合到一个能够离线访问的地方</td><td></td><td><a href="use-cases/travel-wiki.md">travel-wiki.md</a></td><td><a href="../.gitbook/assets/Screenshot 2023-05-31 at 09.47.46 (1).png">Screenshot 2023-05-31 at 09.47.46 (1).png</a></td></tr></tbody></table>
|
||||||
|
|
||||||
在Anytype中,我们的每一条笔记及类似的东西,被称为Object。
|
|
||||||
|
|
||||||
**Type**
|
|
||||||
|
|
||||||
不同类型的笔记、对象应该被用不同的方式管理,这是我们划分type的好处。
|
|
||||||
|
|
||||||
不同的type可以分别设置不同的模版和其他参数。
|
|
||||||
|
|
||||||
**Relation**
|
|
||||||
|
|
||||||
Relation是从Notion的Database演化而来的,区别在于:Relation能够更加灵活地与Object产生联系。
|
|
||||||
|
|
||||||
Relation的主要用途是从各个角度描述Object,就像是一个Object的各方面参数一样,以便于后续筛选、排序与关系整理。
|
|
||||||
|
|
||||||
Relation的细分类如图所示。
|
|
||||||
|
|
||||||
<figure><img src="https://lh4.googleusercontent.com/VHcTvl7yMA-SvEMyGRTp3mykoWESuoHgROXwcyLGnFuwdg0vcoYRFZ5nJjM6ctvfL7EcgHEogn6JFbrbKKH90ow4mjgrwQTXEPnzMcNEHfeB4joxImzoGiOZ34goRwtG322E_VZZ4c536KYjpcAGvieql3bXrQag" alt=""><figcaption></figcaption></figure>
|
|
||||||
|
|
||||||
#### Set、Collection
|
|
||||||
|
|
||||||
在Anytype中,我们无法直接在type的界面对属于这个type的object进行修改,需要在set和collection中进行操作。
|
|
||||||
|
|
||||||
**Set**
|
|
||||||
|
|
||||||
set,意为数学概念中的“集合”,我们可以从type的页面处创建
|
|
||||||
|
|
||||||
<figure><img src="https://lh4.googleusercontent.com/xWHkmtuuXvM7WZKUScZBJ6kqD0cYhKfhVxBVLXFrIKWIAwgp1ATOTdsTwWl6QZ2RmUWhO728jygX5HqcWsadgy3OL6jIwwqHjJnFVFYIDhgqSxdCpXC1hnAegQpi_xj_xpbnoNlsAxLzDJPGbZvsfv7kFGhpng53" alt=""><figcaption></figcaption></figure>
|
|
||||||
|
|
||||||
然后,这个type的所有object将会显示在set页面中,对于每一个type,我们都能够进行这个操作来创造出对应的set来管理,不过建议用到的时候再说。
|
|
||||||
|
|
||||||
一个set下可以有多个视图,如图红框所示。在每一个视图下可以进行筛选、排序、选择视图类型(网格、画廊、列表、看板)。在最新的beta版本中,每个视图可以选择这个视图下创建object时的默认模版。
|
|
||||||
|
|
||||||
<figure><img src="https://lh5.googleusercontent.com/kTUmzJ0JN4lAQNxa_tEh-TNy1YOwsqmg3X3OOLKVZzjiDbQrHM1uAj1SrEePLsIyAI4wKXxDBqBShQKj7uurP2rf87dwfwQIxPSKtaY5ZYxZdzE1_zLOUOYCrwwiUS0bQjBSFzRuSsilsJ3AUbSvQKRhAN1T5akS" alt=""><figcaption></figcaption></figure>
|
|
||||||
|
|
||||||
关于set的使用方法建议,会在下方用例分享的部分中展开说明。
|
|
||||||
|
|
||||||
**Collection**
|
|
||||||
|
|
||||||
Collection是一种特殊的set,set里面只会有对应type的object,而Collection里面可以含有多种type。
|
|
||||||
|
|
||||||
我们可以在collection里面创建Object;
|
|
||||||
|
|
||||||
也可以将已有的Object连接到Collection,如此一来这个Object也会显示在Collection里面。
|
|
||||||
|
|
||||||
#### Tag(Relation)
|
|
||||||
|
|
||||||
这些概念基本介绍完了,这里再单独介绍一下Tag这个Relation类型,它将会是后面用例文章中实现无层级无文件夹结构化的关键抓手。
|
|
||||||
|
|
||||||
我们可以创建一个tag类型的Relation,名字可以自己设置,这里以“测试Tag”为例。
|
|
||||||
|
|
||||||
可以输入来选择已有的Tag或者创建一个新Tag
|
|
||||||
|
|
||||||
<figure><img src="https://lh3.googleusercontent.com/1-k_qukc__r7FGx2QNUghqHQ0FReyjRG9-qHavNthpGvFdAreXHOoZO27n1-ZSGqbyxpIRfek-w5uGpxns4nRYUMqI5CZYMgdYIcY_jJ6L4NUAQtA6AfNmkmFG-b8rL2oPKkW50beGsK3S57oEzkeCFBiUT_eE7w" alt=""><figcaption></figcaption></figure>
|
|
||||||
|
|
||||||
当然不仅可以有一个tag的relation,这里就有很大的发挥空间了。
|
|
||||||
|
|
||||||
<figure><img src="https://lh5.googleusercontent.com/MvhP2tfMhLhMbLRACY-zhYW42n7XwSgFkGMTltl1EiNbO4qrnotxuE1z-T6Jh_jLkXf0Q8kDdNaeKSBBwPcW6I0eF5oJ38_WkD0gk0pBVVZUkxO4dKMypyKGlKkiNiw6_4SzExhICiKVyuSKAFYgfh3PdKR8-eLU" alt=""><figcaption></figcaption></figure>
|
|
||||||
|
|
||||||
大概的功能介绍这里就结束了,总结来说,对于Anytype中的概念,与其去纠结名字和定义,关注它们能够用来做什么,能够比较有效地认识。
|
|
||||||
|
|
||||||
#### 个人用例分享——Set的使用模式建议
|
|
||||||
|
|
||||||
**前言**
|
|
||||||
|
|
||||||
这一部分将介绍个人使用Anytype过程中建立起来的一个模式,看之前建议先看《Anytype入门1——基础功能的了解》。
|
|
||||||
|
|
||||||
因为每个人的需求和使用目标可能有无法预料的差异,因此用法仅作参考,不过我相信我的用法多少能给大家带来一些启发。
|
|
||||||
|
|
||||||
**这种方法的特点**
|
|
||||||
|
|
||||||
契合原子化的结构,不需要文件夹结构和层级结构
|
|
||||||
|
|
||||||
利用标签进行结构化,支持灵活分类,支持交叉分类
|
|
||||||
|
|
||||||
**使用更少的Type进行管理**
|
|
||||||
|
|
||||||
虽然按不同的Type进行管理会有其好处,但是过度地划分Type也会存在隐患。
|
|
||||||
|
|
||||||
在Anytype中,Object必然属于某一Type(不存在不属于任何Type的Object),并且Object的Type只能有一个(不存在同时属于多个Type的Object)。
|
|
||||||
|
|
||||||
因此,如果Type分的太多,很容易产生“这个Object要属于哪个Type”的问题。
|
|
||||||
|
|
||||||
因此我从一开始的细分type(如日记、日语词汇、英语词汇、想法记录、词条等等)的模式转向大type模式(除特殊类型的Object外,一律使用Page这个type管理),将分类这个事情从多个type之间转移到type内部。
|
|
||||||
|
|
||||||
**使用Tag进行Type内部的灵活分类**
|
|
||||||
|
|
||||||
在基本概念介绍的部分中,已经提到过,Tag可以用来灵活分类。
|
|
||||||
|
|
||||||
在我的Page这个type中,几乎包含了我大多数的的Object,我主要使用Tag来管理它们。
|
|
||||||
|
|
||||||
<figure><img src="https://lh6.googleusercontent.com/9YNXjyNywK02V7JNUK95BWqRhiQ_o7s37WXkQw2QURrLAwpTckzMMhtBd3ca3w6JW7WvXDUdFRQTv07zGs_Ecwz-8xgbNa0b-r6B2gb5qW--G5dKDCWYSWtvURVWvTZqiDwPhnyV4X4dhFWPGvq2JWXnXcPGOoUI" alt="" width="375"><figcaption></figcaption></figure>
|
|
||||||
|
|
||||||
为了方便自己着重地浏览某个小类的Page,比如所有的摘录,我会在Set的选项卡这里新建一个选项卡,在Page的基础上筛选出所有Page类型这个Relation中包含摘录这个标签的页面。
|
|
||||||
|
|
||||||
<figure><img src="https://lh6.googleusercontent.com/s91Pgl7dEshMLbZL6ZtDTZdJJDMdW1YbDMGWICqupNIZtJJ9yRkcJjz-A8T85WKCG0gBFfVwxVQt595DA5JEP7OQ8Ju3vcHAMY_9Jjhdp2vVuof5Is-wOncFPn4kVQZB_nCHsAGJngVDQPbBCvh0iuIsa32W17H_" alt=""><figcaption></figcaption></figure>
|
|
||||||
|
|
||||||
筛选出来效果如下图
|
|
||||||
|
|
||||||
<figure><img src="https://lh6.googleusercontent.com/rQBnOGAr9gBZYX0SkHzftWCJAzrtzEsBEcF7o7V8Q7QX2qQOK_aJZ8FLFVFgCUEnBEAU24N4HkMF4lawniRyevk3i7Aw6VLVh54KWY1PM9uVP4eZfDRkDsBSYXICrpO9TzOne2A-HRmC6-PFudBypQYeq1PMjmn8" alt=""><figcaption></figcaption></figure>
|
|
||||||
|
|
||||||
为了方便大家理解我将Page类型在这个页面也展示出来了。
|
|
||||||
|
|
||||||
我们还可以根据这个小类的特点进行特别的管理,比如摘录这个类型的Page大多数都使用了“作者”这个Relation,我们在这个标签页中可以单独地显示出来。
|
|
||||||
|
|
||||||
这个筛选结果和设置显示出来的Relation,是保留并且维持下去的,不需要每一次打开都重新设置,我们可以修改标签页的名字为“摘录”来提醒自己这是这个页面显示的全是摘录。
|
|
||||||
|
|
||||||
\
|
|
||||||
**各个视图下设置默认模版**
|
|
||||||
|
|
||||||
在最近的0.34.0版本更新后,我们为每个视图设置单独的默认模版,这样一来我这种用法会更加的顺畅,可以根据为Page Type下面的每个小类单独设置默认模版。
|
|
||||||
|
|
||||||
<figure><img src="https://lh3.googleusercontent.com/L55edepq-7yuybCBCZXX43cbVcltyHYWfvTEtLYhZZLtXYGv4FirwrJ-Qn_i8lpWD8tBriTKse6bzZYPCzo30au8_0dHKx2PaSeUO2V0FU4xQ1kEFeAwHLzpFCOuoGojja2v_tgOacbrc5rus6di7YnSniAkSj6U" alt=""><figcaption></figcaption></figure>
|
|
||||||
|
|
||||||
**Tag的使用心得**
|
|
||||||
|
|
||||||
在Anytype中,同一个Tag的Relation,包含的所有标签是互通的(已经存在的标签会成为后续添加标签的可选项),我为了更好的管理这些标签,在每个type下面创造了对应分类用的Tag Reletion,如Page Type下我会用“Page类型”这个Tag Relation进行管理,而Human type则用“Human类型”进行管理,这样子它们之间的选项不会串。
|
|
||||||
|
|
||||||
Tag的灵活分类,使得我们在设立分类的时候不需要考虑两种类型是否互斥,例如我用来管理Page的类型有主题笔记、词条、手稿、灵感记录、想法记录、清单记录、日记、中文词汇、日文词汇。
|
|
||||||
|
|
||||||
可以看到,这些分类中有一些很暧昧,一些的划分角度跟另外一些看起来有明显的区别,这就是Tag分类的灵活性——我们不需要预先对分类进行严格的划分、不需要保证他们是互斥的、不需要强制自己按特定的角度进行划分。
|
|
||||||
|
|
||||||
而对于Object来说,我们既可以是它不属于任何一个分类,也可以同时属于多个分类,很灵活。
|
|
||||||
|
|
||||||
个人对于Tag在这方面发挥的作用,比起分类更像是“助记词”,因此打标签的时候,我会更加的随心,按照自己的想法来。等到我需要找到这个页面的时候,我就可以很自然地想起这个页面是什么标签,因而快速地筛选出来。这种助记词一样的tag使用方法,在原子化的笔记结构中是很好用的,当软件中的object多起来的时候,会体现的更加明显。
|
|
||||||
|
|
||||||
**该用法的额外好处——原子化结构的进一步体现**
|
|
||||||
|
|
||||||
使用上述的方法可以对内容进行灵活分类且允许交叉分类,回到跟Notion等软件的Database Like功能中去对比的话,我们发现,其他软件中的Database的结构和用法受到了其表格形式的限制,可以视为一个加强版的表格,但是其下内容的组织也受到了表格使用习惯的影响——我们必须决定这个表格的主题后才能进行其中内容的写入,也就是说,我们在写入的时候必须先考虑好我们之后要以什么样的主题、视角去使用。
|
|
||||||
|
|
||||||
而我在上面所推荐的用法,则切断了这种绑定,我们可以像用其他软件一样地去组织内容(即我原先使用的大Type模式,或者使用Collection按特定的角度或者主题去组织起来),但也有了这以外的选择。这意味着我们在创建和编辑Object的时候不再需要考虑实际使用的时候要采用什么角度,这导向了一种更加无摩擦、无感的笔记使用方式——内容的创造和使用脱离了彼此的束缚,自由地创造以及自由地从各个角度组织、使用起来。
|
|
||||||
|
|
|
@ -1,3 +1,93 @@
|
||||||
# Table of contents
|
# 目录
|
||||||
|
|
||||||
* [基本概念介绍](README.md)
|
[English](../SUMMARY.md) | 简体中文
|
||||||
|
|
||||||
|
## 简介
|
||||||
|
|
||||||
|
* [文档](README.md)
|
||||||
|
* [🎇 入门](intro/readme/onboarding.md)
|
||||||
|
* [🌐 联系我们](intro/connect-with-us.md)
|
||||||
|
* [👾 设置你的账户](intro/setting-up-your-profile/README.md)
|
||||||
|
* [账户设置](anytype-basics/setting-up-your-profile/account-and-data.md)
|
||||||
|
* [空间设置](intro/setting-up-your-profile/space-settings.md)
|
||||||
|
* [侧边栏 & 小部件](intro/setting-up-your-profile/customize-and-edit-the-sidebar/README.md)
|
||||||
|
* [✨ 简洁的仪表板](intro/setting-up-your-profile/customize-and-edit-the-sidebar/simple-dashboard.md)
|
||||||
|
* [其他导航](intro/setting-up-your-profile/installation.md)
|
||||||
|
|
||||||
|
## ⬛ 基础
|
||||||
|
|
||||||
|
* [概览](miscellaneous/glossary.md)
|
||||||
|
* [空间](basics/space.md)
|
||||||
|
* [对象(Objects)](basics/object-editor/README.md)
|
||||||
|
* [块(Blocks)](basics/object-editor/blocks.md)
|
||||||
|
* [如何创建对象](basics/object-editor/create-an-object.md)
|
||||||
|
* [定位你的对象](basics/object-editor/finding-your-objects.md)
|
||||||
|
* [类型(Types)](basics/types/README.md)
|
||||||
|
* [创建新类型](basics/types/create-a-new-type.md)
|
||||||
|
* [布局(Layouts)](basics/types/layouts.md)
|
||||||
|
* [模板(Templates)](basics/types/templates/README.md)
|
||||||
|
* [💫 深入探讨:模板](basics/types/templates/deep-dive-templates.md)
|
||||||
|
* [关联(Relations)](basics/relations/README.md)
|
||||||
|
* [添加新的关联](basics/relations/create-a-new-relation.md)
|
||||||
|
* [创建新的关联](basics/relations/create-a-new-relation-1.md)
|
||||||
|
* [反向链接](basics/relations/backlinks.md)
|
||||||
|
* [资料库(Library)](basics/anytype-library/README.md)
|
||||||
|
* [类型库](basics/anytype-library/types.md)
|
||||||
|
* [关联库](basics/anytype-library/relations.md)
|
||||||
|
* [链接](anytype-basics/object-editor/linking-objects.md)
|
||||||
|
* [关联图谱(Graph)](basics/graph.md)
|
||||||
|
* [对象集合(Sets)](basics/sets/README.md)
|
||||||
|
* [创建对象集合](basics/sets/creating-sets.md)
|
||||||
|
* [关联、排序和筛选的自定义](basics/sets/customizing-with-relations-sort-and-filters.md)
|
||||||
|
* [🌟 深入探讨:对象集](basics/sets/deep-dive-sets.md)
|
||||||
|
* [集锦(Collections)](basics/collections.md)
|
||||||
|
|
||||||
|
## 📽 用例
|
||||||
|
|
||||||
|
* [✏ 每日笔记](use-cases/anytype-editor.md)
|
||||||
|
* [✈ 旅行 Wiki](use-cases/travel-wiki.md)
|
||||||
|
* [🍎 学习笔记](use-cases/study-notes.md)
|
||||||
|
* [🎬 电影数据库](use-cases/movie-database.md)
|
||||||
|
* [🍛 食谱 & 膳食计划](use-cases/meal-planner-recipe-book.md)
|
||||||
|
* [🧠 PARA 笔记法](use-cases/para-method-for-note-taking.md)
|
||||||
|
* [🗨 语言闪卡](use-cases/language-flashcards.md)
|
||||||
|
* [来自用户 Roland 的使用介绍](use-cases/contributed-intro-by-user-Roland.md)
|
||||||
|
|
||||||
|
## 🌈 杂项
|
||||||
|
|
||||||
|
* [功能 & 对比](miscellaneous/feature-list-by-platform.md)
|
||||||
|
* [故障排除](miscellaneous/troubleshooting.md)
|
||||||
|
* [键盘快捷键](miscellaneous/keyboard-shortcuts/README.md)
|
||||||
|
* [主要命令](miscellaneous/keyboard-shortcuts/main-commands.md)
|
||||||
|
* [导航](miscellaneous/keyboard-shortcuts/navigation.md)
|
||||||
|
* [Markdown 类](miscellaneous/keyboard-shortcuts/markdown.md)
|
||||||
|
* [命令类](miscellaneous/keyboard-shortcuts/commands.md)
|
||||||
|
* [技术类术语表](miscellaneous/glossary-1.md)
|
||||||
|
|
||||||
|
## 🔐 数据 & 安全
|
||||||
|
|
||||||
|
* [恢复短语(Recovery Phrase)](data-and-security/what-is-a-recovery-phrase.md)
|
||||||
|
* [隐私与加密](data-and-security/how-we-keep-your-data-safe.md)
|
||||||
|
* [存储与删除](data-and-security/data-storage-and-deletion/README.md)
|
||||||
|
* [网络与备份](data-and-security/data-storage-and-deletion/self-hosting.md)
|
||||||
|
* [数据擦除](data-and-security/delete-or-reset-your-account.md)
|
||||||
|
* [分析与追踪](data-and-security/analytics-and-tracking.md)
|
||||||
|
|
||||||
|
## 💰 货币化(Monetization)
|
||||||
|
|
||||||
|
* [货币化(Monetization)](monetization/monetization.md)
|
||||||
|
|
||||||
|
## 🌍 社区
|
||||||
|
|
||||||
|
* [社区论坛](community/community-forum/README.md)
|
||||||
|
* [报告 Bug](community/community-forum/report-bugs.md)
|
||||||
|
* [提交功能需求与投票](community/community-forum/request-a-feature-and-vote.md)
|
||||||
|
* [向社区寻求帮助](community/community-forum/get-help-from-the-community.md)
|
||||||
|
* [分享你的反馈](community/community-forum/share-your-feedback.md)
|
||||||
|
* [“开源一切”倡议](community/join-the-open-source-project/README.md)
|
||||||
|
* [🖼 ANY 经验画廊(Experience Gallery)](community/join-the-open-source-project/any-experience-gallery.md)
|
||||||
|
* [Any 时间线](community/any-timeline.md)
|
||||||
|
|
||||||
|
## 🚵 迁移
|
||||||
|
|
||||||
|
* [从旧版应用(Legacy)迁移](migration/migration-from-the-legacy-app.md)
|
||||||
|
|
61
zh-CN/anytype-basics/object-editor/linking-objects.md
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
---
|
||||||
|
Description: How to link your Objects with Relations or Simple Links.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 链接
|
||||||
|
|
||||||
|
### 创建新链接
|
||||||
|
|
||||||
|
#### 链接到 Anytype 中的另一个对象
|
||||||
|
|
||||||
|
直接在画布(canvas)中这样做:
|
||||||
|
|
||||||
|
1. **【块链接】。** 输入斜杠字符 ("/") 来唤出命令栏,然后在菜单中寻找 `添加链接到对象(Link to Object)`。这种链接可能以文本或者卡片的形式呈现。
|
||||||
|
2. **【行内链接】**。输入 @ 即可唤出【对象】选择器菜单。
|
||||||
|
|
||||||
|
在弹出的【对象】菜单中选择一个【要关联的某类型对象】,就可以形成【关联】。
|
||||||
|
|
||||||
|
#### 链接到设备上的外部对象
|
||||||
|
|
||||||
|
如果要在桌面端上添加指向外部【对象】的链接,请以 **file:/// 开头** 然后加上本地文件的目标地址。例如:
|
||||||
|
|
||||||
|
* file:///Users/Alex/Downloads/Protocol-Berg.pdf — 打开PDF;
|
||||||
|
* file:///Users/Alex/Downloads/my\_budget.xlsx — 打开电子表格 (Excel, Numbers)。
|
||||||
|
|
||||||
|
要添加这样的链接,与添加新的网页链接一样,选择“链接到网站”(Link to website)。
|
||||||
|
|
||||||
|
#### 提及日期
|
||||||
|
|
||||||
|
你可以使用 **【行内链接】** 来快速链接到绝对日期或相对日期。
|
||||||
|
|
||||||
|
一些例子:
|
||||||
|
|
||||||
|
* @now or @today
|
||||||
|
* @tomorrow
|
||||||
|
* @nextweek
|
||||||
|
* @nextmonth
|
||||||
|
* @24/8/2023
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
遗憾的是,在我们的移动端应用程序上暂未可用。
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
### 检查现有链接
|
||||||
|
|
||||||
|
#### 图谱上的关联
|
||||||
|
|
||||||
|
在你的文档中,可能会有多个引用或连接,它们连接到你的库中的其他东西。【关联图谱 (Graph)】是可以实现这一点的可视化工具。将【对象】连接到其他【对象】,连接到人(Humans)抑或是任务(Tasks)。
|
||||||
|
|
||||||
|
在此处了解有关 [【关联】](../../basics/relations/ "mention") 以及 [【图谱】](../../basics/graph.md "mention") 的更多信息。
|
||||||
|
|
||||||
|
.png>)
|
||||||
|
|
||||||
|
#### 使用【流程】
|
||||||
|
|
||||||
|
检查哪些【对象】被链接在一起的另一种选择是,使用在【图谱 (Graph)】视图中,旁边的【流程 (Flow)】选项卡。
|
||||||
|
|
||||||
|
在屏幕顶部中间位置,你能看到切换到 **【流程】** 视图的选项卡。它会显示你当前查看【对象】的前后链接的【对象】。
|
||||||
|
|
||||||
|
#### 集锦(Collections)
|
||||||
|
|
||||||
|
集锦视图也是使用链接来管理要显示的内容。若要将一个现有的【对象】添加到一个【集锦】中,使用【对象】的上下文菜单(右上角的三点)中的 **添加链接到对象(Link To)**选项。
|
|
@ -0,0 +1,53 @@
|
||||||
|
---
|
||||||
|
description: Customize your profile, set up additional security, or delete your account
|
||||||
|
---
|
||||||
|
|
||||||
|
# 账户设置
|
||||||
|
|
||||||
|
### 个人资料
|
||||||
|
|
||||||
|
在这里,可以添加你的 **姓名,简介,** 以及 **个人资料头像。** 你的个人资料代表着【Anytype 关联图谱 (Graph)】中的一个【对象 (Object)】,你可以自由地将它链接到其他的【对象】。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Screenshot 2023-08-17 at 18.24.27.png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
### 首选项
|
||||||
|
|
||||||
|
**默认对象类型:**你可以选择一种默认的【对象类型】(从默认或你自己的【类型】中选择)——它定义了每次使用 + 按钮创建新的【对象】时所打开的对象类型。
|
||||||
|
|
||||||
|
**拼写检查语言:**你可以从 40 多种语言中启用自动拼写检查,或者禁用拼写检查。
|
||||||
|
|
||||||
|
**界面语言:** 你可以从社区翻译版本中进行选择,实现界面的本地化。
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
RTL (从右至左的文本方向)尚未被完全支持。 
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Screenshot 2023-08-17 at 18.24.05.png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
### 外观
|
||||||
|
|
||||||
|
你可以设置颜色模式(明亮、深色或跟随系统),并启用/禁用自动显示侧边栏功能:
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Screenshot 2023-08-17 at 18.26.01.png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
### Pin 码
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
此功能目前只在桌面端上可用。
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
如果你需要一些额外的隐私,例如在共享电脑时,你可以设置一个 Pin 码,在使用期间锁定应用程序并保护你的恢复短语。每次 Anytype 会话过期(1 分钟、5 分钟、10 分钟或 1 小时)或想访问恢复短语时,都需要输入密码:
|
||||||
|
|
||||||
|
{% hint style="warning" %}
|
||||||
|
我们不会存储此数据,因此当你丢失 Pin 码后无法帮助你恢复。请务必在恢复短语笔记的旁边记下你的 PIN 码。
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
### 数据管理
|
||||||
|
|
||||||
|
**本地文件**。你可以选择将存储在 Anytype 中的文件卸载到我们的加密备份节点,以此节省本地设备上的空间。
|
||||||
|
|
||||||
|
**删除账户**。此外,如果想删除自己的账户,也可以在这里进行操作。
|
||||||
|
|
||||||
|
### 恢复短语(Recovery Phrase)
|
||||||
|
|
||||||
|
你可以访问恢复短语或扫描二维码来连接你的移动端设备。有关更多详细信息,请查看 [恢复短语](../../data-and-security/what-is-a-recovery-phrase.md "mention")。
|
13
zh-CN/basics/anytype-library/README.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
Description: Here you'll find both pre-built & system Types to help you get started!
|
||||||
|
---
|
||||||
|
|
||||||
|
# 资料库(Library)
|
||||||
|
|
||||||
|
{% hint style="danger" %}
|
||||||
|
【资料库 (Library)】小部件当前在 iOS 上不可用。请使用桌面端应用来编辑【类型】。
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
在桌面端或 Android 设备上,它在【导航栏】底部的【废纸篓】上方:
|
||||||
|
|
||||||
|
.png>)
|
17
zh-CN/basics/anytype-library/relations.md
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# 关联库
|
||||||
|
|
||||||
|
### 选择页面顶部中央的标签来查看【关联】。
|
||||||
|
|
||||||
|
**【关联】**资料库的组织方式与 **【类型】** 相同,但图标略有不同。 
|
||||||
|
|
||||||
|
点击 Anytype 关联库中的【关联】,就可以将其安装到你自己的关联库中。 
|
||||||
|
|
||||||
|
.png>)
|
||||||
|
|
||||||
|
若要 [创建新的关联](../relations/create-a-new-relation-1.md "mention"),在搜索栏中输入标题, 然后选择“+ 创建关联”。
|
||||||
|
|
||||||
|
在 **【我的关联 (My Relations)】** 选项卡中,可以访问你已经在 Anytype 中安装的所有【关联】。 
|
||||||
|
|
||||||
|
.png>)
|
||||||
|
|
||||||
|
点击某个 **【关联】**,将打开一个包含利用了此【关联】的全部对象的【对象集合 (Set)】视图。
|
19
zh-CN/basics/anytype-library/types.md
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# 类型库
|
||||||
|
|
||||||
|
### 当你打开类型资料库时,你会看到 **Anytype 库** 以及 **我的类型(My Types)**。
|
||||||
|
|
||||||
|
Anytype 库是 Anytype 默认自带的类型,有些是你已经在使用的,有些是我们希望能带给你灵感的。 
|
||||||
|
|
||||||
|
我们期待你在未来的贡献,创建更多的使用案例和类型!
|
||||||
|
|
||||||
|
.png>)
|
||||||
|
|
||||||
|
在【我的类型】中,打勾标记显示了当前你的库中有哪些类型。
|
||||||
|
|
||||||
|
如果点击类型名称,你就会看到为这个类型所创建的模板。 
|
||||||
|
|
||||||
|
###  在【我的类型】库中,有你保存和创建的类型。
|
||||||
|
|
||||||
|
默认类型无法被删除。 
|
||||||
|
|
||||||
|
你也可以在 Anytype 资料库中间的搜索栏 [创建新类型](../types/create-a-new-type.md "mention")。
|
25
zh-CN/basics/collections.md
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
---
|
||||||
|
description: >-
|
||||||
|
A folder-like structure where where you can visualize and batch edit objects
|
||||||
|
of any type
|
||||||
|
---
|
||||||
|
|
||||||
|
# 集锦(Collections)
|
||||||
|
|
||||||
|
### 理解集锦
|
||||||
|
|
||||||
|
【集锦】的外观和布局与【对象集合】相似,但是功能不同。
|
||||||
|
|
||||||
|
与【对象集合】及上一章节中所解释的相反,【集锦】不会根据【对象类型】进行筛选,而是对所有【类型】都开放。 
|
||||||
|
|
||||||
|
集锦可以用来组织各种不同的对象,并将它们存储在一个地方。
|
||||||
|
|
||||||
|
你不会受到只能查看单一【对象类型】的限制,也就是你在一个集锦中可以拥有多种不同的类型。 
|
||||||
|
|
||||||
|
### 示例
|
||||||
|
|
||||||
|
如果你正在安排你一周的备餐(meal prep),你可能会有一些食谱(recipes)、配料(ingredients)以及一份购物清单(shopping list)。 
|
||||||
|
|
||||||
|
你使用的主要类型可能是食谱(Recipes)和配料(Ingredients)。 
|
||||||
|
|
||||||
|
在一个【集锦】中,你可以将所有的这些【类型】无缝地组织到一起。 
|
27
zh-CN/basics/graph.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
---
|
||||||
|
description: Finally a dive into your graph of objects.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 关联图谱(Graph)
|
||||||
|
|
||||||
|
{% hint style="danger" %}
|
||||||
|
图谱功能目前在移动端应用上不可用。
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
### 在应用中的任何位置,你都可以在底部导航面板中看到关联图谱的图标
|
||||||
|
|
||||||
|
<figure><img src="../../.gitbook/assets/Graph Icon.png" alt="" width="375"><figcaption><p>找到导航面板中间的关联图谱图标</p></figcaption></figure>
|
||||||
|
|
||||||
|
### 打开【关联图谱】,查看所有对象以及它们的关联。
|
||||||
|
|
||||||
|
在这里,你可以看到哪些【对象】连接在一起,以及所有对象的流向。
|
||||||
|
|
||||||
|
.png>)
|
||||||
|
|
||||||
|
在【图谱】视图的右上方,你可以执行 **搜索** 以及优化调整部分设置。 
|
||||||
|
|
||||||
|
切换标题、箭头和图标的外观。
|
||||||
|
|
||||||
|
优化对链接、关联和孤立对象的查看。如**如果你发现缺少某些对象,检查孤立对象是否被设置为显示。**
|
||||||
|
|
||||||
|
.png>)
|
23
zh-CN/basics/object-editor/README.md
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
---
|
||||||
|
description: Let's discover what Objects are, and how to use them to optimize your work.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 对象(Objects)
|
||||||
|
|
||||||
|
### 对象是什么?
|
||||||
|
|
||||||
|
忘掉你对知识管理工具的了解。 
|
||||||
|
|
||||||
|
在 Anytype,我们创建了这样一个概念:你创建的一切都是【对象】。页面 (Pages)、笔记 (Notes)、食谱 (Recipes)、图书 (Books)、电影 (Movies)、音频 (Audio)、人类 (Humans),_全部都是_! 
|
||||||
|
|
||||||
|
这些都是按 **【类型 (Types)】** 来组织和分类的 **【对象 (Objects)】**。 
|
||||||
|
|
||||||
|
你可以通过 **【关联 (Relations)】**将不同的 **【类型】** 连接起来,并在 **【关联图谱 (Graph)】**中查看可视化效果。
|
||||||
|
|
||||||
|
你会在 **【资料库 (Library)】**中看到,你能够创建新的【类型】。 
|
||||||
|
|
||||||
|
简而言之,【对象】是你所创建的内容的概括统称。如果一个【对象】属于页面(Page)、笔记(Note)或其他你创建的【类型】—— 
|
||||||
|
|
||||||
|
【对象】就会按照它的【类型】被组织。 
|
||||||
|
|
||||||
|
它是你关联图谱中的一个节点,最小的可链接单元,并且按类型来区分。 
|
32
zh-CN/basics/object-editor/blocks.md
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
---
|
||||||
|
description: Understanding blocks, editing, and customizing to your preference.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 块(Blocks)
|
||||||
|
|
||||||
|
你的对象由不同类型的块组成,用来组织你的信息,所有【块】放置的地方叫做【画布 (Canvas)】。Anytype 的基于块的编辑器,与博客或网站建设工具的工作原理非常相似。
|
||||||
|
|
||||||
|
所有块样式都来自于命令菜单,点击编辑器左侧橙色的 `+` 符号,或输入 `/` 即可访问。 
|
||||||
|
|
||||||
|
在这里,你会看到二十多种不同的块类型,它们可以添加到你的对象中。 
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Screenshot 2023-08-17 at 18.49.21.png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
### 设置块样式
|
||||||
|
|
||||||
|
你可以一次选择一个或多个块,然后批量编辑,创建不同的标题和文本样式,比如复选框(checkbox)、项目符号(bullet)或数字(number)。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Screenshot 2023-08-17 at 18.53.48.png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
### 拖放来改变样式
|
||||||
|
|
||||||
|
你可以使用每个块左侧的橙色“手柄”,在编辑器中创建父/子块或新的列。
|
||||||
|
|
||||||
|
{% embed url="https://www.loom.com/share/00021ba3598447309722ec3a408d33ac?sid=eb244417-2273-4ab2-8da3-bd47e62e82cf" %}
|
||||||
|
|
||||||
|
### 嵌入块
|
||||||
|
|
||||||
|
只需在编辑器中简单地输入“/嵌入”("/embed"),就能调出当前支持的嵌入块菜单。
|
||||||
|
|
||||||
|
当中包括 Mermaid 图、Youtube 视频、Miro 白板、Google 地图等等。
|
||||||
|
|
34
zh-CN/basics/object-editor/create-an-object.md
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
---
|
||||||
|
description: How do you create an object?
|
||||||
|
---
|
||||||
|
|
||||||
|
# 如何创建对象
|
||||||
|
|
||||||
|
### 导航菜单
|
||||||
|
|
||||||
|
左键单击加号按钮,就会立即创建一个新对象,类型是你在空间设置中设定的默认对象类型。
|
||||||
|
|
||||||
|
右键单击加号按钮,会出现一个菜单,其中有标准类型以及你最近使用过的【类型】。
|
||||||
|
|
||||||
|
### 正斜杠命令
|
||||||
|
|
||||||
|
使用 Anytype 时,你可以键入“/”来创建一个新的【对象】。这将显示你已创建过的【对象】列表。只需选择要创建的【对象】,它就会链接到你当前的位置。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/image (5).png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
你也可以在这里链接到已经存在的【对象】。
|
||||||
|
|
||||||
|
### 使用快捷键
|
||||||
|
|
||||||
|
要快速创建一个新的【对象】,可以使用这个快捷键:⌘+N
|
||||||
|
|
||||||
|
它会执行与点击导航栏中“+”号相同的操作。
|
||||||
|
|
||||||
|
### 转换为对象
|
||||||
|
|
||||||
|
如果你在处理现有的【对象】中的某些内容,并且想只将某个块转换为【对象】,你可以通过操作菜单中的任一操作来实现:
|
||||||
|
|
||||||
|
1. 将鼠标悬停在激活中的块的左侧,然后点击那 3 个点的操控杆。
|
||||||
|
2. 使用键盘快捷键 ⌘+/ 。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/image (25).png" alt=""><figcaption><p>操作菜单</p></figcaption></figure>
|
25
zh-CN/basics/object-editor/finding-your-objects.md
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# 定位你的对象
|
||||||
|
|
||||||
|
### 使用关联图谱
|
||||||
|
|
||||||
|
要找到你的所有对象以及它们之间的联系,可以从【关联图谱 (Graph)】中寻找主要事实来源。
|
||||||
|
|
||||||
|
在此处阅读有关 [关联图谱(Graph)](../graph.md "mention")的更多信息。
|
||||||
|
|
||||||
|
### 浏览所有内容
|
||||||
|
|
||||||
|
另外,默认情况下会有一个“All Objects”的集合,会以列表形式显示你所有的对象以及它们的类型。
|
||||||
|
|
||||||
|
这个对象名为“All Objects”且使用这个 emoji 图标: :globe\_with\_meridians:
|
||||||
|
|
||||||
|
### 使用搜索
|
||||||
|
|
||||||
|
最后手段,如果你还是找不到想找的内容,可以尝试搜索。
|
||||||
|
|
||||||
|
要使用搜索,点击你导航栏上的放大镜。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/image (43).png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
上述搜索功能目前不会在关联中搜索。
|
||||||
|
{% endhint %}
|
16
zh-CN/basics/relations/README.md
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
# 关联(Relations)
|
||||||
|
|
||||||
|
### 理解关联 <a href="#understanding-relations" id="understanding-relations"></a>
|
||||||
|
|
||||||
|
关联(Relations)是 Anytype 中组织与连接你的【对象】和知识的关键。在 Anytype 中,【关联】有两种功能:
|
||||||
|
|
||||||
|
* **定义属性:**你可以使用【关联】来定义某个【对象】的属性。
|
||||||
|
* 例如,在 Anytype 中创建一个任务(Task)时,可以添加像 _状态(Status)_ 这样的关联:已完成/未完成,或者 _优先级_:低、中、高。
|
||||||
|
* 如果想象成一个数据库,那么【关联】代表的是每一行的列标题(其中 A 列是它的【对象】)。
|
||||||
|
* 设置完属性之后,就可以根据在【对象集合】视图中定义的【关联】来对你的【对象】进行排序和筛选。
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
* **定义联系:**你还可以使用【关联】来将一个【对象】连接到另一个【对象】。
|
||||||
|
* 还是以任务为例子,你可以添加这个【关联】:_分配给..(Assignee)_,然后将 Anytype 中的另一个【对象】指定到这个任务。
|
||||||
|
* 如上所述,你可以在【对象集合】或【关联图谱】的视图中查看分配给..(Assignee)这个【关联】。
|
7
zh-CN/basics/relations/backlinks.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# 反向链接
|
||||||
|
|
||||||
|
该功能目前以最小化可行的形式(MVP)发布,将在未来进行改进。
|
||||||
|
|
||||||
|
反向链接和正向链接已经以【关联】的形式实现,可以在任何对象的【关联面板】中找到。
|
||||||
|
|
||||||
|
默认情况下,如果一个对象已有反向链接,反向链接会显示为一个指示反向链接数量的精选关联,点击其中的链接将会跳转到对应的对象。如果一个对象没有反向链接,就不会显示为精选关联,但仍可以在关联面板中被找到。
|
21
zh-CN/basics/relations/create-a-new-relation-1.md
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
---
|
||||||
|
description: How to create new relations from the library and your editor
|
||||||
|
---
|
||||||
|
|
||||||
|
# 创建新的关联
|
||||||
|
|
||||||
|
[Anytype 资料库](../anytype-library/ "mention") 是管理、搜索和创建新的关联的中枢。
|
||||||
|
|
||||||
|
### 在资料库中创建新的关联
|
||||||
|
|
||||||
|
点击搜索栏,输入要创建的关联名称。下拉菜单中将出现 Anytype 资料库中所有匹配的术语。你可以选择其中任何一个,它们就会新安装到你的关联库中。如果你更想创建自己的关联,只需选择 `+ 创建关联 "关联名称"`。
|
||||||
|
|
||||||
|
如果你选择了创建自己的关联,则会自动打开【关联】页面。
|
||||||
|
|
||||||
|
如果你认为这种【关联】没有意义,可以使用角落的三点菜单从空间中删除该关联。
|
||||||
|
|
||||||
|
### 在对象编辑器创建关联
|
||||||
|
|
||||||
|
要即时创建新的关联,你可以按照 [添加和管理关联](create-a-new-relation.md#adding-and-managing-relations "mention") 中的说明进行操作,使用关联选择菜单的方法与使用【关联库】中搜索栏的方法相同。这个新的关联会自动添加到【关联库】中,同时,你可以继续编辑当前的对象。
|
||||||
|
|
||||||
|
你在对象编辑器中创建的所有关联,都可以通过上面的步骤在【关联库】中进行编辑。
|
25
zh-CN/basics/relations/create-a-new-relation.md
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# 添加新的关联
|
||||||
|
|
||||||
|
#### 添加和管理关联 <a href="#adding-and-managing-relations" id="adding-and-managing-relations"></a>
|
||||||
|
|
||||||
|
在编辑器中,你可以像添加块一样,使用 `+` 按钮或行内的 `/` 菜单来为你的【对象】添加【关联】。你还可以通过【关联面板】管理某个【对象】的【关联】:将鼠标悬停在【对象】名称上方会出现一个三角形图标,这个面板显示了这个【对象】的所有关联。
|
||||||
|
|
||||||
|
**精选关联(Featuring Relations)**
|
||||||
|
|
||||||
|
你可以添加、精选或者修改现有的【关联】。由于【精选关联】会直接显示在标题下方,因此,你可以通过【精选关联】来优先显示与某个【对象】最相关的【关联】。在【关联面板】中,你可以通过点击任一关联右侧的 ★ 来精选这个【关联】。
|
||||||
|
|
||||||
|
{% embed url="https://vimeo.com/749076155?embedded=true&source=vimeo_logo&owner=177568036" %}
|
||||||
|
|
||||||
|
#### 关联的类型 <a href="#types-of-relations" id="types-of-relations"></a>
|
||||||
|
|
||||||
|
以下是 Anytype 中当前可用的【关联】类型:
|
||||||
|
|
||||||
|
* **文本(Text)**:接受文本作为输入。
|
||||||
|
* **数字(Number)**:接受所有数字。即将会推出不同的格式。
|
||||||
|
* **日期(Date)**:日期,可选的时间信息。
|
||||||
|
* **状态(Status)**:你可以自定义并选择的一系列分类关系,如 X、Y 或 Z。
|
||||||
|
* **标签(Tag)**:另一种没有限制的单个字符串。
|
||||||
|
* **邮箱/电话/URL(Email/phone/URL)**:URL、电子邮件、电话号码的特殊格式。
|
||||||
|
* **复选框(Checkbox)**:带有布尔值、字符串或对象链接的对象。
|
||||||
|
* **媒体(Media)**:可以查看、播放或下载的音频、电影或图片。
|
||||||
|
* **对象(Object)**:对某个特定对象的引用,如某人、某任务或某文件。
|
32
zh-CN/basics/sets/README.md
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
---
|
||||||
|
description: A live search of all Objects which share a common Type or Relation
|
||||||
|
---
|
||||||
|
|
||||||
|
# 对象集合(Sets)
|
||||||
|
|
||||||
|
### 理解对象集合
|
||||||
|
|
||||||
|
很多人把【对象集合】与数据库相提并论,但两者有一个关键区别:【对象集合】不会像常规的数据库那样 _存储_【对象】。 
|
||||||
|
|
||||||
|
【对象集合 (Sets)】是根据筛选条件和几个可以自定义的二级筛选条件,来查看你的部分【图谱】和你创建的【对象】的一种方式。可以把集合看作是一个实时过滤器,或者是对共有特定条件(具体来说是【类型】或【关联】)的【对象】进行实时查询。
|
||||||
|
|
||||||
|
#### 【对象集合】有两个主要功能:
|
||||||
|
|
||||||
|
1. **组织和访问对象**\
|
||||||
|
\
|
||||||
|
我们经常收到以下需求:_怎样找到我创建的所有笔记(Notes)?_ \
|
||||||
|
\
|
||||||
|
有一种简单的方法,根据【类型】创建一个【对象集合】。\
|
||||||
|
比如:【笔记 (Note)】类型,它将显示你在 Anytype 中创建的每个【笔记】。\
|
||||||
|
\
|
||||||
|
如果你有经常要访问的特定笔记,可以根据添加到这些笔记中的【关联】来过滤。\
|
||||||
|
\
|
||||||
|
例如:创建日期、标签、优先级。(从这个意义上说,【关联】的用法就像“属性”一样)。\
|
||||||
|
\
|
||||||
|
接着,你可以将你的【集合】固定到【收藏夹】菜单,让它在你的【侧边栏】上,就像一个放着符合某些特定条件的所有【对象】的文件夹。
|
||||||
|
|
||||||
|
2. **编辑对象**\
|
||||||
|
\
|
||||||
|
【对象集合】还提供了一种在【列表视图】中快速编辑【对象】的方法。\
|
||||||
|
\
|
||||||
|
你可以使用【集合】中的【多选对象】来一次性删除多个【对象】,或者批量更新【对象类型】。在【关联菜单】(右上角)中添加到【集合】的所有【关联】,都会被所有通过“+ 新建对象”按钮创建的新【对象】所采用。 
|
19
zh-CN/basics/sets/creating-sets.md
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# 创建对象集合
|
||||||
|
|
||||||
|
### 你可以使用左下角的 + 或者编辑器中的 / 快捷键菜单来创建【对象集合】。
|
||||||
|
|
||||||
|
然后,你需要选择是按【类型】创建【集合】(可列出某一【类型】的全部【对象】),还是按【关联】创建【集合】(可列出包含所选【关联】的全部【对象】)。 
|
||||||
|
|
||||||
|
你也可以在新文档的对象类型切换按钮中,根据其【类型】创建一个【集合】。
|
||||||
|
|
||||||
|
.png>)
|
||||||
|
|
||||||
|
### 接下来,你需要确定你创建的【集合】的目的。 
|
||||||
|
|
||||||
|
例如,项目管理的集合可能需要“项目(Project)”类型,而对于阅读清单的集合,则可能是“图书(Book)”类型。在库中,选择一个【对象类型】,点击“创建”,然后选择“新建对象集”。
|
||||||
|
|
||||||
|
这将创建一组包含所有“图书(Book)”【类型】的【对象】的对象集合。 
|
||||||
|
|
||||||
|
这样,就可以对你的 Anytype 中的所有图书对象进行组织管理。
|
||||||
|
|
||||||
|
.png>)
|
|
@ -0,0 +1,19 @@
|
||||||
|
# 关联、排序和筛选的自定义
|
||||||
|
|
||||||
|
### 通过集合为对象显隐与添加关联
|
||||||
|
|
||||||
|
你可以点击右侧的筛选器,将【关联】批量添加到【对象集合】中,而不用逐个【对象】去添加。
|
||||||
|
|
||||||
|
在这里,你可以打开或关闭你想查看的任何【关联】、添加另一个【关联】或新的关联,以及编辑【对象集合】的【视图】。
|
||||||
|
|
||||||
|
.png>)
|
||||||
|
|
||||||
|
你可以在创建 **【类型】** 的过程中添加任意【关联】,它们会自动添加到你的新 **【对象】** 当中。
|
||||||
|
|
||||||
|
在此处查阅有关 [创建新类型](../types/create-a-new-type.md "mention") 的更多信息。在新建【类型】的过程中,你会在标题和【模板】的下方看到【关联】的选项。
|
||||||
|
|
||||||
|
 (1).png>)
|
||||||
|
|
||||||
|
### 排序和筛选
|
||||||
|
|
||||||
|
你还可以根据之前添加到【对象集合】中的任何关联,对你的集合进行排序和过滤。
|
7
zh-CN/basics/sets/deep-dive-sets.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
description: Short demo on how to use Sets to quickly access and manage Objects in Anytype.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 🌟 深入探讨:对象集合
|
||||||
|
|
||||||
|
{% embed url="https://www.youtube.com/watch?v=FFSGVOQ5wT8" %}
|
7
zh-CN/basics/space.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# 空间
|
||||||
|
|
||||||
|
**【空间】** 是你的对象关联图谱的容器。
|
||||||
|
|
||||||
|
你可以创建多个独立的空间(最多 10 个),每个空间都有自己的对象关联图谱、小部件侧边栏,以后还会有隐私设置。
|
||||||
|
|
||||||
|
只需点击你的个人资料图片,即可创建新空间,或浏览现有的空间。使用侧边栏顶部的空间管理菜单,来自定义你的空间设置或删除你的空间。
|
30
zh-CN/basics/types/README.md
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
---
|
||||||
|
description: Types are the classification system we use to categorize Objects
|
||||||
|
---
|
||||||
|
|
||||||
|
# 类型(Types)
|
||||||
|
|
||||||
|
就像在物理世界中一样,【类型】是用来定义彼此完全不同的【对象】。
|
||||||
|
|
||||||
|
香蕉在本质上不同于沙发。香蕉的功能、属性以及与其他对象的关系,更类似于苹果和橘子,而不是沙发。因此,我们可以将苹果、橙子和香蕉归类为 _水果_,而沙发则属于另一个类别:_家具_。
|
||||||
|
|
||||||
|
根据同样的原则,在 Anytype 中,有两个需要牢记的重要概念:
|
||||||
|
|
||||||
|
1\) 每个对象(Object)都有一个【类型】,这个类型在创建【对象】时被定义(之后可以更改)
|
||||||
|
|
||||||
|
2\) 不同的【类型】用于定义彼此完全不同的【对象】
|
||||||
|
|
||||||
|
在你的 Anytype 图谱中,同事、朋友和邻居都可能被视为:_Human_ 类型。以下是一些可能存在于你的图谱中的其他【类型】:
|
||||||
|
|
||||||
|
* Task(任务)
|
||||||
|
* Note(笔记)
|
||||||
|
* Book(图书)
|
||||||
|
* Movie(电影)
|
||||||
|
* Idea(想法)
|
||||||
|
|
||||||
|
你可以自行决定【类型】的范围大小,但一般情况下,建议使用常规【类型】对你的【对象】进行分类,并通过 [【模板 (Templates)】](templates/deep-dive-templates.md) 进一步细化【类型】的使用。 
|
||||||
|
|
||||||
|
你可以随时通过侧边栏 _【资料库 (Library)】_小部件中的【类型库 (Types Library)】来查看和管理你的【类型】。
|
||||||
|
|
||||||
|
|
||||||
|
|
33
zh-CN/basics/types/create-a-new-type.md
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
---
|
||||||
|
description: How to create new types from the library and your editor
|
||||||
|
---
|
||||||
|
|
||||||
|
# 创建新类型
|
||||||
|
|
||||||
|
[Anytype 资料库](../anytype-library/ "mention") 是管理、搜索和创建新类型的中枢。
|
||||||
|
|
||||||
|
### 在资料库创建类型
|
||||||
|
|
||||||
|
点击搜索栏,输入要创建的类型名称。下拉菜单中将出现 Anytype 资料库中所有匹配的术语。你可以选择其中任何一个,它们就会新安装到你的类型库中。如果你想创建自己的类型,只需选择 `+ 创建 "类型名" 类型` 的选项即可。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Types Library.png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
如果选择了创建你自己的类型,则会自动打开【类型】页面。在这里,你可以为类型添加模板和关联,它们会在你每次创建这种类型的对象时自动应用。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Type page.png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
如果你认为这个【类型】没有意义,可以使用角落的三点菜单从空间中删除该类型。请谨慎操作;如果某个类型从你的资料库中被删除,那么该类型的任何对象都将会显示警告信息。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Delete type.png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
### 在对象编辑器创建类型
|
||||||
|
|
||||||
|
如果你在创建对象时想到了新的对象类型,可以立即创建一个新类型。这种情况下,使用类型选择菜单的方法,与使用类型库中搜索栏的方法相同。新类型将会自动添加到【类型库】中,同时,你可以继续编辑当前新类型的对象。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Type Creation on-the-fly.png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
如果你在 _创建对象后_ 决定将其转换为新的对象类型,也可以点击对象类型,选择“更改类型”,然后输入你要创建的类型名称。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Type creation from change-type menu (1).png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
你在对象编辑器中创建的所有类型,都可以通过上面的步骤在类型库中进行编辑。
|
9
zh-CN/basics/types/layouts.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# 布局(Layouts)
|
||||||
|
|
||||||
|
**【布局 (Layouts)】**定义了【对象】的总体外观和感觉,并决定可以对【对象】执行的操作。
|
||||||
|
|
||||||
|
目前,用户可以为自己的【对象】选择四种基本布局,我们计划在未来让社区贡献者能够创建新的布局。
|
||||||
|
|
||||||
|
你可以通过 [类型](../anytype-library/types.md "mention") 为每种类型选择推荐的对象布局,也可以为每个 [【模板 (Templates)】](templates/ "mention")选择不同的布局。
|
||||||
|
|
||||||
|
你可以在【对象】标题上方、封面和图标按钮旁边找到对象布局菜单。在这里你可以更改对象的布局,或设置布局宽度。有些布局甚至允许你更改文本对齐的方式。
|
36
zh-CN/basics/types/templates/README.md
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
---
|
||||||
|
description: Building & using templated through types.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 模板(Templates)
|
||||||
|
|
||||||
|
### 理解模板
|
||||||
|
|
||||||
|
模板(Templates)是 Anytype 中最受欢迎的工作方式之一,可以帮助扩展和个性化你创建对象的流程。使用【模板】,你可以:
|
||||||
|
|
||||||
|
* 为某些对象类型自定义你想要的【布局】和【关联】
|
||||||
|
* 每次添加新的【对象】时,自动重复使用这个相同的结构
|
||||||
|
|
||||||
|
【模板】基于【类型】保存,每个【类型】可支持多个【模板】。例如,你可以为学术、小说或非小说等不同种类的图书设置不同的【模板】。
|
||||||
|
|
||||||
|
### 如何创建模板
|
||||||
|
|
||||||
|
添加【模板】有以下三种方式:
|
||||||
|
|
||||||
|
1\) 导航到【类型库】 → 单击要创建【模板】的【类型】 → 单击 + 开始创建新模板 → 给你的【模板】命名并添加【关联】和格式 → 【模板】会自动保存
|
||||||
|
|
||||||
|
2\) 如果你正在一个【对象】中,并想将你的工作保存为【模板】,可以这样做:点击右上角的 `···` → 点击 + 用作模板,你的内容就会自动保存为这种【对象类型】的新【模板】。
|
||||||
|
|
||||||
|
3\) 如果你正在一个【对象集合】或【集锦】中,并且想创建或编辑模板,可以这样做:\找到【集合】或【集锦】视图中右上角的 `创建|▾` -> 点击 `▾` 按钮打开模板样式。然后使用 `+` 按钮创建一个新模板,或者点击模板按钮右上角的 `···` 然后选择 `编辑模板`、`创建副本` 或者 `删除`。
|
||||||
|
|
||||||
|
### 使用和管理模板
|
||||||
|
|
||||||
|
根据你创建新对象的方式,要么会自动应用默认模板,要么会要求你自己选择一个模板。
|
||||||
|
|
||||||
|
<figure><img src="../../../../.gitbook/assets/5_Template Picker Screenshot.png" alt=""><figcaption><p>选择模板</p></figcaption></figure>
|
||||||
|
|
||||||
|
你还可以通过【类型库】为每种【类型】选择默认模板,或者为每个【对象集合】和【集锦】的视图选择默认模板。
|
||||||
|
|
||||||
|
<figure><img src="../../../../.gitbook/assets/6_Default Template Selector Screenshot at 18.15.24.png" alt=""><figcaption><p>为对象集合选择默认模板</p></figcaption></figure>
|
||||||
|
|
||||||
|
你可以在【类型库】中,对每种【对象类型】已添加的【模板】进行查看、编辑、复制或删除。
|
3
zh-CN/basics/types/templates/deep-dive-templates.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# 💫 深入探讨:模板
|
||||||
|
|
||||||
|
{% embed url="https://www.youtube.com/watch?v=DIReqsBST7Q" %}
|
25
zh-CN/community/any-timeline.md
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# Any 时间线
|
||||||
|
|
||||||
|
<img src="../../.gitbook/assets/file.excalidraw (1).svg" alt="" class="gitbook-drawing">
|
||||||
|
|
||||||
|
### Pre-Alpha
|
||||||
|
|
||||||
|
* 这是 Anytype 的早期阶段,团队在为应用程序制定了最初的愿景之后,一直在寻找潜在的投资者。
|
||||||
|
* 这一阶段始于 2019 年的某个时候,到 2020 年,该应用程序的计划已经公开。
|
||||||
|
|
||||||
|
### Alpha
|
||||||
|
|
||||||
|
* 阿尔法阶段于 2020 年 6 月左右开始,当时第一批用户开始测试该应用。
|
||||||
|
* 在此阶段注册并帮助我们测试和改进应用程序的用户可免费获得 10GB 的存储空间,并在社区论坛上获得 alpha 标志。
|
||||||
|
* 这一时期使用的应用程序现在被称为旧版应用程序(legacy)。
|
||||||
|
|
||||||
|
### Beta (当前)
|
||||||
|
|
||||||
|
* 第一个测试版本为 0.32.0,于 2023 年 6 月 15 日发布。希望保留数据的 alpha 用户需要迁移到新的应用程序。
|
||||||
|
* 正式的公开测试于 2023 年 7 月 19 日启动。
|
||||||
|
* 在此阶段注册并帮助我们测试和改进应用程序的用户,将免费获得额外的 1GB 存储空间,并在社区论坛上获得 beta 标志。
|
||||||
|
|
||||||
|
### 公开发布版
|
||||||
|
|
||||||
|
* 目前还没有公开发布版的预计时间。
|
||||||
|
* 你可以通过我们的公开路线图查看我们的 [公开发布进度](https://github.com/orgs/anyproto/projects/1/views/1)。
|
21
zh-CN/community/community-forum/README.md
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
---
|
||||||
|
description: A special space just for Anytypers!
|
||||||
|
---
|
||||||
|
|
||||||
|
# 社区论坛
|
||||||
|
|
||||||
|
{% embed url="https://community.anytype.io" %}
|
||||||
|
|
||||||
|
在我们的社区中,你可以找到各种 **类别** 和 **标签**,你可以找到其他人以前发表的帖子,他们可能和你有着类似的经历。这些类别包括新闻和公告(News & Announcements)、综合讨论(General Discussion)、操作方法(How To)、功能请求(Feature Requests)、错误报告(Bug Reports)和休息室(Lounge)。
|
||||||
|
|
||||||
|
### 如何加入社区?
|
||||||
|
|
||||||
|
如果想在 Anytype 社区发帖,你需要一个账户。 
|
||||||
|
|
||||||
|
在你的桌面应用中,点击右下方的 **?**(帮助)按钮,然后点击“`Join Our Community`”。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Screenshot 2023-08-23 at 17.42.16.png" alt="" width="306"><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
或者,找到窗口顶部标题栏下方的菜单栏,然后单击 `帮助 > 报告 Bug`。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/image (45).png" alt=""><figcaption></figcaption></figure>
|
|
@ -0,0 +1,15 @@
|
||||||
|
# 向社区寻求帮助
|
||||||
|
|
||||||
|
### 向社区和 Any 团队寻求帮助!
|
||||||
|
|
||||||
|
你是否想获取构建和使用 Anytype 的帮助?如果这些文档对你的帮助还不够,你可以随时查看社区中是否有人问过类似的问题。 
|
||||||
|
|
||||||
|
如果你需要建议来构建某些东西,或者要从别人使用 Antype 的方法中获得灵感,你可以在这里找到丰富的信息。 
|
||||||
|
|
||||||
|
如果你有与 功能需求 或 Bug 无关的问题,可以在这里大声叫出来并寻求帮助!
|
||||||
|
|
||||||
|
### 不要忘了看路径指南!
|
||||||
|
|
||||||
|
Anytype 各方面的技术规程、教程和 demo 的资源中心。
|
||||||
|
|
||||||
|
{% embed url="https://community.anytype.io/c/how-to/8" %}
|
11
zh-CN/community/community-forum/report-bugs.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# 报告 Bug
|
||||||
|
|
||||||
|
### 踩死那只虫子(Bug)!
|
||||||
|
|
||||||
|
遇到了奇怪的情况?告诉我们的团队,让我们一起解决它。我们希望这款应用程序尽可能完美无瑕。 
|
||||||
|
|
||||||
|
在社区论坛上创建错误报告时,你将看到一个模板,该模板将为我们的团队提供理解问题所需的准确信息。我们恳请你尽可能明确地遵循这一格式。 
|
||||||
|
|
||||||
|
清楚准确地描述你遇到的错误,将有助于我们的版主和夜间运维团队复现该问题。如果确认了该错误是普遍存在的,就会立即上报给我们的开发团队进行处理。 
|
||||||
|
|
||||||
|
{% embed url="https://community.anytype.io/c/bug-reports/7" %}
|
|
@ -0,0 +1,11 @@
|
||||||
|
# 提交功能需求与投票
|
||||||
|
|
||||||
|
在这里,你可以就所有与 功能需求和新功能开发相关的内容,进行发帖、投稿和投票! 
|
||||||
|
|
||||||
|
我们会根据社区最需要的东西来决定开发日程上的优先度。 
|
||||||
|
|
||||||
|
因此,如果有你想见到的东西,就去投票支持吧!
|
||||||
|
|
||||||
|
注意!在添加新的推荐之前,先搜索一下,看看话题是否已经存在。你也不想那样……
|
||||||
|
|
||||||
|
{% embed url="https://community.anytype.io/c/feature-requests/6" %}
|
21
zh-CN/community/community-forum/share-your-feedback.md
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# 分享你的反馈
|
||||||
|
|
||||||
|
### 我们喜欢在篝火边聊天,一聊就是一天一夜!
|
||||||
|
|
||||||
|
讨论任何与 Anytype 有关的问题。
|
||||||
|
|
||||||
|
什么都可以,
|
||||||
|
|
||||||
|
嗯,就是那些你觉得不符合其他类别的帖子,
|
||||||
|
|
||||||
|
那些帖子可以归入这个类别。 
|
||||||
|
|
||||||
|
### 我们希望听到您的想法和反馈。 
|
||||||
|
|
||||||
|
告诉我们你的第一印象,向我们提出反馈意见或者功能优化建议。
|
||||||
|
|
||||||
|
你在 Anytype 中创建了想要炫耀的东西吗?跟社区分享吧!
|
||||||
|
|
||||||
|
我们在说的是模板、使用案例的组织构思、布局等等。
|
||||||
|
|
||||||
|
{% embed url="https://community.anytype.io/c/general-discussion/10" %}
|
13
zh-CN/community/join-the-open-source-project/README.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# “开源一切”倡议
|
||||||
|
|
||||||
|
## **如何做出贡献**
|
||||||
|
|
||||||
|
如果你是一名开发者,并希望为 Anytype 的生态系统做出贡献,请查看版本库内的 `关于贡献` 文档。
|
||||||
|
|
||||||
|
在 [Github](https://github.com/anyproto) 上关注我们,加入 [贡献者社区](https://github.com/orgs/anyproto/discussions),共同建设 Anytype。
|
||||||
|
|
||||||
|
如果你想了解更多关于我们选择开放代码的原因,请查看下面的文章: 
|
||||||
|
|
||||||
|
{% embed url="https://blog.anytype.io/our-open-philosophy/" %}
|
||||||
|
|
||||||
|
有关于许可证的任何问题,请访问 [https://legal.any.coop/](https://legal.any.coop/),有关于技术的任何问题,请访问 [https://tech.anytype.io/](https://tech.anytype.io/)。
|
|
@ -0,0 +1,23 @@
|
||||||
|
# 🖼 ANY 经验画廊(Experience Gallery)
|
||||||
|
|
||||||
|
我们很高兴向你介绍 [【画廊 (Gallery)】](https://gallery.any.coop/) —— 一种让你与其他用户分享你的【ANY 经验】的方式。我们相信,你一定为自己在知识管理、任务跟踪、学习方法等方面的设定感到自豪。这是你与社区分享你的创造的机会,这样他们就可以充分利用 Anytype!
|
||||||
|
|
||||||
|
要创建和共享你自己的【ANY 经验】,请按照下面的步骤操作(你需要用到一个 Github 账户):
|
||||||
|
|
||||||
|
1. 创建一个新空间,在其中只包含你想分享的类型、关联、小部件、模板和对象。这样可以避免意外分享出你主空间中的敏感数据。请注意:这个新空间的名称和图标将显示给所有安装你的【ANY 经验】的人。
|
||||||
|
2. 空间准备就绪后,将它导出为 JSON 格式 的 Any-Block。点击左上角的空间名称,点击“导出空间”,选择“Any-Block”选项并设置为以下的导出设置:
|
||||||
|
1. 文件格式 – JSON,
|
||||||
|
2. 打开“Zip 存档”
|
||||||
|
3. 打开“包含文件”
|
||||||
|
3. 制作一张或多张的屏幕截图来展示你的【ANY 经验】中的重要特点。将这些截图保存为 .png 格式。
|
||||||
|
4. 完成导出空间并且截图以后,你就可以将它们上传到【画廊】。探索[【画廊】](https://gallery.any.coop/)中现有的【ANY 经验】,获得关于命名、描述、截图的示例。接着,请登录 Github,按照 [此链接](https://github.com/anyproto/gallery/issues/new?assignees=\&labels=experience\&projects=\&template=new\_experience.yml) 创建一个申请然后填写表格:
|
||||||
|
1. 为你的申请添加标题
|
||||||
|
2. 将导出的 Zip 压缩包拖放到“Experience”栏目中
|
||||||
|
3. 在“Title”栏为你的体验写一个标题;标题应该独特、简短,并用英语书写
|
||||||
|
4. 将 .png 格式的截图拖放到“Screenshots”一栏
|
||||||
|
5. 在“Screenshots”栏目中为这个体验写一段英文描述
|
||||||
|
6. 在“Categories”栏中选择一个或多个适合你的【体验】的类别
|
||||||
|
7. 如果【体验】中的内容不是英语,请在“语言”一栏中选择语言
|
||||||
|
8. 目前,所有体验均基于 MIT 许可发布;请在“Terms”部分确认你同意该许可——你有权发布此类内容,且体验中不包含有害内容。
|
||||||
|
9. 准备就绪后,点击“Submit new issue”按钮。
|
||||||
|
5. Open Any 团队的人员将审核你提交的内容,审核通过后,你的【ANY 经验】将发布在[【画廊】](https://gallery.any.coop)中。你将会在我们的 [Github](https://github.com/anyproto/contributors) 和 [网站](https://anytype.io/contributors) 上被认定为一名贡献者。
|
11
zh-CN/community/sign-up-for-our-newsletter.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# 订阅我们的新闻邮件!
|
||||||
|
|
||||||
|
### 加入我们的新闻邮件俱乐部,及时了解所有最新的公告。 
|
||||||
|
|
||||||
|
我们即将发布一些非常令人兴奋的消息,包括 **版本更新,社区交流会,以及其他的社区新闻和活动。** 
|
||||||
|
|
||||||
|
我们的社区对 Anytype 来说非常重要,我们会第一时间通知与我们保持联系的人。 
|
||||||
|
|
||||||
|
无论你在我们的社区里还是关注了我们的社交媒体,你都将与我们保持联系。但是,我们建议你订阅我们的新闻邮件,因为我们总是第一时间通过电子邮件(有时候是时间敏感的)推送公告,你不会希望最后一个听到新东西。
|
||||||
|
|
||||||
|
[**在这里注册!**](https://cdn.forms-content.sg-form.com/168cc8e2-00a0-11ee-b0fd-be5ac30cd062)
|
20
zh-CN/data-and-security/analytics-and-tracking.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# 分析与追踪
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
[未来](https://github.com/orgs/anyproto/projects/1/views/1?pane=issue\&itemId=29227689)将可以选择退出分析服务。 
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
在产品处于测试阶段时,我们使用分析服务来帮助我们了解应用程序的整体性能、某些功能的被使用情况以及后者对留存率的影响。
|
||||||
|
|
||||||
|
**Amplitude** 是我们用于跟踪应用程序内 _事件_ 的主要服务。通过它,我们可以跟踪以下指标:
|
||||||
|
|
||||||
|
* 上个月有多少用户加入,有多少用户退出
|
||||||
|
* 创建了多少个【对象】、【块】、【对象集】和【自定义类型】(按活跃用户数量计算的平均值)
|
||||||
|
* 用户在应用中平均花费的时间
|
||||||
|
* 哪些设备被用来登录此应用
|
||||||
|
|
||||||
|
我们利用这些数据来了解我们的主要产品指标,以及我们的整体发展方向是否正确。虽然我们可以跟踪活动的频率和事件采用情况,_但我们无法以任何方式跟踪你创建的内容。_ 
|
||||||
|
|
||||||
|
在实践中意味着,比如我们知道自定义【类型】非常流行,但我们看不到这些自定义类型是什么(也看不到你用这些类型创建了哪些【对象】)。
|
||||||
|
|
||||||
|
除了 Amplitude 之外,我们的工程团队还使用 Sentry 来跟踪崩溃的发生率。
|
31
zh-CN/data-and-security/data-storage-and-deletion/README.md
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
# 存储与删除
|
||||||
|
|
||||||
|
### 存储 <a href="#storage" id="storage"></a>
|
||||||
|
|
||||||
|
Anytype 一开始是离线的;因此,你创建的所有数据将首先存储在本地。之后,数据会同步到备份节点和你的设备,以实现冗余。我们使用私有 [IPFS](https://docs.ipfs.tech/concepts/what-is-ipfs/) 网络来处理存储。这是一个点对点文件系统,有利于跨设备分散存储数据。支持本地 P2P,也就是说,如果设备连接到了相同的本地网络,就可以直接在设备间同步。无论你使用哪种网络模式,本地 P2P 都会正常工作,如果只使用本地模式(local-only),它也是在设备间同步的唯一方法。
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
[未来](https://github.com/orgs/anyproto/projects/1/views/1?pane=issue\&itemId=29227794) 你将可以更改你的存储位置。你可以考虑使用 [来自我们用户的替代方法](https://community.anytype.io/t/custom-storage-location/994) 作为 Windows 和 MacOS 上的临时解决方案。
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
#### 媒体 <a href="#media" id="media"></a>
|
||||||
|
|
||||||
|
为节省带宽,整体同步过程中不会直接下载媒体文件。相反,当你请求某个文件时,它会从备份节点或你在网络上的设备流式传输到你的设备。例如,如果你有一个 4K 视频,它将从备份节点或 P2P 设备流式传输到你的设备。因此,当你打开一个包含图像的对象时,它才会下载。当你播放视频和音频时,它才会开始下载。之后,文件将会存储在应用程序缓存中。
|
||||||
|
|
||||||
|
此外,我们还使用重复数据删除功能来减少存储空间。例如,如果同一张图片被上传了三次,则只会存储一个图片副本,以减少存储的消耗。
|
||||||
|
|
||||||
|
你可以通过 iOS 和 Android 中的“清除缓存”选项来删除设备中的所有媒体内容。这将完全删除所有数据,并强制应用程序再次完整同步一次。由于媒体下载是按需发生的,删除所有已缓存的媒体将清理出一些存储空间。
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
由于采用的是传统文件系统,如果某些文件不再与任何对象链接,它们可能会从你的图谱中消失。不过不用担心,你的所有文件都还在。我们已经在努力 [解决这个问题](https://community.anytype.io/t/are-unlinked-images-automatically-deleted/10810/3?u=isle9)。
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
### 删除 <a href="#deletion" id="deletion"></a>
|
||||||
|
|
||||||
|
<figure><img src="https://files.gitbook.com/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FJbcKxgThRdSa4vZyLbvH%2Fuploads%2Fgit-blob-dcb526128401892f1a4773091dbf735febb4a875%2FScreenshot%202021-11-02%20at%2016.25.23.png?alt=media" alt=""><figcaption><p>从废纸篓中完全删除</p></figcaption></figure>
|
||||||
|
|
||||||
|
目前,你只能删除在 Anytype 中创建的【对象】。首先,你可以将它们移到废纸篓。其次,你可以将它们从所有设备中完全删除。你的所有设备在联机时都将删除它们。这个操作是不可逆的,因此请务必小心。
|
||||||
|
|
||||||
|
被删除的对象仍然可以通过只读模式访问,可以从废纸篓访问,也可以通过之前添加的链接访问。你也可以直接通过只读模式还原这些对象,而不用去废纸篓。
|
||||||
|
|
||||||
|
由 Anytype 创建的类型和关联目前无法被删除,但在未来的版本中可能能被删除。
|
|
@ -0,0 +1,55 @@
|
||||||
|
# 网络与备份
|
||||||
|
|
||||||
|
### Anytype 网络
|
||||||
|
|
||||||
|
每个 Anytype 用户都可以访问 Anytype 提供的远程备份节点。其容量目前限制为 1 GB。对象和其他内容不受这一限制,只有文件受到该限制。如果超过此限制,就会出现警告,你可以要求获得更多存储空间。
|
||||||
|
|
||||||
|
我们的备份节点位于瑞士。
|
||||||
|
|
||||||
|
### **自托管网络**
|
||||||
|
|
||||||
|
要将你的空间和数据备份到自托管网络,你需要拥有一个网络配置。如果你还没有运行自己的网络,请看这个 [指南](https://tech.anytype.io/how-to/self-hosting)。
|
||||||
|
|
||||||
|
我们的社区贡献者已经在着手创建一个 Docker 镜像,来简化自托管基础设施的安装。你可以通过关注我们 GitHub 页面上的 [讨论](https://github.com/orgs/anyproto/discussions/17) 来参与其中。
|
||||||
|
|
||||||
|
### 仅本地模式(Local-only Mode)
|
||||||
|
|
||||||
|
如果你完全不想使用任何备份解决方案,可以使用“仅本地”模式。这将完全禁用备份节点,只有当设备都连接到同一个本地网络时,才能够在设备之间进行同步。如果你决定使用这种模式,建议定期导出你的空间,因为你的数据没有被备份到任何地方。
|
||||||
|
|
||||||
|
### 在网络之间切换
|
||||||
|
|
||||||
|
我们强烈建议为每个网络使用专用的身份(“仅本地”模式除外)。如果要切换自不同网络,请导出所有空间,并在切换网络模式之后将它导入到一个新的身份。
|
||||||
|
|
||||||
|
请注意,所有设备都应手动切换到同一网络。
|
||||||
|
|
||||||
|
#### 桌面端
|
||||||
|
|
||||||
|
1. 从你当前的身份登出。
|
||||||
|
2. 在登录界面,点击右上角的齿轮图标。
|
||||||
|
3. 在“网络”一栏中选择你想使用的网络模式。
|
||||||
|
4. 如果你选择了“自托管”模式,要将你的自托管网络配置 (\*.yml 文件) 上传到对应的栏位。
|
||||||
|
5. 点击“保存”按钮。
|
||||||
|
6. 创建一个新身份,或使用现有的身份登录。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/image (46).png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
#### iOS
|
||||||
|
|
||||||
|
1. 从你当前的身份登出。
|
||||||
|
2. 在登录界面,点击右上角的齿轮图标。
|
||||||
|
3. 点击你想使用的网络模式。
|
||||||
|
4. 如果在列表中找不到你的网络,可以点击“添加自托管网络”按钮,然后选择你的自托管网络配置 (\*.yml 文件)。
|
||||||
|
5. 创建一个新身份,或使用现有的身份登录。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/image (48).png" alt="" width="375"><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
#### Android
|
||||||
|
|
||||||
|
1. 从你当前的身份登出。
|
||||||
|
2. 进入系统级别的应用设置(按住应用的图标,点按“应用程序信息”,然后进入“附加应用程序设置”;此流程可能会因 Android 设备而不同)。
|
||||||
|
3. 在“网络”一栏中选择你想使用的网络模式。
|
||||||
|
4. 如果你选择了“自托管”模式,要将你的自托管网络配置 (\*.yml 文件) 上传到对应的栏位。
|
||||||
|
5. 回到应用程序中。
|
||||||
|
6. 创建一个新身份,或使用现有的身份登录。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/image (47).png" alt="" width="375"><figcaption></figcaption></figure>
|
19
zh-CN/data-and-security/delete-or-reset-your-account.md
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# 数据擦除
|
||||||
|
|
||||||
|
由于我们无法访问你的 Anytype 数据,也无法将你的 Anytype ID 与你的电子邮件地址联系起来,因此我们无法删除你的数据。这意味着你需要自行通过应用程序删除数据。
|
||||||
|
|
||||||
|
### 删除或重置你的账户
|
||||||
|
|
||||||
|
在顶部菜单中点击“Anytype”,打开 设置 > 数据管理,然后选择 **删除账户**。这将会删除你的个人资料和【恢复短语】:
|
||||||
|
|
||||||
|
<figure><img src="../../.gitbook/assets/Screenshot 2023-08-21 at 13.33.28.png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
如果你想开始一个新账户,执行以下操作:
|
||||||
|
|
||||||
|
1. Anytype > 设置 > 账户 > 数据管理 > 删除账户
|
||||||
|
2. Anytype > 设置 > 账户 > 登出
|
||||||
|
3. 点击:“_**注册**_”(而不是“登录”)
|
||||||
|
|
||||||
|
### 其他数据
|
||||||
|
|
||||||
|
为了遵守 GDPR,如果你通过 [support@anytype.io](mailto:support@anytype.io) 联系我们,我们可以删除其他所有东西(论坛帖子、支持工单和电子邮件订阅)。
|
31
zh-CN/data-and-security/how-we-keep-your-data-safe.md
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
# 隐私与加密
|
||||||
|
|
||||||
|
### 隐私 <a href="#privacy" id="privacy"></a>
|
||||||
|
|
||||||
|
在 Anytype 中,你的所有数据都是保密的。只有你才拥有加密密钥。Anytype 的任何人都无法解密你的数据。因此,如果你丢失了短语,我们无法恢复你的访问权限。同样,Anytype 的任何人或其他任何人都无法读取你的 Anytype 内容。
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
由于 Anytype 的特性,你无法使用 Syncthing 或 iCloud 等服务来同步随时准备编辑的对象。
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
### 加密 <a href="#keychain" id="keychain"></a>
|
||||||
|
|
||||||
|
* 你的对象以一种加密格式存储在本地和节点上,只有使用加密密钥才能够解码。每个文档的加密密钥都不一样,我们有某种密钥层次结构。
|
||||||
|
* 为了能够高效地搜索文件,我们会基于被加密的对象在本地创建你的数据的索引。这就好比两个不同的存储空间:一个存储数据,另一个存储索引。我们使用你的密钥对这些加密对象进行即时解密,执行一些逻辑,然后将结果(也即索引)保存在本地。这些索引没有被加密,但这里我们假定只有你才能访问本地数据,也就是说,你本地计算机的访问权限没有泄露。
|
||||||
|
* 这些索引不会同步到任何地方,只会保存在你的电脑上。例如,如果你有两台设备,每台设备都有它自己的索引存储空间。
|
||||||
|
|
||||||
|
{% hint style="danger" %}
|
||||||
|
在这里,我们有一个前提条件,就是用户的机器没有被入侵,并且是可信任的。基本上,如果设备被入侵,就会有很多攻击媒介,包括 RAM 扫描和密码键盘记录,这会使得本地加密的作用大打折扣。我们之后一定会进行额外的加密。**目前,我们建议开启硬盘加密和设备密码。**
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
#### 技术细节 <a href="#tech-details" id="tech-details"></a>
|
||||||
|
|
||||||
|
下面是一些关于加密和数据存储的技术细节:
|
||||||
|
|
||||||
|
* Anytype 存储你创建的每个对象的历史更改记录。
|
||||||
|
* 每个对象的更改,都有 2 个具有不同密钥的加密层。
|
||||||
|
* 第一层用于连接对象内部的更改,例如“所有这些加密数据都属于 id 为 \<abc> 的对象”。
|
||||||
|
* 第二层用于加密实际数据。我们使用带有 CFB 模式的 AES 流加密。
|
||||||
|
* 当你为一个对象创建一个新更改时,我们会定期将其发送到我们的备份节点(仅使用第一层密钥)。有关同步的更多信息,见 [此处](https://tech.anytype.io/any-sync/overview)。
|
||||||
|
* Anytype 备份节点可以访问第一层密钥,因此它可以将对象的更改分组,并在你要恢复数据时将它们打包发送。
|
||||||
|
* Anytype 备份节点无法访问第二层密钥,因此无法读取数据的实际更改。
|
41
zh-CN/data-and-security/what-is-a-recovery-phrase.md
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
---
|
||||||
|
description: There are no passwords in Anytype - only your recovery phrase.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 恢复短语(Recovery Phrase)
|
||||||
|
|
||||||
|
<figure><img src="../../.gitbook/assets/Screenshot 2023-08-17 at 18.31.38.png" alt=""><figcaption><p>你可以随时前往 个人资料 > 设置 > 恢复短语 来访问你的恢复短语。</p></figcaption></figure>
|
||||||
|
|
||||||
|
创建账户时,你会收到自己的 12 个单词的助记词短语。这个短语在设备上生成,它是访问你的账户和解密数据的唯一途径。
|
||||||
|
|
||||||
|
你的【恢复短语】同时具有登录用户名和密码的功能。这些助记词代表着你注册时生成的主密钥,类似于比特币钱包。
|
||||||
|
|
||||||
|
你没有办法更改它,保证它的安全极其重要。你可以随时前往 个人资料 > 设置 > 恢复短语 来访问它。
|
||||||
|
|
||||||
|
### 别忘了将它存下来!
|
||||||
|
|
||||||
|
我们不会保存恢复短语的副本,这意味着如果短语丢失,我们将无法协助你恢复账户。因此,我们建议你做一个数字备份,或者将它写下来并妥善保存。
|
||||||
|
|
||||||
|
每次登录新设备时,你都需要使用它。
|
||||||
|
|
||||||
|
### 什么是恢复短语?
|
||||||
|
|
||||||
|
【恢复短语】也即种子短语,是用来作为加密密钥的 **独特单词组合**。一个典型的【恢复短语】由 12、18 或 24 个预定义列表中选出的单词组成。
|
||||||
|
|
||||||
|
你的恢复短语会使用 [**BIP39 算法**](https://medium.com/coinmonks/mnemonic-generation-bip39-simply-explained-e9ac18db9477) 来生成出你账户的 [**私钥**](https://en.wikipedia.org/wiki/Public-key\_cryptography)。
|
||||||
|
|
||||||
|
### 我们为什么要使用恢复短语?
|
||||||
|
|
||||||
|
【恢复短语】的主要目的是为备份和恢复加密信息提供一种安全便捷的方法。通过使用【恢复短语】,即使设备丢失、被盗或损坏,我们也能恢复私人密钥并访问数字资产。它就像一把打开我们数据的大门的万能钥匙,这使它成为长期保存数据和确保数据安全不可或缺的工具。
|
||||||
|
|
||||||
|
【恢复短语】遵循一项名为 BIP-39 (Bitcoin Improvement Proposal 39) 的标准化协议,用来确保不同钱包和应用程序之间的兼容性。BIP-39 协议还引入了“校验和”来检测转录错误,从而最大限度地降低因人为错误而造成损失的风险。
|
||||||
|
|
||||||
|
### 任何人都可以获取我的恢复短语吗?
|
||||||
|
|
||||||
|
【恢复短语】的优势在于它能够保护你的数字资产。如果生成、管理和存储得当,任何人几乎都不可能在未经你同意或不知情的情况下获取你的【恢复短语】。【恢复短语】是通过复杂的数学算法生成的,可能的组合数量之多,使攻击者猜测或强行获取【恢复短语】的难度极大。
|
||||||
|
|
||||||
|
不过,重要的是要明白,保护【恢复短语】的责任最终在于你自己。为了方便,以数字形式来存储它看起来很有吸引力,但这些方法可能会带来漏洞。相反,建议将【恢复短语】写在物理介质上,并安全地存储在只有你自己知道的地方。避免将【恢复短语】存储在连接互联网的设备上或云存储中,因为它们可能会受到黑客或未经授权访问的破坏。
|
||||||
|
|
||||||
|
### Linux 上的登录问题
|
||||||
|
|
||||||
|
Linux 用户可能在每次登录时都会被要求输入【恢复短语】。要解决这个问题,请安装密钥串(Keychain)。最流行的是 [GNOME Keyring](https://wiki.gnome.org/Projects/GnomeKeyring) — 请查看 [社区论坛上的讨论](https://community.anytype.io/t/linux-version-does-not-keep-me-logged-in/4859)。除此之外,请确保你已事先满足所有的 [依赖项](https://github.com/anyproto/anytype-ts#dependencies)。
|
41
zh-CN/faqs/how-do-i-get-an-account.md
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
---
|
||||||
|
description: >-
|
||||||
|
How do I get access to the application and an account?
|
||||||
|
object?
|
||||||
|
---
|
||||||
|
|
||||||
|
# How do I get access to the application and an account?
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
You can download the software at any time at download.anytype.io.
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
1. You can sign up for an onboarding session via [Calendly](https://calendly.com/anytype/alpha-onboarding)
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
This hour-long session, run by the Anytype community team, is designed to give you an overview of the major elements of Anytype on desktop and mobile. There will also be an open Q&A with the team, and we look forward to helping you start your Anytype journey.
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
2. After the onboarding session you get an email with:
|
||||||
|
* An invite code to your the Anytype Community on [Discourse](https://community.anytype.io/)
|
||||||
|
* Your invite code to sign up in the Anytype application
|
||||||
|
|
||||||
|
3. Download the Anytype software if you haven't already and use the "Sign up" option to set up your account
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
Make sure you use the Anytype invite code you received via email and not the invite code for the Discourse forum!
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
4. Off you go! You are now an *Alpha user*. Make sure to checkout the [Anytype Docs](https://doc.anytype.io/d/) and [Team Anytype's Vimeo](https://vimeo.com/teamanytype) for some useful information on how to get started.
|
||||||
|
|
||||||
|
5. Don't forget to backup your passphrase which acts as your password to be able to regain access if you log out or if you want to login on another device.
|
||||||
|
|
||||||
|
6. Don't forget to sign up for the Anytype Community on [Discourse](https://community.anytype.io/) with your other invite code! Any bugs you find or any feature requests you have can be posted there.
|
||||||
|
|
||||||
|
7. Additionally, (or alternatively) you can join the following socials to chat to your fellow Anytypers
|
||||||
|
|
||||||
|
* Discord: https://discord.gg/GPHrYrNf
|
||||||
|
* Telegram (Alpha users): https://t.me/anytype
|
||||||
|
* Telegram (Android users): ???
|
||||||
|
|
||||||
|

|
11
zh-CN/intro/connect-with-us.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
description: >-
|
||||||
|
We'd love to keep in touch. Find us online to stay updated with the latest
|
||||||
|
happenings in the Anyverse:
|
||||||
|
---
|
||||||
|
|
||||||
|
# 🌐 联系我们
|
||||||
|
|
||||||
|
别忘了加入我们的 [社区论坛](../community/community-forum/ "mention") 以及 [开源项目倡议](../community/join-the-open-source-project/ "mention")!
|
||||||
|
|
||||||
|
<table data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th><th data-hidden data-card-cover data-type="files"></th></tr></thead><tbody><tr><td><h3>新闻邮件</h3></td><td>随时了解产品更新、公司新闻和来自 Anyteam 的想法</td><td><a href="https://anytype.io/?popup=mailinglist">https://anytype.io/?popup=mailinglist</a></td><td></td></tr><tr><td><h3>博客</h3></td><td>阅读 AnyTeam 的更新和公告</td><td><a href="https://blog.anytype.io">https://blog.anytype.io</a></td><td></td></tr><tr><td><h3>Twitter</h3></td><td>了解行业内正在发生的热点事件</td><td><a href="https://twitter.com/anytypelabs?lang=en">https://twitter.com/anytypelabs?lang=en</a></td><td></td></tr><tr><td><h3>YouTube</h3></td><td>观看一些有趣的教育内容,了解数据所有权为何如此重要</td><td><a href="https://www.youtube.com/c/anytype">https://www.youtube.com/c/anytype</a></td><td></td></tr><tr><td><h2>Reddit</h2></td><td>发布你感兴趣的任何问题</td><td><a href="https://www.reddit.com/r/Anytype/">https://www.reddit.com/r/Anytype/</a></td><td></td></tr><tr><td><h2>Telegram</h2></td><td>与我们的团队和社区成员聊天</td><td><a href="https://t.me/anytype">https://t.me/anytype</a></td><td></td></tr></tbody></table>
|
15
zh-CN/intro/readme/onboarding.md
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# 🎇 入门
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
这是 2023 年 6 月的一段 demo 电话会议。 
|
||||||
|
|
||||||
|
如果你想参与下次与 Anyteam 的公开电话会议,请点击 [**此处**](https://lu.ma/anytype)!
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
我们的联合创始人 Zhanna 与社区讨论了 Anytype 的使命,以及为什么我们认为本地优先、尊重隐私和 p2p 同步的应用程序是存储你的想法的必要基础。
|
||||||
|
|
||||||
|
{% embed url="https://www.youtube.com/watch?v=UAEzfjIRgIg" %}
|
||||||
|
|
||||||
|
Charlotte 展示了 Anytype 的基本设置,并以每日日志和图书集合为例,介绍了 Anytype 的主要功能。最后我们以参与者的问答环节作为结束。
|
||||||
|
|
||||||
|
{% embed url="https://www.youtube.com/watch?v=y7Qt1WAS-z4&t=1751s" %}
|
55
zh-CN/intro/setting-up-your-profile/README.md
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
---
|
||||||
|
description: >-
|
||||||
|
Let's get started using Anytype! Find out what you can customize in this
|
||||||
|
chapter.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 👾 设置你的账户
|
||||||
|
|
||||||
|
### 下载应用程序
|
||||||
|
|
||||||
|
在 [download.anytype.io](https://download.anytype.io) 上查找适用于你的操作系统的最新版 Anytype
|
||||||
|
|
||||||
|
Anytype 被安装于:
|
||||||
|
|
||||||
|
* 在 Windows 10 或更高版本中,通常位于:\
|
||||||
|
`C:\Users\<username>\Appdata\Local\Programs\anytype2\Anytype.exe`\
|
||||||
|
**username** 代表你的用户名,也即工作目录。
|
||||||
|
* 对于 MacOS,通常为:`HHD > Users >`` `_`Username`_` ``> Library > Application Support > anytype`
|
||||||
|
* 对于 Linux,你可以在 `~/.config/anytype` 中找到你的工作目录
|
||||||
|
* 对于 Android,是你的默认位置,通常是:\_device/data/app\_.\
|
||||||
|
我们还存储了一些缓存在:_device/data/data/io.anytype.app_\
|
||||||
|
Anytype 的目录存储在受保护的应用数据文件夹中,安卓设备的用户无法访问该文件夹。
|
||||||
|
* 对于 iOS,则是由 iOS 决定的标准安装路径。
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
Anytype 没有浏览器版本。Anytype 是一款在桌面端或移动设备上工作的独立软件。浏览器应用程序存在许多漏洞,会损害我们对数据安全和加密的承诺。
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
### 创建账户
|
||||||
|
|
||||||
|
如果你还没有创建账户,只需点击 **注册(Join)** 然后按照提供的说明操作即可轻松创建账户。
|
||||||
|
|
||||||
|
#### 使用你的恢复短语登录
|
||||||
|
|
||||||
|
相反,如果你已经有一个账户,请点击 **登录(Login)** 然后输入你的恢复短语(recovery phrase)来继续。
|
||||||
|
|
||||||
|
{% hint style="danger" %}
|
||||||
|
将你的 [恢复短语](../../data-and-security/what-is-a-recovery-phrase.md "mention") 保存在安全的地方,不要与任何人分享!
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
#### 使用二维码登录
|
||||||
|
|
||||||
|
除了使用恢复短语登录外,如果你的桌面端设备就在附近,还可以使用二维码更快地登录。
|
||||||
|
|
||||||
|
要使用二维码登录,只需导航到你的恢复短语。
|
||||||
|
|
||||||
|
设置 > 恢复短语。
|
||||||
|
|
||||||
|
在你的恢复短语下方,你会发现模糊的二维码,点击图像后它就会清晰地显示出来。
|
||||||
|
|
||||||
|
用移动端设备扫描此代码,应用程序就会设置完成。
|
||||||
|
|
||||||
|
### 迁移现有数据
|
||||||
|
|
||||||
|
如果你想要导入现有的数据,可以查看 [导入与导出](space-settings.md#import-and-export "mention")。
|
|
@ -0,0 +1,65 @@
|
||||||
|
---
|
||||||
|
description: How do we customize and edit?
|
||||||
|
---
|
||||||
|
|
||||||
|
# 侧边栏 & 小部件
|
||||||
|
|
||||||
|
侧边栏由可自定义的小部件组成,能让你预览和导航到你的【对象】。
|
||||||
|
|
||||||
|
默认情况下,侧边栏包含链接到 [【资料库 (Library)】](../../../basics/anytype-library/) 和【废纸篓】的小部件。
|
||||||
|
|
||||||
|
一般来说,使用 Anytype 编辑器创建的 _任何_ 对象都可以用作小部件,并使用链接或树状图的视图格式进行显示。【对象集合 (Sets)】 和 【集锦 (Collections)】 - 包含对象的【对象】 - 能够以包含对象列表的小部件的形式使用。
|
||||||
|
|
||||||
|
此外,Anytype 还为 _非对象的_ 小部件提供了多个选择,你可以在侧边栏中添加或移除,包括:
|
||||||
|
|
||||||
|
* 收藏夹(Favorites):所有被你标星收藏的对象,与对象类型无关
|
||||||
|
* 对象集合(Sets):类型为【对象集合】的所有对象
|
||||||
|
* 集锦(Collections):类型为【集锦】的所有对象
|
||||||
|
* 最近编辑(Recently edited):你最近编辑过的对象(跨设备全局同步)
|
||||||
|
* 最近打开(Recently opened):你最近打开过的对象(针对特定设备)
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
这些小部件中的【对象】无法被手动排序。你需要创建自己的小部件才能实现这一目的。
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
### 自定义你的侧边栏小部件
|
||||||
|
|
||||||
|
在侧边栏的底部有一个 "编辑小部件 "按钮,点击后,会显示为侧边栏添加或删除小部件的选项。
|
||||||
|
|
||||||
|
点击“添加”,将会让你选择小部件来源。同样,小部件来源可以是你之前创建的任何对象,也可以是上面的小部件选项的列表。
|
||||||
|
|
||||||
|
在桌面端,还可以直接将对象拖放到侧边栏中。
|
||||||
|
|
||||||
|
### 调整你的小部件外观
|
||||||
|
|
||||||
|
根据小部件来源的不同,你可以选择不同的布局。
|
||||||
|
|
||||||
|
可以以“链接”或“树状图”小部件的方式,查看在编辑器中创建的单个【对象】(页面 (Pages)、笔记 (Notes) 等)。“链接”小部件只显示对象的名称,而“树状图”小部件则显示与来源对象通过一级和二级链接相连的所有对象。
|
||||||
|
|
||||||
|
<figure><img src="../../../../.gitbook/assets/Screenshot 2023-08-18 at 09.01.31.png" alt=""><figcaption><p>上图中,“Self”小部件使用树状图视图显示,而“Home”小部件则使用链接视图显示。</p></figcaption></figure>
|
||||||
|
|
||||||
|
另一方面,从对象集合(Sets)和集锦(Collections)创建小部件时,你将会看到“列表”或“紧凑型列表”的视图选项。这两种视图都能预览指定的对象集合/集锦中包含的对象,但行间距和描述预览会有所不同。
|
||||||
|
|
||||||
|
<figure><img src="../../../../.gitbook/assets/Screenshot 2023-08-18 at 09.08.53 (1).png" alt=""><figcaption><p>见上图,“Disco Room”小部件分别以紧凑列表(上)和列表(下)的形式显示。</p></figcaption></figure>
|
||||||
|
|
||||||
|
### 移动端小部件
|
||||||
|
|
||||||
|
#### 组织你的小部件
|
||||||
|
|
||||||
|
在移动设备上打开 Anytype 时,你会看到当前的 **【小部件】** 以及底部的 3 个导航选项。
|
||||||
|
|
||||||
|
你的 **小部件** 可以自定义,就像桌面端应用程序侧边栏中的小部件一样。
|
||||||
|
|
||||||
|
要编辑和移动小部件:滚动到列表底部,在【废纸篓】下方可以找到“编辑小部件”。
|
||||||
|
|
||||||
|
点击这个按钮之后,你会在每个小部件的角落看到一个灰色的小减号。现在你就可以删除、添加或者重新排列小部件了。
|
||||||
|
|
||||||
|
#### 使用小部件
|
||||||
|
|
||||||
|
小部件是自定义和优化 Anytype 移动端用法的最佳方式,是你最好的朋友。
|
||||||
|
|
||||||
|
为移动端设置小部件,可以让你创建快速访问入口,并管理你的偏好访问对象。
|
||||||
|
|
||||||
|
将特定的【对象】添加到顶部,便于快速访问。
|
||||||
|
|
||||||
|
把【对象集合】添加到小部件,比如任务管理,来快速查看你接下来要做什么。
|
|
@ -0,0 +1,9 @@
|
||||||
|
---
|
||||||
|
description: >-
|
||||||
|
Set up your Anytype to easily navigate to frequently-used pages for work,
|
||||||
|
life, or school.
|
||||||
|
---
|
||||||
|
|
||||||
|
# ✨ 简洁的仪表板
|
||||||
|
|
||||||
|
{% embed url="https://www.youtube.com/watch?v=NCVeIW28tq0" %}
|
19
zh-CN/intro/setting-up-your-profile/installation.md
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# 其他导航
|
||||||
|
|
||||||
|
## 旧的主页
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/w=3840,quality=80 (1).webp" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
Alpha 版应用的主页已经被移除,取而代之的是新的侧边栏和小部件。如果你非常喜欢这种布局,可以尝试使用带有相簿(Gallery)视图的集合来重新创建它。
|
||||||
|
|
||||||
|
## 移动端导航
|
||||||
|
|
||||||
|
在移动设备上,导航采用极简化设计。
|
||||||
|
|
||||||
|
你有 3 个选项:搜索、新建对象和个人资料。 
|
||||||
|
|
||||||
|
**搜索** - 浏览最近的对象,搜索具体的对象。 
|
||||||
|
|
||||||
|
**新建对象** - 创建新对象、页面(page)、笔记(note)等。 
|
||||||
|
|
||||||
|
**个人资料** - 查看你的个人资料、账户、设置等。 
|
65
zh-CN/intro/setting-up-your-profile/space-settings.md
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
---
|
||||||
|
description: Customize your space
|
||||||
|
---
|
||||||
|
|
||||||
|
# 空间设置
|
||||||
|
|
||||||
|
### 自定义空间
|
||||||
|
|
||||||
|
在这里个性化你的 [空间](../../basics/space.md "mention")。在应用程序的左上角,可以找到你的空间名称和设置。
|
||||||
|
|
||||||
|
单击空间名称将打开你的空间设置。
|
||||||
|
|
||||||
|
这些是你空间中可以自定义的选项:
|
||||||
|
|
||||||
|
1. 自定义你的 **空间图标**
|
||||||
|
2. 添加你的 **空间名称**
|
||||||
|
3. 选择你的 **主页(Homepage)**
|
||||||
|
|
||||||
|
### 选择你的空间图标
|
||||||
|
|
||||||
|
你的空间图标会在引导过程中自动生成。如果要更改,只需点击图标,然后从 emoji 菜单中选择或上传你自己的图片。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Screenshot 2023-08-17 at 18.13.04.png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
### 选择你的主页(Homepage)
|
||||||
|
|
||||||
|
每次打开 Anytype 时,你都会先看到自己的主页。默认情况下,你的主页被预设为“仪表板”对象(一个 Page),能帮助你在空间内导向。
|
||||||
|
|
||||||
|
不过,你可以通过空间设置中的下拉菜单,在关联图谱(Graph)、上次打开的对象或你创建的某个对象中进行选择,从而更改你的主页。
|
||||||
|
|
||||||
|
<figure><img src="../../../.gitbook/assets/Screenshot 2023-08-17 at 18.27.47.png" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
### 导入 & 导出
|
||||||
|
|
||||||
|
你可以通过 Anytype > 空间设置 > 集成 > 导入到空间/导出空间,来导入或导出到你的空间。
|
||||||
|
|
||||||
|
在应用的导入方面,我们目前只提供 **Notion** 的导入,在文件格式方面,我们目前提供这些格式:
|
||||||
|
|
||||||
|
* Markdown
|
||||||
|
* HTML
|
||||||
|
* TXT
|
||||||
|
* CSV
|
||||||
|
* Any-Block 
|
||||||
|
* Protobuf
|
||||||
|
* JSON
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
由于 Anytype 中尚未包含 Notion 的所有功能,因此某些 Notion 数据可能无法被正常导入。
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
当你导入完成后,侧边栏的收藏夹小部件中会出现一个新的集锦。所有导入的对象都会出现在那里。
|
||||||
|
|
||||||
|
在导出格式方面,我们目前提供 **Markdown** 和 **Any-Block**(Protobuf 和 JSON)两种格式。
|
||||||
|
|
||||||
|
### 移动端的空间设置
|
||||||
|
|
||||||
|
点击屏幕下方导航栏最右侧的按钮。
|
||||||
|
|
||||||
|
即可打开设置和账户信息。
|
||||||
|
|
||||||
|
你可以用自己选择的 emoji 符号或上传的照片来个性化空间。
|
||||||
|
|
||||||
|
在 **空间名称** 下方更改你的空间名称。
|
||||||
|
|
||||||
|
在 **账户和数据** 下面更改账户个人资料的名称和图像。
|
54
zh-CN/migration/migration-from-the-legacy-app.md
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
---
|
||||||
|
description: Instructions for our Alpha testers
|
||||||
|
---
|
||||||
|
|
||||||
|
# 从旧版应用(Legacy)迁移
|
||||||
|
|
||||||
|
#### **如何迁移?**
|
||||||
|
|
||||||
|
如果你已在 Alpha/Legacy 版本(0.31.\* 及更早版本)中创建了想要保留的内容,则需要对其进行迁移。这个过程相对比较简单:
|
||||||
|
|
||||||
|
1. 通过 Anytype > 检查更新,或通过 [这个链接](https://download.anytype.io/?ref=migration\&platform=desktop),将桌面端的旧版应用程序更新到其最新版本 (0.31.9)。
|
||||||
|
|
||||||
|
<div align="left">
|
||||||
|
|
||||||
|
<figure><img src="../../.gitbook/assets/Check updates.png" alt="" width="331"><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
2. 从更新后的旧版应用程序导出:文件 > 导出 > Protobuf。
|
||||||
|
|
||||||
|
<div align="left">
|
||||||
|
|
||||||
|
<figure><img src="../../.gitbook/assets/Anytype Export.gif" alt="" width="336"><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
3. [下载](https://download.anytype.io/),安装,并打开 Beta 版应用。
|
||||||
|
4. 将你的备份导入 Beta 版应用。
|
||||||
|
|
||||||
|
有关更多详细信息,请查看我们的 [迁移路径指南](https://community.anytype.io/t/anytype-legacy-to-beta-migration-trail-guide/9274)。
|
||||||
|
|
||||||
|
#### **在哪里下载最新的 Alpha (旧版)应用程序**
|
||||||
|
|
||||||
|
如果你在导出数据前已经删除了 Alpha 应用程序,则可能需要重新下载它来完成导出。你可以通过 [以下链接](https://download.anytype.io/?ref=migration\&platform=desktop) 下载适用于 Mac、Windows 和 Linux 版的 0.31.9 桌面端应用程序。
|
||||||
|
|
||||||
|
#### 我怎样跳过导入备份步骤?
|
||||||
|
|
||||||
|
除了迁移,你还有以下选择:
|
||||||
|
|
||||||
|
* 创建新账户。启动应用程序时,选择“注册”(Join) 而不是“登录”(Login)。
|
||||||
|
|
||||||
|
<div align="left">
|
||||||
|
|
||||||
|
<figure><img src="../../.gitbook/assets/Join Anytype.png" alt="" width="354"><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
* 将选择的【对象】逐个从 Legacy 版手动导入到 Beta 版。如果你的 Legacy 帐户已经变得乱七八糟,但你有一些项目想转到 Beta 版,可能需要这样做。
|
||||||
|
|
||||||
|
对于这些选择,你都需要创建一个新账户,这将生成一个新的【恢复短语】。
|
||||||
|
|
||||||
|
#### 故障排除
|
||||||
|
|
||||||
|
* 错误“open profile: file does not exist”
|
||||||
|
* 原因:旧的 Legacy 版本(如 0.31.0)会出现这种情况。
|
||||||
|
* 解决方法:按上述说明更新 Legacy 版应用程序。
|
||||||
|
* 错误“无法运行服务 'client.clientspace':EOF”\*
|
126
zh-CN/miscellaneous/feature-list-by-platform.md
Normal file
|
@ -0,0 +1,126 @@
|
||||||
|
---
|
||||||
|
description: Anytype is available on Mac, Windows, Linux, iOS, and Android.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 功能 & 对比
|
||||||
|
|
||||||
|
### 应用对比
|
||||||
|
|
||||||
|
有关 Anytype 和 Notion 的比较,请查看 [Akshay Hallur](https://bloggingx.com/author/akshay/) 的文章。
|
||||||
|
|
||||||
|
{% embed url="https://bloggingx.com/anytype-review/" %}
|
||||||
|
|
||||||
|
### 被提及最多的功能需求
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
你可以在 [这里](https://github.com/orgs/anyproto/projects/1/views/1) 查看我们的完整路线图。
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
* Web 剪辑 / 分享
|
||||||
|
* 协作
|
||||||
|
* API 与插件
|
||||||
|
* 发布到网络
|
||||||
|
* 公式
|
||||||
|
* 提醒与通知
|
||||||
|
* AI 助手
|
||||||
|
* 转换
|
||||||
|
* 白板 / 画板
|
||||||
|
* Web 应用
|
||||||
|
* 更好的标签系统
|
||||||
|
|
||||||
|
#### 已实现的
|
||||||
|
|
||||||
|
* 日历 - [0.36.0](https://community.anytype.io/t/anytype-desktop-0-36-0-released/12198)
|
||||||
|
|
||||||
|
### 移动端功能
|
||||||
|
|
||||||
|
以下是按平台分列的功能以及其实现状态的任务清单。列出的所有功能均已在桌面端 0.38.\* 上实现,用于比较的移动端版本均为 0.28.\* 。
|
||||||
|
|
||||||
|
{% tabs %}
|
||||||
|
{% tab title="账户" %}
|
||||||
|
| 功能/操作 | iOS | Android |
|
||||||
|
| ------------------------------ | --- | ------- |
|
||||||
|
| 拼写检查 | No | No |
|
||||||
|
| 明亮/黑暗模式 | Yes | Yes |
|
||||||
|
| 壁纸 | Yes | Yes |
|
||||||
|
| 默认对象类型 | Yes | Yes |
|
||||||
|
| Pin 码 | No | No |
|
||||||
|
| 删除账户 | Yes | Yes |
|
||||||
|
| Notion | No | No |
|
||||||
|
| Markdown | No | No |
|
||||||
|
| 入门工具提示 | No | No |
|
||||||
|
| 应用内反馈问卷 | No | No |
|
||||||
|
| 反馈清单 | No | No |
|
||||||
|
| 对象的历史版本 | No | No |
|
||||||
|
| 对象的同步状态 | Yes | Yes |
|
||||||
|
{% endtab %}
|
||||||
|
|
||||||
|
{% tab title="导航" %}
|
||||||
|
| 功能/操作 | iOS | Android |
|
||||||
|
| -------------------------- | --- | ------- |
|
||||||
|
| 键盘快捷键 | No | No |
|
||||||
|
| 导航菜单 (反向链接) | No | No |
|
||||||
|
| 小部件 | Yes | Yes |
|
||||||
|
| 关联图谱 | No | No |
|
||||||
|
| 全局搜索 | Yes | Yes |
|
||||||
|
| 文档内搜索 (Ctrl + F) | No | No |
|
||||||
|
| 侧边栏 | No | No |
|
||||||
|
{% endtab %}
|
||||||
|
|
||||||
|
{% tab title="编辑器" %}
|
||||||
|
| 功能/操作 | iOS | Android |
|
||||||
|
| --------------------------------------- | --- | ------- |
|
||||||
|
| Markdown | No | No |
|
||||||
|
| 导出到 PDF, Markdown, HTML, Protobuf | No | No |
|
||||||
|
| 历史版本 | No | No |
|
||||||
|
| 文本颜色 | Yes | Yes |
|
||||||
|
| 文本背景颜色 | Yes | Yes |
|
||||||
|
| 标题颜色 | Yes | Yes |
|
||||||
|
| 标题背景颜色 | Yes | Yes |
|
||||||
|
| 块的复制与删除 | Yes | Yes |
|
||||||
|
| 安装类型 | Yes | Yes |
|
||||||
|
| 创建自定义类型 | No | No |
|
||||||
|
| 安装关联 | Yes | Yes |
|
||||||
|
| 创建自定义关联 | Yes | Yes |
|
||||||
|
| 修改对象类型 | Yes | Yes |
|
||||||
|
| 文本块 - 转换为对象 | No | No |
|
||||||
|
{% endtab %}
|
||||||
|
|
||||||
|
{% tab title="块" %}
|
||||||
|
| 功能/操作 | iOS | Android |
|
||||||
|
| --------------- | --------- | --------- |
|
||||||
|
| 文本 | Yes | Yes |
|
||||||
|
| 标题 | Yes | Yes |
|
||||||
|
| 大标题 (Heading) | Yes | Yes |
|
||||||
|
| 子标题 (Subheading) | Yes | Yes |
|
||||||
|
| 高亮 | Yes | Yes |
|
||||||
|
| 调出 | Yes | Yes |
|
||||||
|
| 复选框 | Yes | Yes |
|
||||||
|
| 项目符号列表 | Yes | Yes |
|
||||||
|
| 编号列表 | Yes | Yes |
|
||||||
|
| 折叠列表 | Yes | Yes |
|
||||||
|
| 文件 | Yes | Yes |
|
||||||
|
| 图片 | Yes | Yes |
|
||||||
|
| 视频 | Yes | Yes |
|
||||||
|
| 音频 | Yes | Yes |
|
||||||
|
| PDF | Yes | Yes |
|
||||||
|
| 书签 | Yes | Yes |
|
||||||
|
| 代码 | Yes | Yes |
|
||||||
|
| LaTeX | No | No |
|
||||||
|
| 分隔线 | Yes | Yes |
|
||||||
|
| 圆点分隔线 | Yes | Yes |
|
||||||
|
| 简单表格 | Yes | Yes |
|
||||||
|
| 行内对象集合 | Supported | Supported |
|
||||||
|
| 链接到对象 | Yes | Yes |
|
||||||
|
| 关联 | Yes | Yes |
|
||||||
|
| 嵌入 | No | No |
|
||||||
|
{% endtab %}
|
||||||
|
|
||||||
|
{% tab title="资料库" %}
|
||||||
|
<table data-full-width="false"><thead><tr><th>功能/操作</th><th>iOS</th><th>Android</th></tr></thead><tbody><tr><td>资料库</td><td>No</td><td>Yes</td></tr><tr><td>编辑与删除类型(名称、模板)</td><td>No</td><td>仅限于类型</td></tr><tr><td>编辑与删除关联</td><td>No</td><td>Yes</td></tr><tr><td>创建、删除模板</td><td>No</td><td>No</td></tr><tr><td>编辑模板</td><td>Yes</td><td>Yes</td></tr><tr><td>应用默认模板</td><td>Yes</td><td>Yes</td></tr><tr><td>创建标签</td><td>Yes</td><td>Yes</td></tr></tbody></table>
|
||||||
|
{% endtab %}
|
||||||
|
|
||||||
|
{% tab title="对象集合" %}
|
||||||
|
<table data-full-width="false"><thead><tr><th>功能/操作</th><th>iOS</th><th>Android</th></tr></thead><tbody><tr><td>网格视图</td><td>Yes</td><td>Yes</td></tr><tr><td>列表视图</td><td>Yes</td><td>Yes</td></tr><tr><td>相簿视图</td><td>Yes</td><td>Yes</td></tr><tr><td>看板视图</td><td>No</td><td>No</td></tr><tr><td>日历视图</td><td>No</td><td>No</td></tr><tr><td>添加新视图</td><td>Yes</td><td>Yes</td></tr><tr><td>添加新对象</td><td>Yes</td><td>Yes</td></tr><tr><td>排序和筛选</td><td>Yes</td><td>Yes</td></tr><tr><td>在对象集合中搜索</td><td>No</td><td>No</td></tr><tr><td>批量选择</td><td>No</td><td>No</td></tr><tr><td>基于关联的对象集合</td><td>Yes</td><td>Yes</td></tr></tbody></table>
|
||||||
|
{% endtab %}
|
||||||
|
{% endtabs %}
|
11
zh-CN/miscellaneous/glossary-1.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# 技术类术语表
|
||||||
|
|
||||||
|
Void — 用户身份的集锦,可以看作是一个图谱。
|
||||||
|
|
||||||
|
密钥(Key) — 用户创建 Void 时,应用程序会生成一对密钥(私钥和公钥)。
|
||||||
|
|
||||||
|
身份(Identity) — 技术上来说,身份就是公钥(参见“密钥”),也可以看作是账户 ID。
|
||||||
|
|
||||||
|
网络(Network) — 一组协同工作的节点(Nodes)。
|
||||||
|
|
||||||
|
节点(Node) — 存储和处理数据的远程服务器。
|
24
zh-CN/miscellaneous/glossary.md
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
---
|
||||||
|
description: Working your way through the anytype primitives
|
||||||
|
---
|
||||||
|
|
||||||
|
# 概览
|
||||||
|
|
||||||
|
<figure><img src="../../.gitbook/assets/Anytype Primitives - Frame 2-2 - zh-cn.jpg" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
要充分利用 Anytype,需要熟练掌握基本的术语以及各部分之间如何配合。从简单的笔记到复杂的仪表板,最终到你自己的小网络,你都要用到这些基本组件。
|
||||||
|
|
||||||
|
它们包括:
|
||||||
|
|
||||||
|
* [空间(Space)](../basics/space.md "mention"):你的对象关联图谱的容器——在 beta 阶段,这相当于你的账户。Anytype 的未来版本将允许具有不同访问入口控件的多个空间。
|
||||||
|
* [对象(Objects)](../basics/object-editor/ "mention"):Anytype 的基础构成。它们代表着账户中最小的可链接组件;每个对象都是你的图谱中的一个节点(node)。
|
||||||
|
* [块(Blocks)](../basics/object-editor/blocks.md "mention"):【对象】内实际内容的容器。块的行为由它的【块类型】定义。
|
||||||
|
* [类型(Types)](../basics/types/ "mention"):对象的分类系统。所有对象都必须有一个类型。
|
||||||
|
* [布局(Layouts)](../basics/types/layouts.md "mention"):定义【对象】的总体外观和感觉,并决定可以对【对象】执行的操作。
|
||||||
|
* [模板(Templates)](../basics/types/templates/ "mention"):为特定的类型而预保存的内容格式,可在创建【对象】的时候应用。模板针对某个特定的类型,而类型可以有多个模板。
|
||||||
|
* [关联(Relations)](../basics/relations/ "mention"):对象的连接器;要么是共享的属性,要么是被定义的链接。
|
||||||
|
* [资料库(Library)](../basics/anytype-library/ "mention"):所有【类型】和【关联】所在的地方。
|
||||||
|
* [链接(Links)](../anytype-basics/object-editor/linking-objects.md "mention"):通过关联或直接地在对象之间建立联系。
|
||||||
|
* [关联图谱(Graph)](../basics/graph.md "mention"):非分层的数据结构,包含了你在空间中创建的所有对象,以及它们之间的联系。
|
||||||
|
* [对象集合(Sets)](../basics/sets/ "mention"):实时查询具有某种共同特征(即【类型】或【关联】)的所有【对象】。
|
||||||
|
* [集锦(Collections)](../basics/collections.md "mention"):手动将多个对象整理到一个对象当中。 
|
6
zh-CN/miscellaneous/keyboard-shortcuts/README.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
description: Anytype supports keyboard shortcuts for quicker navigation.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 键盘快捷键
|
||||||
|
|
65
zh-CN/miscellaneous/keyboard-shortcuts/commands.md
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
# 命令类
|
||||||
|
|
||||||
|
### 菜单
|
||||||
|
|
||||||
|
**/** | 激活命令菜单
|
||||||
|
|
||||||
|
**上 & 下 箭头** | 在菜单中移动
|
||||||
|
|
||||||
|
**左 & 右 箭头** | 进入 & 关闭 子菜单
|
||||||
|
|
||||||
|
**Esc** | 关闭菜单
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
按“/”键后输入正确的块类型名称,无需鼠标即可将其选中,以及更改块颜色和激活操作功能。
|
||||||
|
|
||||||
|
### 文本
|
||||||
|
|
||||||
|
**/text** | 文本块
|
||||||
|
|
||||||
|
**/h1** | 大标题
|
||||||
|
|
||||||
|
**/h2** | 中标题
|
||||||
|
|
||||||
|
**/h3** | 小标题
|
||||||
|
|
||||||
|
**/high** | 更大地高亮文本块
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 列表
|
||||||
|
|
||||||
|
**/todo** | 带复选框的待办列表
|
||||||
|
|
||||||
|
**/bullet** | 项目符号列表
|
||||||
|
|
||||||
|
**/num** | 编号列表
|
||||||
|
|
||||||
|
**/toggle** | 折叠列表
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 对象(Objects)
|
||||||
|
|
||||||
|
**@today, @tomorrow** | 创建一个带有相对日期的对象。同样的有:@three days ago, @last month, @2023-01-01
|
||||||
|
|
||||||
|
**/page** | 页面
|
||||||
|
|
||||||
|
**/file** | 文件
|
||||||
|
|
||||||
|
**/image** | 图片
|
||||||
|
|
||||||
|
**/video** | 视频
|
||||||
|
|
||||||
|
**/bookmark** | 书签
|
||||||
|
|
||||||
|
**/link** | 链接到页面
|
||||||
|
|
||||||
|
### 其他
|
||||||
|
|
||||||
|
**/line** | 分隔线
|
||||||
|
|
||||||
|
**/dots** | 圆点分隔线
|
||||||
|
|
||||||
|
**/code** | 代码片段
|
99
zh-CN/miscellaneous/keyboard-shortcuts/main-commands.md
Normal file
|
@ -0,0 +1,99 @@
|
||||||
|
# 主要命令
|
||||||
|
|
||||||
|
### 基本
|
||||||
|
|
||||||
|
**⌘ + N** | 创建新对象 
|
||||||
|
|
||||||
|
**⌘ + Shift + N** | 新建 Anytype 窗口 
|
||||||
|
|
||||||
|
**⌘ + Option + N** | 在新窗口中创建新对象 
|
||||||
|
|
||||||
|
**⌘ + Enter** | 从搜索界面在新窗口中打开对象 
|
||||||
|
|
||||||
|
**⌘ + Option + F** | 切换全屏 
|
||||||
|
|
||||||
|
**⌘ + Z** | 撤销 
|
||||||
|
|
||||||
|
**⌘ + Shift + Z** | 重做 
|
||||||
|
|
||||||
|
**⌘ + P** | 打印 
|
||||||
|
|
||||||
|
**⌘ + F** | 页面中查找 
|
||||||
|
|
||||||
|
**⌘ + Q** | 关闭 Anytype 
|
||||||
|
|
||||||
|
**⌘ + Y** | 显示页面编辑历史记录 
|
||||||
|
|
||||||
|
**Shift + 点击** | 在浮动视图中打开页面链接 
|
||||||
|
|
||||||
|
**⌘ + 点击** | 在新窗口中打开页面链接 
|
||||||
|
|
||||||
|
**Ctrl + 空格** | 打开快捷键视图的快捷键 
|
||||||
|
|
||||||
|
**⌘ + \\** | 切换侧边栏 
|
||||||
|
|
||||||
|
**⌘ + "+"** | 放大 
|
||||||
|
|
||||||
|
**⌘ + "-"** | 缩小 
|
||||||
|
|
||||||
|
**⌘ + 0** | 默认缩放 
|
||||||
|
|
||||||
|
### 结构化 
|
||||||
|
|
||||||
|
**Enter** | 创建新的文本块 
|
||||||
|
|
||||||
|
**Shift + Enter** | 在文本块内创建换行符 
|
||||||
|
|
||||||
|
**Delete** | 将块与上面的块合并 
|
||||||
|
|
||||||
|
**Tab** | 缩进。创建一个嵌套块。将它向后移动 
|
||||||
|
|
||||||
|
**Shift + Tab** | 减少缩进。将区块移动到左侧的父区块级中 
|
||||||
|
|
||||||
|
### 选择 
|
||||||
|
|
||||||
|
**双击** | 选择单词 
|
||||||
|
|
||||||
|
**三击** | 选择整个块 
|
||||||
|
|
||||||
|
**⌘ + A** | 选择页面内的所有块 
|
||||||
|
|
||||||
|
**Shift + ↑ 或 ↓** | 向上或向下扩展你的选择 
|
||||||
|
|
||||||
|
**⌘ + 点击** | 选择或取消选择整个块 
|
||||||
|
|
||||||
|
**Shift + 点击** | 选择块与块之间的所有块 
|
||||||
|
|
||||||
|
### 操作 / 激活命令菜单 
|
||||||
|
|
||||||
|
**⌘ + /** | 打开操作菜单 
|
||||||
|
|
||||||
|
**⌘ + Delete** | 删除光标左侧的单词 
|
||||||
|
|
||||||
|
**⌘ + C** | 复制所选的单个/多个块或文本部分 
|
||||||
|
|
||||||
|
**⌘ + X** | 剪切所选的单个/多个块或文本部分 
|
||||||
|
|
||||||
|
**⌘ + V** | 将外部数据粘贴到 Anytype 的单个/多个块或文本部分 
|
||||||
|
|
||||||
|
**⌘ + D** | 为所选的单个/多个块创建副本 
|
||||||
|
|
||||||
|
**⌘ + E, ⌘ + .** | 显示 emoji 选择器 🏄♂️ 
|
||||||
|
|
||||||
|
### 文本样式 
|
||||||
|
|
||||||
|
**⌘ + B** | 粗体 
|
||||||
|
|
||||||
|
**⌘ + I** | 斜体 
|
||||||
|
|
||||||
|
**⌘ + U** | 下划线 
|
||||||
|
|
||||||
|
**⌘ + Shift +S** | 删除线 
|
||||||
|
|
||||||
|
**⌘ + K** | 添加链接 
|
||||||
|
|
||||||
|
**⌘ + L** | 转换为行内代码 
|
||||||
|
|
||||||
|
**⌘ + Shift + C** | 应用先前选择的字体颜色 
|
||||||
|
|
||||||
|
**⌘ + Shift + H** | 应用先前选择的高亮
|
61
zh-CN/miscellaneous/keyboard-shortcuts/markdown.md
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
# Markdown 类
|
||||||
|
|
||||||
|
### 输入期间 
|
||||||
|
|
||||||
|
**\`** | 行内代码 
|
||||||
|
|
||||||
|
**\*\* 或 \_\_** | 行内粗体
|
||||||
|
|
||||||
|
**\* 或 \_** | 行内斜体 
|
||||||
|
|
||||||
|
**\~\~** | 行内删除线 
|
||||||
|
|
||||||
|
**-- >** (无空格) | 插入: ⟶ 
|
||||||
|
|
||||||
|
**< --** (无空格) | 插入: ⟵ 
|
||||||
|
|
||||||
|
**< -- >** (无空格) | 插入: ⟷ 
|
||||||
|
|
||||||
|
**->** (与上几个相似但使用单个“-”) | 插入: → 
|
||||||
|
|
||||||
|
**<-** | 插入: ← 
|
||||||
|
|
||||||
|
**--** | 插入: — 
|
||||||
|
|
||||||
|
**-- >** (无空格) | 插入: ⟶ 
|
||||||
|
|
||||||
|
**< —** (无空格) | 插入: ⟵ 
|
||||||
|
|
||||||
|
**(c)** | 插入: © 
|
||||||
|
|
||||||
|
**(r)** | 插入: ® 
|
||||||
|
|
||||||
|
**(tm)** | 插入: ™
|
||||||
|
|
||||||
|
**...** | 插入: … 
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 在任何新行的开头
|
||||||
|
|
||||||
|
**# + 空格** | 创建一级标题 H1
|
||||||
|
|
||||||
|
**## + 空格** | 创建二级标题 H2
|
||||||
|
|
||||||
|
**### + 空格** | 创建三级标题 H3  
|
||||||
|
|
||||||
|
**" + 空格** | 创建高亮块
|
||||||
|
|
||||||
|
**\* 或 + 或 - 与空格** | 创建项目符号列表 
|
||||||
|
|
||||||
|
**\[] + 空格** | 创建待办事项复选框
|
||||||
|
|
||||||
|
1. **+ 空格** | 创建编号列表
|
||||||
|
|
||||||
|
**> + 空格** | 创建折叠列表
|
||||||
|
|
||||||
|
**\`\`\`** | 创建代码块
|
||||||
|
|
||||||
|
**---** | 创建分隔线
|
||||||
|
|
||||||
|
**\*\*\*** | 创建圆点分隔线
|
47
zh-CN/miscellaneous/keyboard-shortcuts/navigation.md
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
# 导航类命令
|
||||||
|
|
||||||
|
### 基本 
|
||||||
|
|
||||||
|
**⌘ + ,(逗号)** | 打开设置 
|
||||||
|
|
||||||
|
**⌘ + O** | 打开导航窗格 
|
||||||
|
|
||||||
|
**⌘ + Option + O** | 打开关联图谱窗格 
|
||||||
|
|
||||||
|
**⌘ + S** | 打开搜索窗格 
|
||||||
|
|
||||||
|
**Alt + H** | 返回到主页 
|
||||||
|
|
||||||
|
**⌘ + \[** | 显示历史记录中的上一页 
|
||||||
|
|
||||||
|
**⌘ + ]** | 显示历史记录中的下一页 
|
||||||
|
|
||||||
|
### 菜单、搜索和导航窗格 
|
||||||
|
|
||||||
|
**↓ 或 Tab** | 转到下一选项 
|
||||||
|
|
||||||
|
↑ **或 Shift + Tab** | 转到上一选项
|
||||||
|
|
||||||
|
**←** | 转到导航的左侧。来自页面的链接 
|
||||||
|
|
||||||
|
**→** | 转到导航的右侧。链接到页面 
|
||||||
|
|
||||||
|
**Enter** | 选择选项 
|
||||||
|
|
||||||
|
### 页面导航 
|
||||||
|
|
||||||
|
**⌘ + Shift + T** | 切换展开 / 折叠 
|
||||||
|
|
||||||
|
**↓** | 转到下一行 
|
||||||
|
|
||||||
|
**↑** | 转到上一行 
|
||||||
|
|
||||||
|
**⌘ + ←** | 转到行首 
|
||||||
|
|
||||||
|
**⌘ + →** | 转到行末 
|
||||||
|
|
||||||
|
**⌘ + ↑** | 转到页面头部 
|
||||||
|
|
||||||
|
**⌘ + ↓** | 转到页面末尾 
|
||||||
|
|
||||||
|
**⌘ + Shift + ↑↓** | 移动所选的单个或多个块
|
11
zh-CN/miscellaneous/troubleshooting.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# 故障排除
|
||||||
|
|
||||||
|
如果出现错误,你可以在查看 [论坛](https://community.anytype.io/) 或联系 [支持人员](mailto:support@anytype.io) 之前尝试以下这些步骤。
|
||||||
|
|
||||||
|
1. 确保计算机上的时间正确。如果计算机本地时间相对慢了 2 小时以上,则可能无法连接。
|
||||||
|
2. 检查你是否使用了代理、VPN、防火墙或公司网络进行连接。如果是的话,试着在不使用这些的情况下进行连接,看看是否会有所不同。
|
||||||
|
3. 尝试在公司网络或类似环境之外进行连接。
|
||||||
|
4. 将你的移动设备用作桌面端的 Wi-Fi 热点,并尝试通过它进行连接。
|
||||||
|
5. 尝试从另一个设备(及网络)登录
|
||||||
|
6. 对于 iOS 用户,请检查同步状态是否变为绿色。如果没有,请尝试从不同的网络连接。
|
||||||
|
7. 如果你遇到图形显示问题,请尝试删除 \~/.config/anytype 下的 GPUCache 文件夹。
|
21
zh-CN/monetization/monetization.md
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# 货币化(Monetization)
|
||||||
|
|
||||||
|
## 价格
|
||||||
|
|
||||||
|
任何人都可以免费开始使用 Anytype。如果你自行托管你的数据,Anytype 将始终可以免费使用。对于使用我们备份服务的用户,你可以免费使用 Anytype 最多 1GB 的存储空间。如果你需要更多,请 [联系我们](mailto:storage@anytype.io)。
|
||||||
|
|
||||||
|
在 Anytype 应用程序还处于测试阶段时,我们还不准备对 Anytype 的使用开始收费,也希望我们的社区不要滥用目前提供的免费存储空间。
|
||||||
|
|
||||||
|
## 理念(Philosophy)
|
||||||
|
|
||||||
|
当我们开始收费时,我们的原则如下:
|
||||||
|
|
||||||
|
用户应只对其消耗的资源付费。短期来看,这意味着我们会对超过一定存储限制的付费备份空间收费。这个限额尚未确定,因为我们还需要了解在我们的基础设施上托管空间的真实负载和成本。
|
||||||
|
|
||||||
|
从中期来看,我们的目标是从一个应用程序发展成为一个数字合作社,你可以付费成为其中的一员。成为会员后,你可以选择以自己的名字发布对象和空间,在 Any 生态系统(Any ecosystem)中被发现,并有权根据自己的贡献参与合作社的收益。
|
||||||
|
|
||||||
|
如果您想进一步了解我们的货币化理念,可以查看 Anyblog 上的这两篇文章:
|
||||||
|
|
||||||
|
{% embed url="https://blog.anytype.io/our-open-philosophy/" %}
|
||||||
|
|
||||||
|
{% embed url="https://blog.anytype.io/why-we-dont-pay-for-user-acquisition/" %}
|
30
zh-CN/troubleshooting/migration-from-the-legacy-app.md
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# 从旧版应用(Legacy)迁移
|
||||||
|
|
||||||
|
**Migrate data from Alpha version (v 31.\* and older)**
|
||||||
|
|
||||||
|
If you’ve created content in the _Alpha (Legacy)_ version that you want to keep, you’ll need to migrate it.
|
||||||
|
|
||||||
|
这个过程相对比较简单:
|
||||||
|
|
||||||
|
1. Export from the Legacy app
|
||||||
|
2. Install & open the Beta app
|
||||||
|
3. Import to the Beta app
|
||||||
|
|
||||||
|
Learn more by viewing [**A First Look At Our New Beta Software**](https://community.anytype.io/t/anytype-spring-town-hall-a-first-look-at-our-new-beta-software/8741)**.**
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
**在哪里下载最新的 Alpha (旧版)应用程序**
|
||||||
|
|
||||||
|
如果你在导出数据前已经删除了 Alpha 应用程序,则可能需要重新下载它来完成导出。You can download the 0.31.9 desktop app for Mac, Windows, and Linux [via the following link](../). 
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
**Alternatives** 
|
||||||
|
|
||||||
|
除了迁移,你还有以下选择:
|
||||||
|
|
||||||
|
* Start fresh with our Beta app
|
||||||
|
* Selectively import your Objects one by one from Legacy to Beta _(You may want to do this if your Legacy account has become messy but you have a few projects you’d like to carry over to Beta)._
|
||||||
|
|
||||||
|
对于这些选择,你都需要创建一个新账户,这将生成一个新的【恢复短语】。
|
11
zh-CN/use-cases/anytype-editor.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
description: >-
|
||||||
|
95% of our thoughts are repetitive. Cultivate a practice of daily journaling
|
||||||
|
to start noticing thought patterns and develop new ideas.
|
||||||
|
---
|
||||||
|
|
||||||
|
# ✏ 每日笔记
|
||||||
|
|
||||||
|
{% embed url="https://www.youtube.com/watch?v=Cl-sG9MialM" %}
|
||||||
|
|
||||||
|
你可以用这个 [链接](https://gallery.any.coop/?experience=daily\_journal) 的方法将这个用例导入到你的空间。
|
152
zh-CN/use-cases/contributed-intro-by-user-Roland.md
Normal file
|
@ -0,0 +1,152 @@
|
||||||
|
---
|
||||||
|
description: Contributed by our user Roland
|
||||||
|
---
|
||||||
|
|
||||||
|
# 基本概念介绍
|
||||||
|
|
||||||
|
前言
|
||||||
|
|
||||||
|
因为我自己的认识并不是从官方的资料中来,而是自己在使用过程中摸索出来的,所以可能与官方描述存在偏差,仅作为参考。
|
||||||
|
|
||||||
|
我将分层级介绍Anytype中几个重要功能的概念。
|
||||||
|
|
||||||
|
关于这些概念,有必要先打一个预防针,Anytype在笔记形式的理念上是相较于大多数笔记软件是要更加前卫,下文提到的概念的名字,即使是在英语中也不能够只从字面上去理解,这些功能的真正的名字或许还没有在这个时代诞生,现在所用的名字只是借用了一些可能会在某方面相似的概念的名字,如果从这些名字来看,我们对于它们所习惯的用法可能会让我们的认知产生误解,所以最好将这些名字作为代号来看待,名字和定义都不去管吧,最好从这些功能能够怎么去用的角度去感受它们的实质。
|
||||||
|
|
||||||
|
本篇内容,只需要看看,在本篇的介绍完成之后,会另有下文去介绍我如何去使用Anytype,在后文的用例中更能体现一些深入的理解,这会比琢磨定义和意思更直接。
|
||||||
|
|
||||||
|
另外,我的用法不一定适合大家,但是相信大家可以从我的用法中找到可以借鉴的点,希望我的分享可以让更多人少走我所走的弯路。
|
||||||
|
|
||||||
|
#### Object、Type、Relation
|
||||||
|
|
||||||
|
**Object**
|
||||||
|
|
||||||
|
在Anytype中,我们的每一条笔记及类似的东西,被称为Object。
|
||||||
|
|
||||||
|
**Type**
|
||||||
|
|
||||||
|
不同类型的笔记、对象应该被用不同的方式管理,这是我们划分type的好处。
|
||||||
|
|
||||||
|
不同的type可以分别设置不同的模版和其他参数。
|
||||||
|
|
||||||
|
**Relation**
|
||||||
|
|
||||||
|
Relation是从Notion的Database演化而来的,区别在于:Relation能够更加灵活地与Object产生联系。
|
||||||
|
|
||||||
|
Relation的主要用途是从各个角度描述Object,就像是一个Object的各方面参数一样,以便于后续筛选、排序与关系整理。
|
||||||
|
|
||||||
|
Relation的细分类如图所示。
|
||||||
|
|
||||||
|
<figure><img src="https://lh4.googleusercontent.com/VHcTvl7yMA-SvEMyGRTp3mykoWESuoHgROXwcyLGnFuwdg0vcoYRFZ5nJjM6ctvfL7EcgHEogn6JFbrbKKH90ow4mjgrwQTXEPnzMcNEHfeB4joxImzoGiOZ34goRwtG322E_VZZ4c536KYjpcAGvieql3bXrQag" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
#### Set、Collection
|
||||||
|
|
||||||
|
在Anytype中,我们无法直接在type的界面对属于这个type的object进行修改,需要在set和collection中进行操作。
|
||||||
|
|
||||||
|
**Set**
|
||||||
|
|
||||||
|
set,意为数学概念中的“集合”,我们可以从type的页面处创建
|
||||||
|
|
||||||
|
<figure><img src="https://lh4.googleusercontent.com/xWHkmtuuXvM7WZKUScZBJ6kqD0cYhKfhVxBVLXFrIKWIAwgp1ATOTdsTwWl6QZ2RmUWhO728jygX5HqcWsadgy3OL6jIwwqHjJnFVFYIDhgqSxdCpXC1hnAegQpi_xj_xpbnoNlsAxLzDJPGbZvsfv7kFGhpng53" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
然后,这个type的所有object将会显示在set页面中,对于每一个type,我们都能够进行这个操作来创造出对应的set来管理,不过建议用到的时候再说。
|
||||||
|
|
||||||
|
一个set下可以有多个视图,如图红框所示。在每一个视图下可以进行筛选、排序、选择视图类型(网格、画廊、列表、看板)。在最新的beta版本中,每个视图可以选择这个视图下创建object时的默认模版。
|
||||||
|
|
||||||
|
<figure><img src="https://lh5.googleusercontent.com/kTUmzJ0JN4lAQNxa_tEh-TNy1YOwsqmg3X3OOLKVZzjiDbQrHM1uAj1SrEePLsIyAI4wKXxDBqBShQKj7uurP2rf87dwfwQIxPSKtaY5ZYxZdzE1_zLOUOYCrwwiUS0bQjBSFzRuSsilsJ3AUbSvQKRhAN1T5akS" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
关于set的使用方法建议,会在下方用例分享的部分中展开说明。
|
||||||
|
|
||||||
|
**Collection**
|
||||||
|
|
||||||
|
Collection是一种特殊的set,set里面只会有对应type的object,而Collection里面可以含有多种type。
|
||||||
|
|
||||||
|
我们可以在collection里面创建Object;
|
||||||
|
|
||||||
|
也可以将已有的Object连接到Collection,如此一来这个Object也会显示在Collection里面。
|
||||||
|
|
||||||
|
#### Tag(Relation)
|
||||||
|
|
||||||
|
这些概念基本介绍完了,这里再单独介绍一下Tag这个Relation类型,它将会是后面用例文章中实现无层级无文件夹结构化的关键抓手。
|
||||||
|
|
||||||
|
我们可以创建一个tag类型的Relation,名字可以自己设置,这里以“测试Tag”为例。
|
||||||
|
|
||||||
|
可以输入来选择已有的Tag或者创建一个新Tag
|
||||||
|
|
||||||
|
<figure><img src="https://lh3.googleusercontent.com/1-k_qukc__r7FGx2QNUghqHQ0FReyjRG9-qHavNthpGvFdAreXHOoZO27n1-ZSGqbyxpIRfek-w5uGpxns4nRYUMqI5CZYMgdYIcY_jJ6L4NUAQtA6AfNmkmFG-b8rL2oPKkW50beGsK3S57oEzkeCFBiUT_eE7w" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
当然不仅可以有一个tag的relation,这里就有很大的发挥空间了。
|
||||||
|
|
||||||
|
<figure><img src="https://lh5.googleusercontent.com/MvhP2tfMhLhMbLRACY-zhYW42n7XwSgFkGMTltl1EiNbO4qrnotxuE1z-T6Jh_jLkXf0Q8kDdNaeKSBBwPcW6I0eF5oJ38_WkD0gk0pBVVZUkxO4dKMypyKGlKkiNiw6_4SzExhICiKVyuSKAFYgfh3PdKR8-eLU" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
大概的功能介绍这里就结束了,总结来说,对于Anytype中的概念,与其去纠结名字和定义,关注它们能够用来做什么,能够比较有效地认识。
|
||||||
|
|
||||||
|
#### 个人用例分享——Set的使用模式建议
|
||||||
|
|
||||||
|
**前言**
|
||||||
|
|
||||||
|
这一部分将介绍个人使用Anytype过程中建立起来的一个模式,看之前建议先看《Anytype入门1——基础功能的了解》。
|
||||||
|
|
||||||
|
因为每个人的需求和使用目标可能有无法预料的差异,因此用法仅作参考,不过我相信我的用法多少能给大家带来一些启发。
|
||||||
|
|
||||||
|
**这种方法的特点**
|
||||||
|
|
||||||
|
契合原子化的结构,不需要文件夹结构和层级结构
|
||||||
|
|
||||||
|
利用标签进行结构化,支持灵活分类,支持交叉分类
|
||||||
|
|
||||||
|
**使用更少的Type进行管理**
|
||||||
|
|
||||||
|
虽然按不同的Type进行管理会有其好处,但是过度地划分Type也会存在隐患。
|
||||||
|
|
||||||
|
在Anytype中,Object必然属于某一Type(不存在不属于任何Type的Object),并且Object的Type只能有一个(不存在同时属于多个Type的Object)。
|
||||||
|
|
||||||
|
因此,如果Type分的太多,很容易产生“这个Object要属于哪个Type”的问题。
|
||||||
|
|
||||||
|
因此我从一开始的细分type(如日记、日语词汇、英语词汇、想法记录、词条等等)的模式转向大type模式(除特殊类型的Object外,一律使用Page这个type管理),将分类这个事情从多个type之间转移到type内部。
|
||||||
|
|
||||||
|
**使用Tag进行Type内部的灵活分类**
|
||||||
|
|
||||||
|
在基本概念介绍的部分中,已经提到过,Tag可以用来灵活分类。
|
||||||
|
|
||||||
|
在我的Page这个type中,几乎包含了我大多数的的Object,我主要使用Tag来管理它们。
|
||||||
|
|
||||||
|
<figure><img src="https://lh6.googleusercontent.com/9YNXjyNywK02V7JNUK95BWqRhiQ_o7s37WXkQw2QURrLAwpTckzMMhtBd3ca3w6JW7WvXDUdFRQTv07zGs_Ecwz-8xgbNa0b-r6B2gb5qW--G5dKDCWYSWtvURVWvTZqiDwPhnyV4X4dhFWPGvq2JWXnXcPGOoUI" alt="" width="375"><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
为了方便自己着重地浏览某个小类的Page,比如所有的摘录,我会在Set的选项卡这里新建一个选项卡,在Page的基础上筛选出所有Page类型这个Relation中包含摘录这个标签的页面。
|
||||||
|
|
||||||
|
<figure><img src="https://lh6.googleusercontent.com/s91Pgl7dEshMLbZL6ZtDTZdJJDMdW1YbDMGWICqupNIZtJJ9yRkcJjz-A8T85WKCG0gBFfVwxVQt595DA5JEP7OQ8Ju3vcHAMY_9Jjhdp2vVuof5Is-wOncFPn4kVQZB_nCHsAGJngVDQPbBCvh0iuIsa32W17H_" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
筛选出来效果如下图
|
||||||
|
|
||||||
|
<figure><img src="https://lh6.googleusercontent.com/rQBnOGAr9gBZYX0SkHzftWCJAzrtzEsBEcF7o7V8Q7QX2qQOK_aJZ8FLFVFgCUEnBEAU24N4HkMF4lawniRyevk3i7Aw6VLVh54KWY1PM9uVP4eZfDRkDsBSYXICrpO9TzOne2A-HRmC6-PFudBypQYeq1PMjmn8" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
为了方便大家理解我将Page类型在这个页面也展示出来了。
|
||||||
|
|
||||||
|
我们还可以根据这个小类的特点进行特别的管理,比如摘录这个类型的Page大多数都使用了“作者”这个Relation,我们在这个标签页中可以单独地显示出来。
|
||||||
|
|
||||||
|
这个筛选结果和设置显示出来的Relation,是保留并且维持下去的,不需要每一次打开都重新设置,我们可以修改标签页的名字为“摘录”来提醒自己这是这个页面显示的全是摘录。
|
||||||
|
|
||||||
|
\
|
||||||
|
**各个视图下设置默认模版**
|
||||||
|
|
||||||
|
在最近的0.34.0版本更新后,我们为每个视图设置单独的默认模版,这样一来我这种用法会更加的顺畅,可以根据为Page Type下面的每个小类单独设置默认模版。
|
||||||
|
|
||||||
|
<figure><img src="https://lh3.googleusercontent.com/L55edepq-7yuybCBCZXX43cbVcltyHYWfvTEtLYhZZLtXYGv4FirwrJ-Qn_i8lpWD8tBriTKse6bzZYPCzo30au8_0dHKx2PaSeUO2V0FU4xQ1kEFeAwHLzpFCOuoGojja2v_tgOacbrc5rus6di7YnSniAkSj6U" alt=""><figcaption></figcaption></figure>
|
||||||
|
|
||||||
|
**Tag的使用心得**
|
||||||
|
|
||||||
|
在Anytype中,同一个Tag的Relation,包含的所有标签是互通的(已经存在的标签会成为后续添加标签的可选项),我为了更好的管理这些标签,在每个type下面创造了对应分类用的Tag Reletion,如Page Type下我会用“Page类型”这个Tag Relation进行管理,而Human type则用“Human类型”进行管理,这样子它们之间的选项不会串。
|
||||||
|
|
||||||
|
Tag的灵活分类,使得我们在设立分类的时候不需要考虑两种类型是否互斥,例如我用来管理Page的类型有主题笔记、词条、手稿、灵感记录、想法记录、清单记录、日记、中文词汇、日文词汇。
|
||||||
|
|
||||||
|
可以看到,这些分类中有一些很暧昧,一些的划分角度跟另外一些看起来有明显的区别,这就是Tag分类的灵活性——我们不需要预先对分类进行严格的划分、不需要保证他们是互斥的、不需要强制自己按特定的角度进行划分。
|
||||||
|
|
||||||
|
而对于Object来说,我们既可以是它不属于任何一个分类,也可以同时属于多个分类,很灵活。
|
||||||
|
|
||||||
|
个人对于Tag在这方面发挥的作用,比起分类更像是“助记词”,因此打标签的时候,我会更加的随心,按照自己的想法来。等到我需要找到这个页面的时候,我就可以很自然地想起这个页面是什么标签,因而快速地筛选出来。这种助记词一样的tag使用方法,在原子化的笔记结构中是很好用的,当软件中的object多起来的时候,会体现的更加明显。
|
||||||
|
|
||||||
|
**该用法的额外好处——原子化结构的进一步体现**
|
||||||
|
|
||||||
|
使用上述的方法可以对内容进行灵活分类且允许交叉分类,回到跟Notion等软件的Database Like功能中去对比的话,我们发现,其他软件中的Database的结构和用法受到了其表格形式的限制,可以视为一个加强版的表格,但是其下内容的组织也受到了表格使用习惯的影响——我们必须决定这个表格的主题后才能进行其中内容的写入,也就是说,我们在写入的时候必须先考虑好我们之后要以什么样的主题、视角去使用。
|
||||||
|
|
||||||
|
而我在上面所推荐的用法,则切断了这种绑定,我们可以像用其他软件一样地去组织内容(即我原先使用的大Type模式,或者使用Collection按特定的角度或者主题去组织起来),但也有了这以外的选择。这意味着我们在创建和编辑Object的时候不再需要考虑实际使用的时候要采用什么角度,这导向了一种更加无摩擦、无感的笔记使用方式——内容的创造和使用脱离了彼此的束缚,自由地创造以及自由地从各个角度组织、使用起来。
|
11
zh-CN/use-cases/language-flashcards.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
description: >-
|
||||||
|
Make your language learning process more productive, with the help of
|
||||||
|
improvised flash-cards & translation spoilers
|
||||||
|
---
|
||||||
|
|
||||||
|
# 🗨 语言闪卡(Flashcards)
|
||||||
|
|
||||||
|
{% embed url="https://youtu.be/XA6RrgBeWis" %}
|
||||||
|
|
||||||
|
你可以用这个 [链接](https://gallery.any.coop/?experience=language\_flashcards) 的方法将这个用例导入到你的空间。
|
11
zh-CN/use-cases/meal-planner-recipe-book.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
description: >-
|
||||||
|
Good food, good mood. Categorize recipes based on your personal needs and
|
||||||
|
create meal plans that suit your time, taste, and dietary preferences
|
||||||
|
---
|
||||||
|
|
||||||
|
# 🍛 食谱 & 膳食计划
|
||||||
|
|
||||||
|
{% embed url="https://www.youtube.com/watch?v=I-TISp9vfk8" %}
|
||||||
|
|
||||||
|
你可以用这个 [链接](https://gallery.any.coop/?experience=recipe\_book\_and\_meal\_planner) 的方法将这个用例导入到你的空间。
|
11
zh-CN/use-cases/movie-database.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
description: >-
|
||||||
|
Let your inner hobbyist run wild and create an encyclopaedia of everything you
|
||||||
|
love. Use it for documenting knowledge you collect over the years.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 🎬 电影数据库
|
||||||
|
|
||||||
|
{% embed url="https://www.youtube.com/watch?v=fwZ_bx53uh4" %}
|
||||||
|
|
||||||
|
你可以用这个 [链接](https://gallery.any.coop/?experience=movie\_database) 的方法将这个用例导入到你的空间。
|
16
zh-CN/use-cases/para-method-for-note-taking.md
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
---
|
||||||
|
description: >-
|
||||||
|
We tested Tiago Forte's popular method for note taking and building a second
|
||||||
|
brain.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 🧠 PARA 笔记法
|
||||||
|
|
||||||
|
{% embed url="https://www.youtube.com/watch?v=rgBS46Scw4Q" %}
|
||||||
|
|
||||||
|
### 使用下面链接的文件将这个用例导入到你的空间
|
||||||
|
|
||||||
|
* 导入后,你的空间名称将会被覆盖,但你可以将它修改回去
|
||||||
|
* 小部件不会自动出现;你需要根据这个用例的对象自己创建它们
|
||||||
|
|
||||||
|
{% file src="../.gitbook/assets/Anytype_PARA Method (1).zip" %}
|
11
zh-CN/use-cases/study-notes.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
description: >-
|
||||||
|
One place to keep your course schedule, syllabus, study notes, assignments,
|
||||||
|
and tasks. Link it all together in the graph for richer insights.
|
||||||
|
---
|
||||||
|
|
||||||
|
# 🍎 学习笔记
|
||||||
|
|
||||||
|
{% embed url="https://www.youtube.com/watch?v=Yu2-fkiKTdE" %}
|
||||||
|
|
||||||
|
你可以用这个 [链接](https://gallery.any.coop/?experience=study\_hub) 的方法将这个用例导入到你的空间。
|
11
zh-CN/use-cases/travel-wiki.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
---
|
||||||
|
description: >-
|
||||||
|
Travel with half the hassle. Put everything you need in one place, so you
|
||||||
|
don't need to fuss over wifi while traveling.
|
||||||
|
---
|
||||||
|
|
||||||
|
# ✈ 旅行 Wiki
|
||||||
|
|
||||||
|
{% embed url="https://www.youtube.com/watch?v=eSuYrgsRPMs" %}
|
||||||
|
|
||||||
|
你可以用这个 [链接](https://gallery.any.coop/?experience=trip\_planner) 的方法将这个用例导入到你的空间。
|