基於本地 url 重寫,自動在我的參考書目中添加自訂 url

基於本地 url 重寫,自動在我的參考書目中添加自訂 url

我搜尋了一個解決方案,可以根據本地 url 重寫自動在我的參考書目中添加自訂 url。

例如,我有一個帶有library.lib本地 pdf url 的 biblatex 條目,如下所示:

@phdthesis{Stonedahl2011a,
author = {Stonedahl, Forrest J.},
file = {:home/srey/TRAVAUX/THESE/REPOSITORY\_PDF/RANGE/Stonedahl\_2011\_Genetic Algorithms for the Exploration of Parameter Spaces in Agent-Based Models.pdf:pdf},
number = {December},
pages = {394},
school = {Evanston, Illinois},
title = {{Genetic Algorithms for the Exploration of Parameter Spaces in Agent-Based Models}},
year = {2011}
}

乳膠文件:

\documentclass[a4paper, 12pt,twoside, openright]{memoir}
\usepackage{polyglossia}
\setdefaultlanguage{french}
\usepackage{fontspec}
\usepackage[usenames,dvipsnames]{xcolor}
\usepackage[autostyle=true,french=guillemets,maxlevel=3]{csquotes}
\usepackage{xparse}
\usepackage{graphicx}
\usepackage[protrusion=true]{microtype}
\sidecapmargin{outer}
\setsidecappos{t}

\usepackage[backend=biber,backref=true, natbib=true, isbn=false, doi=false, url=false, style=authoryear,maxcitenames=1, maxbibnames=999, sorting=nyt, refsection=chapter, hyperref]{biblatex}

\addbibresource[datatype=bibtex]{library.bib}

\begin{document}

\chapterstyle{bringhurst}

My blabla text with citation. \autocite{Stonedahl2011a}

\printbibliography

\end{document}

如何將自訂 url 新增至我的參考書目以從自訂來源下載論文以及如何自動將此 url 翻譯為 biblatex 文件

home/srey/TRAVAUX/THESE/REPOSITORY\_PDF/RANGE/Stonedahl\_2011\_Genetic Algorithms for the Exploration of Parameter Spaces in Agent-Based Models.pdf transform

進入

http://mycustomserver.com/Stonedahl_2011_Genetic Algorithms for the Exploration of Parameter Spaces in Agent-Based Models.pdf

答案1

當與後端一起biblatex使用時biber,可以用來\DeclareSourcemap執行欄位的動態操作。

\DeclareSourcemap{
  \maps[datatype=bibtex]{
    \map{
      \step[fieldsource=file]
      \step[fieldset=url, origfieldval]
      \step[fieldsource=url, 
        match=\regexp{:home/srey/TRAVAUX/THESE/REPOSITORY_PDF/RANGE/(.+):pdf},
        replace={http://www.example.com/$1}]
    }
  }  
}

前兩步是將 field 的值複製file到 field url,最後一步step是將 in 中的路徑替換file為適當的 url。\regexp使用時,可以進行正常的正規表示式分組和替換。

biblatex 手冊第 4.5.2 節詳細描述了此類操作。

這是結果(更改選項url以顯示替換的結果)。

在此輸入影像描述

相關內容