TeX Live+VSCode的本地LaTeX配置 前言 两个月前,我把MacTex(TeX Live的mac发行版)从mac中删除,因为mac的磁盘空间不足。然而,MikTex带来的问题超乎我的想象。原本以为MikTex仅仅是精简了包,空间上大大缩减,谁知在编译中文的时候,MikTex频频出问题。Claude多次提醒我可能是MikTex对于中文的支持不够好。事实证明(至少在我的mac上如此)MikTex只能保证在编译诸如test.tex、test 2024-11-30
Hello World Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick 2024-09-26
Mac 安装Node.js 20 后`node -v` 和 `npm -v`找不到的解决方案 Mac 安装Node.js 20 后node -v 和 npm -v找不到的解决方案 根据你提供的信息,我们可以看到 Node.js 20 确实已经成功安装在你的系统上。问题在于它是以 “keg-only” 的方式安装的,这意味着它没有被自动链接到你的系统路径中。让我们按照 Homebrew 的建议来解决这个问题: 首先,让我们将 Node.js 20 添加到你的 PATH 中。在终端中运行以 2024-09-21
关于LaTeX尾注 edition1 要将尾注的数字加上中括号,您可以自定义一个新的脚注命令。这里是一种实现方式: 在文档的导言区(preamble)添加以下代码: 123456789\usepackage{etoolbox}\renewcommand{\thefootnote}{[\arabic{footnote}]}\makeat 2024-09-05
notes_The Python Book_20240418 3.Packages and Builtin Functions dir(): This function takes in an object and returns the dir() of that object giving us the attributes of the object. 123456789101112131415>>> name = 'R 2024-04-03