问题: 有时候文献标题带有特殊公式符号,进行BibTex编译时,会识别不出来公式符号. 例如: .bib文件里的文献: @article{XIE201892, title = "ℋ∞ control for systems based on the model", journal = "Top Journal", volume = "xx", pages = "xx - xx", year = "xx",
前言: 使用python在读取配置文件时,由于配置文件中存在特殊字符,读取时出现了以下错误: configparser.InterpolationSyntaxError: '%' must be followed by '%' or '(', found: '%sbc09' 错误代码: config=configparser.ConfigParser() 解决方案: 使用 RawConfigParser()方法进行读取即可,代码如下: config=configparser.RawConfigP
git冲突处理 (场景:A和B修改相同的文件,A先提交到远程仓库,然后B提交push报错,远程仓库有更改,git自动合并失败,需要手动合并 提示错误:Automatic merge failed; fix conflicts and then commit the result. 打开冲突的文件,删除特殊字符(蓝色框框) 最后,依次执行就可以啦!