上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: 文章目录 LaTex简介 LaTex入门资料 中文资料 英文资料 数学公式 符号输入 模板库 LaTex使用安装 Texlive2020 下载与安装 官方下载 国内镜像下载 Texlive 安装 TeX studio 下载与安装 下载 安装 设置编译器与编码 LaTex简介 LaTeX(音译“拉泰赫 阅读全文
posted @ 2022-04-04 15:01 咖啡陪你 阅读(512) 评论(0) 推荐(0)
摘要: 问题描述 在使用TeXstudio进行中文编辑的时候文字下方会出现红色波浪符,这实际上是正常的,是未添加中文词典的原因.就像下图这样: 解决方法 取消行内词汇检查即可,如下图:,将行内检查的"拼写"反勾选,点击确认后发现恼人的红色波浪符就消失了. 阅读全文
posted @ 2022-04-04 14:46 咖啡陪你 阅读(2955) 评论(0) 推荐(0)
摘要: https://matplotlib.org/api/pyplot_summary.html https://matplotlib.org/api/pyplot_summary.html 在交互环境中查看帮助文档: import matplotlib.pyplot as plt help(plt.p 阅读全文
posted @ 2022-03-30 10:22 咖啡陪你 阅读(817) 评论(0) 推荐(0)
摘要: python matplotlib绘制多条折线图 代码 import matplotlib.pyplot as plt x = [6, 24, 48, 72] y1 = [87, 174, 225, 254] y2 = [24, 97, 202, 225] y3 = [110, 138, 177, 阅读全文
posted @ 2022-03-30 10:12 咖啡陪你 阅读(7194) 评论(0) 推荐(1)
摘要: 1.sorted函数 首先介绍sorted函数,sorted(iterable,key,reverse),sorted一共有iterable,key,reverse这三个参数。 其中iterable表示可以迭代的对象,例如可以是dict.items()、dict.keys()等,key是一个函数,用 阅读全文
posted @ 2022-03-28 15:00 咖啡陪你 阅读(3561) 评论(0) 推荐(0)
摘要: python 添加图例 Sigma (𝜎) is very often used greek mathematical letters and has a higher repetition in probability. In this article, we are going to add 阅读全文
posted @ 2022-03-28 09:00 咖啡陪你 阅读(496) 评论(0) 推荐(0)
摘要: 写了几天的论文,今天编译突然报错:Missing \begin{document}吓了一跳,暂行解决办法为删除.aux和.bbl文件再次编译即可。具体解决办法后面有时间再去研究。。。 阅读全文
posted @ 2022-03-24 14:13 咖啡陪你 阅读(1361) 评论(0) 推荐(0)
摘要: Latex关于参考文献中出现&字符后出错的解决方案 step1:在&前加\,即:&step2:删除当前文件夹下关于 .blg, .bbl, .log, .aux 和 .gz 的所有文件,重新compile并运行 阅读全文
posted @ 2022-03-23 15:54 咖啡陪你 阅读(884) 评论(0) 推荐(0)
摘要: with code.open(output_file, "w",) as f: with code.open(input_file, "r", "utf8") as f: 运行报错: 原因:编码格式不对,用上一篇文章的方法,需要多次编码的转换,比较复杂,codecs可处理多种编码类型,简便。 注意: 阅读全文
posted @ 2022-03-23 09:38 咖啡陪你 阅读(1106) 评论(0) 推荐(0)
摘要: pandas读取csv文件出现错误:UnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0xa3 in position 4: invalid start byte原因是csv文件不是utf-8格式,在读取代码后面加上encoding="ISO-8 阅读全文
posted @ 2022-03-23 09:36 咖啡陪你 阅读(202) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页