前置条件
- 对 ZotLit 插件有一定了解
修改属性
最常见的用户需求是修改导入 PaperBell
后的文档属性,你应该编辑 zt-field.eta.md
模板文件(位于 40 - Obsidian/模板
文件夹),修改其中的属性。
title: "<%= it.title %>"
citekey: "<%= it.citekey %>"
tags: [paper, <% = it.tags.filter(t => t.name && t.name.startsWith('#')).map(t => '"' + t.name.slice(1) + '"').join(', ') %>]
cate: 论文
concepts: [<%
let excludeEndings = ['更新', '推荐', '关联', '检索', '浏览', '初读', '精读', "星标"]; // 定义不希望出现的字符串列表
let filtered_Tags = it.tags.filter(t =>
t.name &&
!t.name.startsWith('#') &&
!excludeEndings.some(ending => t.name.endsWith(ending)) // 检查标签名是否以列表中的任何字符串结尾
).map(t => '"' + t.name + '"'); // 转换为带引号的标签名
%> <%= filtered_Tags.join(', ') %> <% // 使用逗号连接所有筛选后的标签
%>]
read: <% let endings = ['浏览', '初读', '精读']; let filteredTags = it.tags.filter(t => t.name && endings.some(ending => t.name.endsWith(ending))); if (filteredTags.length === 1) { %> "<%= filteredTags[0].name %>" <% } else if (filteredTags.length > 1) { %> 错误:存在多个符合条件的标签。 <% } else { %> 错误:没有找到符合条件的标签。 <% } %>
source: <% let endings_2 = ['更新', '推荐', '关联', '检索']; let filteredTags_2 = it.tags.filter(t => t.name && endings_2.some(ending => t.name.endsWith(ending))); if (filteredTags_2.length === 1) { %> "<%= filteredTags_2[0].name %>" <% } else if (filteredTags_2.length > 1) { %> 错误:存在多个符合条件的标签。 <% } else { %> 错误:没有找到符合条件的标签。 <% } %>
authors: [<%= it.authors %>]
journal: <%= it.publicationTitle %>
paper_date: <%= it.date %>
date: <%= (new Date(it.dateModified || Date.now())).toISOString().slice(0, 10) %>
<%
let isImportant = it.tags.some(t => t.name === '🌟星标');
%>
important: <%= isImportant ? 'True' : 'False' %>
abstract: "<%= it.abstractNote %>"
ZotLit
使用 Eta 模板语法 进行配置,对自定义模板感兴趣的可以查看 ZotLit 的文档。本手册不做进一步说明。
一些常见的配置问题可以参考 和 Zotero 的联动。