摘要: 个人偷懒,标题、表、图、公式按章节自动编号,字体与间距按照武汉理工大学硕士论文设置,方便平时报告用,模板在个人文件夹中 https://files.cnblogs.com/files/blogs/806514/通用word模板.zip?t=1719659030&download=true 标题自动编 阅读全文
posted @ 2024-06-29 19:04 小阮向阳 阅读(6) 评论(0) 推荐(0) 编辑
摘要: ~/.bashrc中添加如下代码: PS1='\[\e[1;36;40m\][\[\e[1;36;40m\]\u\[\e[1;36;40m\]@\[\e[1;36;40m\]\h \[\e[1;36;40m\]\W\[\e[1;36;40m\]]\[\e[1;36;40m\]# \[\e[0;37; 阅读全文
posted @ 2024-06-08 23:38 小阮向阳 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 如果是使用paru安装: 查询含有某个关键词的软件: paru -Ss <keyword> 卸载某个软件及其所有没有被其他已安装软件包使用的依赖关系: paru -Rs <name> 阅读全文
posted @ 2024-05-29 21:17 小阮向阳 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 窗口 -> 新建垂直文档组 阅读全文
posted @ 2024-05-19 17:46 小阮向阳 阅读(4) 评论(0) 推荐(0) 编辑
摘要: git fetch --all git reset --hard origin/main 步骤解释如下: git fetch --all:这个命令会从远程仓库获取所有分支的最新状态,但不会自动合并到当前工作目录。 git reset --hard origin/main:这个命令会将本地仓库重置到远 阅读全文
posted @ 2024-05-19 16:56 小阮向阳 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 创建或修改全局 .gitignore 文件: 在命令行中执行以下命令来创建或修改全局的 .gitignore 文件 git config --global core.excludesfile ~/.gitignore_global 如果文件已存在,则此命令会确保Git使用正确的文件。接下来,编辑这个 阅读全文
posted @ 2024-05-09 11:35 小阮向阳 阅读(77) 评论(0) 推荐(0) 编辑
摘要: .c单文件: rani@DocR:~/Downloads$ mkdir test rani@DocR:~/Downloads$ cd test rani@DocR:~/Downloads/test$ vim hello.c rani@DocR:~/Downloads/test$ gcc hello. 阅读全文
posted @ 2024-03-26 09:52 小阮向阳 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/KeriTAT/article/details/123511934 阅读全文
posted @ 2024-02-29 15:04 小阮向阳 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 报错 ???#version 330 core QOpenGLShader::compile(Fragment): 0(2) : error C0204: version directive must be first statement and may not be repeated 0(3) : 阅读全文
posted @ 2024-02-29 14:38 小阮向阳 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 向前复制当前行: Ctrl + Alt + up (向上箭头) 向后复制当前行:Ctrl + Alt + down(向下箭头) 将当前行上下移动: Ctrl + shift + up/down 阅读全文
posted @ 2024-02-25 16:00 小阮向阳 阅读(11) 评论(0) 推荐(0) 编辑