[WordPress] 外掛分享: WP-BibTeX

WordPress 外掛 WP-BibTeX 的封面圖片。

前言介紹

  • 這款 WordPress 外掛「WP-BibTeX」是 2016-12-16 上架。 目前已經下架不再更新,不建議安裝使用。
  • 目前有 100 個安裝啟用數。
  • 上一次更新是 2025-01-19,距離現在已有 105 天。
  • 外掛最低要求 WordPress 3.0.2 以上版本才可以安裝。
  • 有 3 人給過評分。
  • 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。

外掛協作開發者

zjhzxhz |

外掛標籤

paper | bibtex | citation |

內容簡介

此外掛能以提供的訊息生成引用的書目風格文字。以下是示例。請將以下的短代碼貼到頁面中:
[WpBibTeX type="article" title="Comparison among dimensionality reduction techniques based on Random Projection for cancer classification" author="Xie, Haozhe and Li, Jie and Zhang, Qiaosheng and Wang, Yadong" journal="Computational biology and chemistry" year="2016" pages="165--172" publisher="Elsevier" volume="65" url="//infinitescript.com/wordpress/wp-content/uploads/publications/xie2016comparison.pdf" note="(IF=1.014)"]

上述短代碼將在頁面中生成以下內容:

此引用的書目風格文字:Haozhe Xie, Jie Li, Qiaosheng Zhang, Yadong Wang. Comparison among dimensionality reduction techniques based on Random Projection for cancer classification. Computational biology and chemistry, 65: 165-172, 2016. (IF=1.014)
BibTeX 引用代碼:

@article{xie2016comparison,
title={Comparison among dimensionality reduction techniques based on Random Projection for cancer classification},
author={Xie, Haozhe and Li, Jie and Zhang, Qiaosheng and Wang, Yadong},
journal={Computational biology and chemistry},
year={2016},
volume={65},
pages={165–172}
}

2.x版本的新功能:
此外,您也可以自訂顯示在頁面中的連結。預設情況下,每個引用有兩個連結([BibTeX]和[Download PDF])。現在您可以在選項頁面中添加自定義連結。
假設您創建了一個新的字段,其Field Key為code,Field Name為Download Code。然後您將在[WpBibTeX]短代碼中使用code屬性如下:
[WpBibTeX type="article" ... code="https://link/to/the/code"]

在此頁面中,[BibTeX]連結之後將顯示一個新連結[Download Code]。
支援的BibTeX條目類型:
目前,此插件支援以下BibTeX條目類型:
article:
必填字段:type、title、author、journal、year。
可選字段:volume、number、pages、month、publisher、url、note。
短代碼示例:[WpBibTeX type="article" title="Title of the citation" author="First Name1, Last Name1 and First Name2, Last Name2 and First Name3, Last Name3" journal="Journal Name of the citation" year="2016" volumne="1" url="The download link of the article" note="(IF=1.000)"]。
book:
必填字段:type、title、author、publisher、year。
可選字段:volume、number、series、edition、month、address、isbn、url、note。
短代碼示例:[WpBibTeX type="book" title="Title of the citation" author="First Name1, Last Name1 and First Name2, Last Name2 and First Name3, Last Name3" publisher="Publisher of the citation" year="2016" address="The address of the publisher" url="The download link of the article"]。
inproceedings:
必填字段:title、author、booktitle、year。
可選字段:volume、number、series、

原文外掛簡介

The plugin allows users to generate a bibliography-style text for a publication using the provided information.
To use the plugin, users can insert a shortcode into a page with the relevant publication details, such as the title, author, journal, year, pages, publisher, volume, URL, and note.
For example, the shortcode [WpBibTeX type="inproceedings" title="Efficient Regional Memory Network for Video Object Segmentation" author="Xie, Haozhe and Yao, Hongxun and Zhou, Shangchen and Zhang, Shengping and Sun, Wenxiu" booktitle="CVPR" year="2021" paper="https://arxiv.org/pdf/2103.12934.pdf" projectpage="//infinitescript.com/project/rmnet/"] generates the bibliography-style text
Haozhe Xie, Hongxun Yao, Shangchen Zhou, Shengping Zhang, Wenxiu Sun. Efficient Regional Memory Network for Video Object Segmentation. CVPR, 2021. as well as the BibTeX cite code below.
@inproceedings{xie2021efficient,
title={Efficient Regional Memory Network for Video Object Segmentation},
author={Xie, Haozhe and Yao, Hongxun and Zhou, Shangchen and Zhang, Shengping and Sun, Wenxiu},
booktitle={CVPR},
year={2021}
}

Users can also customize the links displayed on the page, such as adding a new link for downloading code.
New Features in 3.x
Starting from WP-BibTeX 3.0, it is now possible to create a WP-BibTeX item with a featured image on the left using the new “highlighted” format.
This can be achieved by adding the img attribute to the existing shortcode. For example: [WpBibTeX type="inproceedings" title="..." author="..." booktitle="CVPR" year="2021" img="/url/to/img"]
Additionally, you can create an overlaid media (such as a GIF or video) when the mouse is hovering by adding the overlay attribute to the shortcode. To ensure compatibility with all devices, you can create a fallback media using the overlay_fallback attribute.
Here is an example of the complete shortcode:
[WpBibTeX type="inproceedings" title="Efficient Regional Memory Network for Video Object Segmentation" author="Xie, Haozhe and Yao, Hongxun and Zhou, Shangchen and Zhang, Shengping and Sun, Wenxiu" booktitle="CVPR" year="2021" paper="https://arxiv.org/pdf/2103.12934.pdf" projectpage="//infinitescript.com/project/rmnet/" img="https://shangchenzhou.com/assets/img/papers/Conf2021_rmnet.jpg" overlay="//infinitescript.com/wordpress/wp-content/uploads/highlights/research-rmnet.webm" overlay_fallback="//infinitescript.com/wordpress/wp-content/uploads/highlights/research-rmnet.gif"].

New Features in 2.x
Additionally, it is possible to personalize the links shown on the page. By default, each citation has two links, namely [BibTeX] and [Download PDF]. However, it is now possible to include custom links by accessing the option page.
Suppose a new field is created with a Field Key of code and a Field Name of Download Code. The code attribute is then used in the [WpBibTeX] shortcode as follows:
[WpBibTeX type="article" ... code="https://link/to/the/code"]

After adding this shortcode, a new link, [Download Code], will appear on the page after the [BibTeX] link.
Supported BibTeX Entry Types
Currently, this plugin support following BibTeX entries types:
article

Required fields: type, title, author, journal, year
Optional fields: volume, number, pages, month, publisher, url, note
Short code example: [WpBibTeX type="article" title="Title of the citation" author="First Name1, Last Name1 and First Name2, Last Name2 and First Name3, Last Name3" journal="Journal Name of the citation" year="2016" volumne="1" url="The download link of the article" note="(IF=1.000)"]

book

Required fields: type, title, author, publisher, year
Optional fields: volume, number, series, edition, month, address, isbn, url, note
Short code example: [WpBibTeX type="book" title="Title of the citation" author="First Name1, Last Name1 and First Name2, Last Name2 and First Name3, Last Name3" publisher="Publisher of the citation" year="2016" address="The address of the publisher" url="The download link of the article"]

inproceedings

Required fields: title, author, booktitle, year
Optional fields: volume, number, series, pages, month, organization, publisher, address, url, note
Short code example: [WpBibTeX type="inproceedings" title="Title of the citation" author="First Name1, Last Name1 and First Name2, Last Name2 and First Name3, Last Name3" booktitle="The name of the conference, such as CVPR" address="The address of the publisher" year="2016" note='write anything you want']

mastersthesis

Required fields: title, author, school, year
Optional fields: month, address, url, note
Short code example: [WpBibTeX type="mastersthesis" title="Title of the citation" author="First Name1, Last Name1" school="The place where the citation was written" year="2016"]

phdthesis

Required fields: title, author, school, year
Optional fields: month, address, url, note
Short code example: [WpBibTeX type="phdthesis" title="Title of the citation" author="First Name1, Last Name1" school="The place where the citation was written" year="2016"]

unpublished

Required fields: title, author
Optional fields: month, year, url, note
Short code example: [WpBibTeX type="unpublished" title="Title of the citation" author="First Name1, Last Name1"]

各版本下載點

  • 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
  • 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「WP-BibTeX」來進行安裝。

(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。


1.0.0 | 1.1.0 | 2.0.0 | 2.0.1 | 2.1.0 | 2.2.0 | 2.2.1 | 2.2.2 | 2.2.3 | 2.2.4 | 2.2.5 | 2.2.6 | 2.2.7 | 3.0.0 | 3.0.1 | 3.0.2 | trunk |

延伸相關外掛(你可能也想知道)

  • teachPress 》這個外掛結合了課程管理系統(帶有招生、文件和評估模塊)和功能強大的BibTeX相容的出版物管理。兩個模塊可以獨立操作。teachPress優化了教授和研究小組的需...。
  • PAPERCITE 》papercite (WordPress Plugin) - 描述, , , 如需報告錯誤或請求功能,請訪問 https://github.com/digfish/papercite。文件可以在 http://papercite.readthedo...。
  • wpCiteULike 》如果您想要將 CiteULike 的書目嵌入到您的 WordPress 博客中,那麼 wpciteulike 就是最簡單的解決方案。, wpciteulike 可以讓您在 WordPress 的網頁和文章中...。
  • bib3html 》如果你需要維護一份以 bibtex 格式為基礎的參考文獻列表並且撰寫一個網頁來發布您的出版物清單,那麼 bib3html 就是您的解決方案。, bib3html 是從 tango 撰...。
  • WebKew WP References and Citations

    外掛總結:

    ,

    這個 WordPress 外掛可以自動從添加到 WP post/page/custom post type 中的引用生成參考文獻。在文字中使用 \cit...。

文章
Filter
Apply Filters
Mastodon