add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,25 @@
# 拼接图
> 从 `graphviz` 文件中渲染一个 `方形树图` 网络图像。
> 布局:`dot`、`neato`、`twopi`、`circo`、`fdp`、`sfdp`、`osage` 和 `patchwork`。
> 更多信息:<https://graphviz.org/doc/info/command.html>。
- 渲染一个 PNG 图像,文件名基于输入文件名和输出格式(大写 -O
`patchwork -T {{png}} -O {{path/to/input.gv}}`
- 渲染一个 SVG 图像,并指定输出文件名(小写 -o
`patchwork -T {{svg}} -o {{path/to/image.svg}} {{path/to/input.gv}}`
- 以 PS、PDF、SVG、Fig、PNG、GIF、JPEG、JSON 或 DOT 格式渲染输出:
`patchwork -T {{format}} -O {{path/to/input.gv}}`
- 使用 `stdin``stdout` 渲染一个 `gif` 图像:
`echo "{{digraph {this -> that} }}" | patchwork -T {{gif}} > {{path/to/image.gif}}`
- 显示帮助信息:
`patchwork -?`