obsidian阅读pdf和文献——与zotero连用

参考:
【基于Obsidian的pdf阅读、标注,构建笔记思维导图,实现笔记标签化、碎片化,便于检索和跳转】
工作流:如何在Obsidian中阅读PDF - Eleven的文章 - 知乎
https://zhuanlan.zhihu.com/p/409627700

操作步骤

基于Obsidian的pdf阅读、标注,构建笔记思维导图,实现笔记标签化、碎片化,便于检索和跳转 - Jason Liang的文章 - 知乎
https://zhuanlan.zhihu.com/p/438755703

弃坑,采用联动zotero解决

在这里插入图片描述

联动zotero解决

Obsidian+Zotero打造最强科研工具链 - 深度学习可好玩了的文章 - 知乎
https://zhuanlan.zhihu.com/p/639325772
b站
【科研生产力:Obsidian&Zotero高效阅读文献】 https://www.bilibili.com/video/BV1HY411t7tB/?share_source=copy_web&vd_source=dab83d5b330f632d6bccec4d78fd0119
在这里插入图片描述

zotero如何做内部笔记

Zotero Better Notes - 罗小罗同学的文章 - 知乎
https://zhuanlan.zhihu.com/p/663491418

Zotero 与 Obsidian excalidraw

【【从零开始学OB】—— Zotero 与 Obsidian excalidraw 梦幻联动,让读文献也可以更“好看”】 https://www.bilibili.com/video/BV1Pc411b74G/?share_source=copy_web&vd_source=dab83d5b330f632d6bccec4d78fd0119

重点!——综上 自己最后选择的方案

【科研生产力:一个比Mdnotes更丰富的Zotero&Obsidian协同插件| Zotero integration |支持图片与跳转链接】 https://www.bilibili.com/video/BV1jF411A7d6/?share_source=copy_web&vd_source=dab83d5b330f632d6bccec4d78fd0119

【科研生产力:Obsidian&Zotero高效阅读文献】 https://www.bilibili.com/video/BV1HY411t7tB/?share_source=copy_web&vd_source=dab83d5b330f632d6bccec4d78fd0119

这俩同一个up:
第一个

流程可以简化为Zotero管理文献并阅读——提取笔记到Obsidian——Obsidian
dataview对文献进行总结;提取笔记可以用自带的导出到markdown、mdnotes插件(zotero)、zotero
integration插件(obsidian)

详细步骤:

1 安装zotero integration插件在这里插入图片描述
此处假如遇到bug:
在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

2 下载zotero插件:better-bibtex
retorquere/zotero-better-bibtex:让Zotero对我们LaTeX坚持有效
Zotero中文社区
https://github.com/retorquere/zotero-better-bibtex/releases/tag/v6.7.147

在这里插入图片描述

下载完插件以后 配置模板

保险起见我还是用英文路径
1 配置:

根目录创建模板文件,复制:


---
{% if title %}Title: "{{title}}"{% endif %}
Authors: {{authors}}{{directors}}
{% if publicationTitle %}Publication: "{{publicationTitle}}"{% endif %}
{% if date %}Date: {{date | format("YYYY-MM-DD")}}{% endif %}
citekey: {{citekey}}
tags: {{hashTags}}
---
## {{title}}

**引文目录:** {{bibliography}}

**来源:** {{url}}

**Zotero 位置:** {{pdfZoteroLink}}

**Tags :** {{hashTags}} 

>[!abstract]+
>*« {{abstractNote}} »*

{% for annotation in annotations -%}
>[!Annotation|{{annotation.color}}]+ 
>{%- if annotation.annotatedText -%}*« {{annotation.annotatedText}} »*([{{annotation.page}}](zotero://open-pdf/library/items/{{annotation.attachment.itemKey}}?page={{annotation.page}}&annotation={{annotation.id}})){% endif %}{% if annotation.imageRelativePath %}![[{{annotation.imageRelativePath}}]]{% endif %}{% if annotation.comment %} 
>
>{{annotation.comment}}{%- endif %}

{% endfor %}

进阶使用

【Zotero超级好用的笔记软件zotero better notes ,较详细操作教程与小白指南。内含笔记模板制作方法1】 https://www.bilibili.com/video/BV1Fg411H7ZH/?share_source=copy_web&vd_source=dab83d5b330f632d6bccec4d78fd0119

能否把这个做的笔记直接导入到 obsidian

设置快捷键

在这里插入图片描述

### 实现ZoteroObsidian的集成 为了有效地管理参考资料并优化笔记工作流程,可以利用多种工具来连接ZoteroObsidian。一种流行的方法是通过双向链接创建一个无缝的工作环境。 #### 使用Better BibTeX插件导出BibLaTeX文件到Obsidian 安装Zotero中的Better BibTeX插件后,能够自动生成符合标准的`.bib`文件[^1]。这些文件包含了所有必要的元数据信息,如作者、标题、出版年份等。接着,在Obsidian内设置自动同步功能,确保每次更新Zotero库时都能及时获取最新的文献记录。 #### 创建脚本自动化处理过程 编写简单的Python脚本来定期检查是否有新的条目被加入到了本地存储路径下的特定位置,并触发相应的操作——比如复制PDF附件至指定目录下或是生成Markdown格式的引用卡片用于快速编辑备注。 ```python import os from pyzotero import zotero def sync_zotero_to_obsidian(zot, obsidian_path): items = zot.everything(zot.top()) for item in items: if 'attachment' not in item['data']: continue attachment_url = item['data']['links']['self']['href'] file_name = f"{item['key']}.pdf" save_location = os.path.join(obsidian_path, file_name) response = requests.get(attachment_url) open(save_location, "wb").write(response.content) if __name__ == "__main__": library_id = 'your_library_id' api_key = 'your_api_key' zot = zotero.Zotero(library_id=library_id, library_type='user', api_key=api_key) obsidian_folder = '/path/to/obsidian/vault/' sync_zotero_to_obsidian(zot=zot, obsidian_path=obsidian_folder) ``` 此代码片段展示了如何从Zotero下载关联文档并将它们保存到Obsidian仓库中对应的子文件夹里去。 #### 利用Dataview插件增强交互体验 在Obsidian内部启用Dataview插件之后,可以通过查询语句轻松检索来自外部数据库的信息,包括由上述方法导入的数据源。这不仅限于显示列表视图;还可以构建复杂的表格结构甚至图表展示形式,极大地提高了工作效率可视化效果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

东方-教育技术博主

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值