0% found this document useful (0 votes)
35 views2 pages

better note文献阅读笔记模板代码

The document outlines a structured template for presenting academic articles, including sections for the title, author, journal information, cited counts, DOI or ISSN, and an abstract. It also includes placeholders for additional content such as research background, problems addressed, contributions, methods, experiments, reflections, and references. The template is designed to be dynamically populated with data from a source, likely a citation management tool.

Uploaded by

hc6527877
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views2 pages

better note文献阅读笔记模板代码

The document outlines a structured template for presenting academic articles, including sections for the title, author, journal information, cited counts, DOI or ISSN, and an abstract. It also includes placeholders for additional content such as research background, problems addressed, contributions, methods, experiments, reflections, and references. The template is designed to be dynamically populated with data from a source, likely a citation management tool.

Uploaded by

hc6527877
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

-- Title -->
<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>
<!-- Author -->
<tr>
<td style="color:#193c47; background-color:#dbeedd; padding:8px;">
<b>Author:</b> ${topItem.getCreators().map((v) => v.firstName + " " +
v.lastName).join("; ")}
</td>
</tr>

<!-- Journal -->


<tr>
<td style="color:#193c47; background-color:#f3faf4; padding:8px;">
<b style="color:#193c47;">Journal: <b style="color:#FF0000">$
{topItem.getField('publicationTitle')}</b></b><b style="color:#193c47;">
(Publication Date: ${topItem.getField("date")})</b>
</td>
</tr>

<!-- Journal Tags -->


<tr>
<td style="color:#193c47; background-color:#dbeedd; padding:8px;">
<b>Journal Tags: </b>
<!-- In Zotero7, the tags of Ethereal Style plugin are referenced. Please
install Ethereal Style in advance. -->
${{
let space = " ㅤㅤ ㅤㅤ"
return Array.prototype.map.call(
Zotero.ZoteroStyle.api.renderCell(topItem, "publicationTags").childNodes,
e => {
e.innerText = space + e.innerText + space;
return e.outerHTML
}
).join(space)
}}$
</td>
</tr>

<!-- Cited Counts -->


<tr>
<td style="color:#193c47; background-color:#f3faf4; padding:8px;">
<b>Cited Counts: </b>
<!-- In Zotero7, the tags of Ethereal Style plugin are referenced. Please
install Ethereal Style in advance. -->
${{
let space = " ㅤㅤ ㅤㅤ"
return Array.prototype.map.call(
Zotero.ZoteroStyle.api.renderCell(topItem, "citedCount").childNodes,
e => {
e.innerText = space + e.innerText + space;
return e.outerHTML
}
).join(space)
}}$
</td>
</tr>

<!-- DOI or ISSN -->


<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>ISSN: </b><a href="${topItem.getField('ISSN')}">$
{topItem.getField('ISSN')}</a>`;
}
})()}
</td>
</tr>

<!-- Abstract -->


<tr>
<td style="color:#193c47; background-color:#f3faf4; padding:8px;">
${(() => {
const abstractTranslation = topItem.getField('abstractTranslation');
if (abstractTranslation) {
return `<b>Abstract Translation: </b><i>${abstractTranslation}</i>`;
} else {
return `<b>Abstract: </b><i>${topItem.getField('abstractNote')}</i>`;
}
})()}
</td>
</tr>

<!-- Note Date -->


<tr>
<td style="color:#193c47; background-color:#dbeedd; padding:8px;">
<b>Note Date: </b>${new Date().toLocaleString()}
</td>
</tr>

</table>

<h3>📜研究背景&相关工作</h3>
<h3>🚩拟解决的问题&采用所提方法的原因</h3>
<h3>💡创新点&贡献</h3>
<h3>🔬方法&模型</h3>
<h3>📉实验</h3>
<h3>📕感想&疑问</h3>
<h3>📝撰写内容参考</h3>

You might also like