Latex 中提供了各种“稀奇古怪的箭头形状”。一般箭头使用在公式环境下面。
- Categories · 教程-
2019
我使用的是 macOS 系统。当在虚拟环境中尝试使用 matplotlib 时,会出现如下的报错:
1 | ImportError: Python is not installed as a framework. The Mac OS X backend will not be able to function correctly if Python is not installed as a framework. See the Python documentation for more information on installing Python as a framework on Mac OS X. Please either reinstall Python as a framework, or try one of the other backends. If you are using (Ana)Conda please install python.app and replace the use of 'python' with 'pythonw'. See 'Working with Matplotlib on OSX' in the Matplotlib FAQ for more informatio |
ns3 使用了 waf 编译系统,因此在 ns3 中尝试引入第三方模块时,就没有 make 那么直接了。
这里我们要解决的是使用 Docker 过程中常见的 Volume 权限问题。具体而言,当我们用-v
将宿主机的路径绑定到 Docker 镜像的内部路径时,有时候会导致 Docker 镜像缺少对这个目录的访问权限,从而导致进程出错。
在Hexo+Next: 使用 Latex 公式这篇文章中我发现在使用Pandoc
作为 Hexo 的渲染引擎时,Hexo 的标签功能会有问题,具体表现为 Hexo 的标签内部的内容会输出 markdown 源码,而非渲染后的 html。
这次更换主题的很大一个动因就是因为在 NexT 这个主题上,开启 Latex 的支持很方便。网上关于这方面的文章其实不少,但是大部分都不全面,照本宣科下来,很可能不能用。这些教程一般就给了_config.yml
文件的配置以及pandoc
依赖安装,但是一些关键细节缺失了。这篇文章里我梳理了一下整个流程。