1. 下载安装

支持win/linux/macoc.

  • 从官网下载软件. 链接
  • 从官网安装浏览器插件, 之后就可以直接从浏览器添加条目到 zotero 中.

1.1 其他

详细的 Zotero 介绍和配置教程: https://mp.weixin.qq.com/s/V6nIE24UefJWi3HbydccaA

2. 安装插件

  • Zotero DOI Manager
  • Zotfile
  • ZoteroQuickLook

3. 配置和同步

这里使用 OneDrive 作为同步盘.
打开设置: 编辑 —> 首选项

image.png

image.png

image.png

工具 —>Zotfile Preferences

image.png

image.png

image.png

4. ZoteroQuickLook

  • 从 Release 页面下载 ZoteroQuickLook, 在 Zotero 中导入插件
  • ZoteroQuickLook 默认使用 gloobus-preview 来进行预览, 但该软件已经不再维护, 因此我们改用 sushi.
  • 安装 sushi : sudo apt install sushi
  • 编写脚本, 保存为 gloobus2sushi ```bash

    !/bin/bash

    run GNOME sushi

PDF_FILE=$(/usr/bin/realpath “$*”)

echo “$PDF_FILE” > test.txt

dbus-send —print-reply —dest=org.gnome.NautilusPreviewer /org/gnome/NautilusPreviewer org.gnome.NautilusPreviewer.ShowFile string:”file://$PDF_FILE” int32:0 boolean:false `` 添加可执行权限:chmod u+x gloobus2sushi<br />添加软链接:sudo ln -s /home/jarvis/tools/gloobus2sushi /usr/bin/gloobus-preview`