Skip to content

Instantly share code, notes, and snippets.

@ChinaXing
Last active August 29, 2015 14:13
Show Gist options
  • Save ChinaXing/463f962bc3736be2c16d to your computer and use it in GitHub Desktop.
Save ChinaXing/463f962bc3736be2c16d to your computer and use it in GitHub Desktop.
org-mode-chinese
#+TITLE: 探针与探针消息服务器通信协议文档(初稿)
#+LATEX_HEADER: \usepackage{xltxtra}
#+LATEX_HEADER: \setmainfont{文鼎PL简中楷}
** 通信模式
通信模式为探针设备将数据报文发送给探针服务器:
#+BEGIN_SRC dot :exports results :file images/probe.png
digraph protocol {
node [ color = grey style = dashed fontsize = 12 ]
edge [ color = blue fontsize = 8 ]
rankdir = LR
probe0 [ label = "探针" ]
probe1 [ label = "探针" ]
probe2 [ label = "探针" ]
probe_server [ label = "探针消息接收服务器" ]
probe0 -> probe_server [ label = "UDP" ]
probe1 -> probe_server [ label = "UDP" ]
probe2 -> probe_server [ label = "UDP" ]
}
#+END_SRC
#+RESULTS:
[[file:images/probe.png]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment