叶寻的博客

欢迎来到叶寻的博客。这里随笔与技术内容较多,但没有固定的话题。

在 Ubuntu 下配置 Fcitx5

安装 # 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 # 安装 Fcitx5 sudo apt install fcitx5 \ fcitx5-pinyin \ fcitx5-chinese-addons \ fcitx5-frontend-gtk2 \ fcitx5-frontend-gtk3 \ fcitx5-frontend-qt5 \ fcitx5-module-ibus \ fcitx5-module-cloudpinyin \ fcitx5-material-color # 把 Fcitx5 设置为默认输入法 im-config -n fcitx5 # 设置 Fcitx5 拼音输入法 fcitx5-configtool # 开机启动 cp /usr/share/applications/fcitx5.desktop ~/.config/autostart/ 配置 # 修改标点符号键位映射 # Fcitx5 默认的标点符号键位为:

在扫描版 PDF 中查找内容

扫描版的 PDF 都是图片,在里面查找内容是不可能的。所以「在扫描版 PDF 文档中查找内容」这个问题可以拆解为两部分:一是识别 PDF 中的文字,二是搜索里面的内容。 安装软件 # 开始教程之前,先安装好需要的软件: 1 2 3 4 5 6 7 8 9 10 11 12 # OCRmyPDF sudo apt install ocrmypdf # 语言支持 sudo apt install tesseract-ocr-eng \ tesseract-ocr-chi-sim # pdftotext sudo apt install poppler-utils # VS Code # 这个得到官网下载:https://code.visualstudio.com/ 识别文字 # 首先,我们要用 OCR1 技术来识别 PDF 中的文字。有很多 OCR 软件,我用的是 OCRmyPDF。接下来用余光中译的《老人与海》作为例子。

在 RStudio 中使用 Fcitx5(Kubuntu 20.10)

2022 年 7 月 16 日更新:Electron 版的 RStudio 可以正常使用 Fcitx5 了,位置也正常。 在 Kubuntu 20.10 使用 RStudio 的时候,发现它不支持 Fcitx。参考 RStudio 官方的方法,成功在 RStudio 里面用上了 Fcitx 5。里面部分内容已经过时,应该用下面这个命令才对: 1 sudo ln -s /usr/lib/$(dpkg-architecture -qDEB_BUILD_MULTIARCH)/qt5/plugins/platforminputcontexts/libfcitxplatforminputcontextplugin.so /usr/lib/rstudio/plugins/platforminputcontexts 最近把 Kubuntu 20.04 升级到了 20.10,结果无法在 RStudio 中使用 Fcitx5 了。可恶,为什么 RStudio 不支持 Fcitx!官方不作为,那只好自己动手了。

在 Ubuntu 编译 GoldenDict

2024年8月14日更新 # 写这篇文章的初衷是 GoldenDict 没有停止开发但又很少发布新版,最近一次还是一年前(2023年5月31号)。现在推荐大家使用更新和发布频繁的 Goldendict-ng。Goldendict-ng 已被收录于 Debian、Ubuntu、Fedora、OpenSUSE 等 Linux 发行版,用 flatpak 安装也方便。 如果你点进来就是想编译 GoldenDict,请看 Goldendict 的文档,下面的内容可能已过时。