タイトルは、以下に示すように、かなり自明です。「Ł」を含む参照がある場合、その文字は参考文献から消えます。つまり、「Łukasz」は「ukasz」になります。ただし、通常の Latex では、問題なく表示されます。
これ質問では を使用することが提案されています{\L}
が、これは機能します。ただし、私は *.bib ファイルを生成しています。ゾテロ、そして、再生成するたびに bib ファイルを手動で編集するのは面倒です ({\L}
コマンドをエスケープするため、Zotero に特殊文字を入力することはできません)。
参照リストにある他のすべての特殊文字は機能します。
ラテックス:
\documentclass[a4paper, oneside, 12pt, openright]{report}
\usepackage[utf8]{inputenc}
\usepackage[super, sort]{natbib}
\DeclareUnicodeCharacter{0141}{\L{}}
\begin{document}
sometext Ł \cite{sivanesan_nanostructured_2014}
\bibliographystyle{ieeetr}
\bibliography{somebib}
\end{document}
ビブテックス:
@article{sivanesan_nanostructured_2014,
title = {Nanostructured silver-gold bimetallic {SERS} substrates for selective identification of bacteria in human blood},
volume = {139},
issn = {0003-2654, 1364-5528},
url = {http://xlink.rsc.org/?DOI=c3an01924a},
doi = {10.1039/c3an01924a},
language = {en},
number = {5},
urldate = {2017-06-29},
journal = {The Analyst},
author = {Sivanesan, Arumugam and Witkowska, Evelin and Adamkiewicz, Witold and Dziewit, Łukasz and Kamińska, Agnieszka and Waluk, Jacek},
year = {2014},
pages = {1037},
annote = {Łukasz},
file = {c3an01924a.pdf:C\:\\Users\\bluet_000\\AppData\\Roaming\\Zotero\\Zotero\\Profiles\\9p6n5zoc.default\\zotero\\storage\\Q7F4GE2G\\c3an01924a.pdf:application/pdf}
}
答え1
LaTeX を使用して、bib ファイルを bibtex 対応バージョンにコピーすることができます。
\documentclass[a4paper, oneside, 12pt, openright]{report}
\usepackage[utf8]{inputenc}
\usepackage[super, sort]{natbib}
\DeclareUnicodeCharacter{0141}{\L{}}
\def\outcodes{%
\catcode`\\=12
\let\protect\string
\def\IeC##1{{##1}}%
}
\newwrite\mybibout
\immediate\openout\mybibout=somebib2.bib
\newread\mybibin
\openin\mybibin=somebib.bib
{
\loop
\ifeof\mybibin
\else
{\outcodes
\read\mybibin to \tmp
\immediate\write\mybibout{\tmp}%
}
\repeat
\immediate\closeout\mybibout
}
\begin{document}
sometext Ł \cite{sivanesan_nanostructured_2014}
\bibliographystyle{ieeetr}
\bibliography{somebib2}
\end{document}