我在Debian中安装了这样的xournalpp:
sudo apt install doxygen
sudo apt install graphviz
sudo dpkg -i xournalpp-1.0.20-hotfix-hotfix-Debian-buster-x86_64.deb
通过进入 menu: office--Xournal++
,我可以运行它。
现在我想按照GitHub 的描述展示它的代码文档:
Finally, type in doxygen in the root directory of the repository.
The documentation can be found in doc/html and doc/latex.
存储库的根目录是什么?
sudo find / -name 'xournalpp'
/usr/share/xournalpp/
/usr/bin/xournalpp/
我试过ls /usr/share/xournalpp/
:
tree /usr/share/xournalpp/ |grep doc
中没有doc/html
或doc/latex
。 /usr/share/xournalpp/
我如何获得xournalpp
's 的文档?
您正在阅读的说明假设您已经克隆了 git 存储库,而不是从包管理器安装它。在这种情况下,“存储库的根目录”是您在存储存储库时留下的任何目录
git clone
。请注意,这是开发人员文档,即所使用的函数和类
xournalpp
——这就是该doxygen
工具的作用。有关用户文档,请查阅他们在 Github 上的 wiki。