更适合看经济实证论文的笔记模板 #973
Replies: 13 comments 14 replies
-
作者您好!请问有适配zotero 6版本的嘛? |
Beta Was this translation helpful? Give feedback.
-
关于一些常见报错
|
Beta Was this translation helpful? Give feedback.
-
哦买嘎!非常感谢!我这去试一下~谢谢!
…---- 回复的原邮件 ----
| 发件人 | ***@***.***> |
| 日期 | 2024年05月14日 22:05 |
| 收件人 | ***@***.***> |
| 抄送至 | ***@***.***>***@***.***> |
| 主题 | Re: [windingwind/zotero-better-notes] 更适合看经济实证论文的笔记模板 (Discussion #973) |
zotero6和zotero7模板差距主要是zotero style插件读取文件元数据。因此理论上只需要修改zotero style读取部分。
你可以试试看这个。
<!-- 标题 -->
<h1 style="color:#193c47; background-color:#eef9fd; padding:8px;">
${(() => {
const titleTranslation = topItem.getField("titleTranslation");
if (titleTranslation) {
return `(${topItem.getField("date")}) ${topItem.getField("title")} (${titleTranslation})`;
} else {
return `(${topItem.getField("date")}) ${topItem.getField("title")}`;
}
})()}
</h1>
<!-- Meta Data -->
<table>
<!-- 作者 -->
<tr>
<td style="color:#193c47; background-color:#dbeedd; padding:8px;">
<b>作者:</b> ${topItem.getCreators().map((v) => v.firstName + " " + v.lastName).join("; ")}
</td>
</tr>
<!-- 期刊 -->
<tr>
<td style="color:#193c47; background-color:#f3faf4; padding:8px;">
<b style="color:#193c47;">期刊: <b style="color:#FF0000">${topItem.getField('publicationTitle')}</b></b><b style="color:#193c47;"> (发表日期: ${topItem.getField("date")})</b>
</td>
</tr>
<!-- 期刊分区 -->
<tr>
<td style="color:#193c47; background-color:#dbeedd; padding:8px;">
<b>期刊分区: </b>
<!-- 引用了zotero style插件的标签,请提前安装,否则找不到分区 -->
${(() => {let space = " ㅤㅤ ㅤㅤ"
return Array.prototype.map.call(Zotero.ZoteroStyle.data.ztoolkit.ItemTree.globalCache.renderCellHooks.PublicationTags(
0,
Zotero.ZoteroStyle.data.ztoolkit.ItemTree.fieldHooks.globalCache.getFieldHooks.PublicationTags(
"", true, true,
topItem, undefined)
).childNodes,
e => {
e.innerText = space + space + e.innerText + space + space;
return e.outerHTML
}).join(space)
})()
}
</td>
</tr>
<!-- 本地链接 -->
<tr>
<td style="color:#193c47; background-color:#f3faf4; padding:8px;">
${(() => {
const attachments = Zotero.Items.get(topItem.getAttachments());
if (attachments && attachments.length > 0) {
return `<b>本地链接: </b><a href="zotero://open-pdf/0_${attachments[0].key}">${attachments[0].getFilename()}</a>`;
} else {
return `<b>本地链接: </b>`;
}
})()}
</td>
</tr>
<!-- DOI or URL -->
<tr>
<td style="color:#193c47; background-color:#dbeedd; padding:8px;">
${(() => {
const doi = topItem.getField("DOI");
if (doi) {
return `<b>DOI: </b><a href="https://doi.org/${topItem.getField('DOI')}">${topItem.getField('DOI')}</a>`;
} else {
return `<b>URL: </b><a href="${topItem.getField('url')}">${topItem.getField('url')}</a>`;
}
})()}
</td>
</tr>
<!-- 摘要 -->
<tr>
<td style="color:#193c47; background-color:#f3faf4; padding:8px;">
${(() => {
const abstractTranslation = topItem.getField('abstractTranslation');
if (abstractTranslation) {
return `<b>摘要翻译: </b><i>${abstractTranslation}</i>`;
} else {
return `<b>摘要: </b><i>${topItem.getField('abstractNote')}</i>`;
}
})()}
</td>
</tr>
<!-- 笔记日期 -->
<tr>
<td style="color:#193c47; background-color:#dbeedd; padding:8px;">
<b>笔记日期: </b>${new Date().toLocaleString()}
</td>
</tr>
</table>
<!-- 正文 -->
<span>
<h2 style="color:#e0ffff; background-color:#66cdaa;">📜 研究核心</h2>
<hr />
</span>
<blockquote>Tips: 做了什么,解决了什么问题,创新点与不足?</blockquote>
以xx为对象,使用了xx方法,得到了xx结论
<p></p>
<span>
<h2 style="color:#20b2aa; background-color:#afeeee;">🔁 实证部分</h2>
<hr />
</span>
<p></p>
<h3>💧 模型</h3>
<blockquote>Tips: 理论现象路径背景和计量回归式子</blockquote>
正文开始
<p></p>
<h3>👩🏻💻 数据</h3>
<table border="1">
<tr>
<td style="color:#193c47; background-color:#dbeedd; padding:8px;"><b>变量</b></td>
<td style="color:#193c47; background-color:#dbeedd; padding:8px;"><b>含义</b></td>
<td style="color:#193c47; background-color:#dbeedd; padding:8px;"><b>数据源</b></td>
</tr>
<tr>
<td>因变量</td>
<td> </td>
</tr>
<tr>
<td>自变量</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>控制变量</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>其他变量IV等</td>
<td></td>
<td></td>
</tr>
<tr>
<td>效应</td>
<td>双向固定、聚类</td>
<td></td>
</tr>
</table>
<p></p>
<h3>🔬 稳健性与内生性</h3>
<p></p>
<h3>📜 异质性</h3>
<p></p>
<h3>⚙️ 机制检验</h3>
<p></p>
<h3>💡 拓展分析</h3>
<p></p>
<span>
<h2 style="color:#004d99; background-color:#87cefa;">🤔 总结</h2>
<hr />
</span>
<blockquote>Tips: 你对哪些内容产生了疑问,你认为可以如何改进?</blockquote>
<p></p>
<h3>🙋♀️ 文章结论</h3>
<blockquote>Tips: 实然:因果关系结论+应然:政策启示</blockquote>
<p></p>
<h3>📌 方法启示 </h3>
<blockquote>Tips: 怎么设计的实验?怎么构造的函数?怎么演绎经济故事逻辑?</blockquote>
<p></p>
<h3>💭 思考启发</h3>
<p></p>
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
感谢作者!zotero7版本直接使用完全没有问题 👍 |
Beta Was this translation helpful? Give feedback.
-
详细说明 |
Beta Was this translation helpful? Give feedback.
-
请问想要直接在笔记中而不是模版中给表格添加行要怎么实现呢 |
Beta Was this translation helpful? Give feedback.
-
请问better note 笔记中,如何更改引用文献的样式呢?首次插入时跳出来选择样式的窗口,之后就不再有了,想更改样式找不到地方!
备注:不是word,是zotero的note
…---- 回复的原邮件 ----
| 发件人 | ***@***.***> |
| 发送日期 | 2024年08月20日 08:31 |
| 收件人 | windingwind/zotero-better-notes ***@***.***> |
| 抄送人 | iampearl918 ***@***.***>,
Comment ***@***.***> |
| 主题 | Re: [windingwind/zotero-better-notes] 更适合看经济实证论文的笔记模板 (Discussion #973) |
笔记页面内:右键-插入-表格
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
你可能理解错了我的意思,我不是指添加注释时自动生成的那个引用,是自己插入的引用。
…---- 回复的原邮件 ----
| 发件人 | ***@***.***> |
| 发送日期 | 2024年09月02日 13:26 |
| 收件人 | windingwind/zotero-better-notes ***@***.***> |
| 抄送人 | iampearl918 ***@***.***>,
Comment ***@***.***> |
| 主题 | Re: [windingwind/zotero-better-notes] 更适合看经济实证论文的笔记模板 (Discussion #973) |
请问better note 笔记中,如何更改引用文献的样式呢?首次插入时跳出来选择样式的窗口,之后就不再有了,想更改样式找不到地方! 备注:不是word,是zotero的note
…
---- 回复的原邮件 ---- | 发件人 | @.> | | 发送日期 | 2024年08月20日 08:31 | | 收件人 | windingwind/zotero-better-notes @.> | | 抄送人 | iampearl918 @.>, Comment @.> | | 主题 | Re: [windingwind/zotero-better-notes] 更适合看经济实证论文的笔记模板 (Discussion #973) | 笔记页面内:右键-插入-表格 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.***>
如果要添加其他论文引用——右键-插入-引注
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
不行哦、这个操作和上方的快捷按钮,效果一样。没弹出来引用样式让我选
…---- 回复的原邮件 ----
| 发件人 | ***@***.***> |
| 发送日期 | 2024年09月02日 22:37 |
| 收件人 | windingwind/zotero-better-notes ***@***.***> |
| 抄送人 | iampearl918 ***@***.***>,
Comment ***@***.***> |
| 主题 | Re: [windingwind/zotero-better-notes] 更适合看经济实证论文的笔记模板 (Discussion #973) |
试试看这个?右键,插入,引用
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
好像和您说的这个情况类似,我想说的就是“文中”的引用格式,作者年份的格式。在不同样式下,它们呈现出来的不同。
…---- 回复的原邮件 ----
| 发件人 | ***@***.***> |
| 发送日期 | 2024年09月03日 10:16 |
| 收件人 | windingwind/zotero-better-notes ***@***.***> |
| 抄送人 | iampearl918 ***@***.***>,
Comment ***@***.***> |
| 主题 | Re: [windingwind/zotero-better-notes] 更适合看经济实证论文的笔记模板 (Discussion #973) |
是指年份作者的引用格式,改成脚注或者数字标那种吗?
如果是这种应该修改不了的。这里是markdown环境,zotero和better note没有针对md环境做引用调整的格式设置。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
哪怕不在同一个markdown note中调整样式,为啥其他的markdown note就默认这一个,再也改不了了呢😭
…---- 回复的原邮件 ----
| 发件人 | ***@***.***> |
| 发送日期 | 2024年09月03日 10:16 |
| 收件人 | windingwind/zotero-better-notes ***@***.***> |
| 抄送人 | iampearl918 ***@***.***>,
Comment ***@***.***> |
| 主题 | Re: [windingwind/zotero-better-notes] 更适合看经济实证论文的笔记模板 (Discussion #973) |
是指年份作者的引用格式,改成脚注或者数字标那种吗?
如果是这种应该修改不了的。这里是markdown环境,zotero和better note没有针对md环境做引用调整的格式设置。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
甚至我刚把之前用的样式删除了,它还是原样式的格式🧐
…---- 回复的原邮件 ----
| 发件人 | ***@***.***> |
| 发送日期 | 2024年09月03日 10:16 |
| 收件人 | windingwind/zotero-better-notes ***@***.***> |
| 抄送人 | iampearl918 ***@***.***>,
Comment ***@***.***> |
| 主题 | Re: [windingwind/zotero-better-notes] 更适合看经济实证论文的笔记模板 (Discussion #973) |
是指年份作者的引用格式,改成脚注或者数字标那种吗?
如果是这种应该修改不了的。这里是markdown环境,zotero和better note没有针对md环境做引用调整的格式设置。
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
首先感谢作者分享!我昨天用了您的模版没有问题,然后把Style插件升级成PRO版了,然后今天添加笔记时好像就不行了,出现Template Preview Error: SyntaxError: missing ) after argument list这个问题,不知道如何解决,向您咨询一下 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
更适合看经济实证论文的笔记模板
调整自 #771
需要translate、zotero style插件支持
版本:
Zotero 7.0.0-beta.77+adaa61f2c版本
+Ethereal Style4.4.2版本
+Better note1.1.4-49
。Screenshots
Test on Zotero version
Zotero 7.0.0-beta.77+adaa61f2c
Test on Better Notes version
1.1.4-49
Template Type
Item
Template Share Code
Anything else
No response
Beta Was this translation helpful? Give feedback.
All reactions