
를 사용할 때 일부 필드를 끄는 방법에 대해 도움을 요청했습니다 biblatex
. 잘 작동하고원래 질문은 여기에서 볼 수 있습니다.그러나 참고 문헌 항목의 필드를 \AtEveryBibitem{\clearfield{language}}
끄려고 했을 때 . language
작동하지 않는 것 같습니다. 내 코드는 다음과 같습니다.
\documentclass{beamer}
\usepackage{filecontents}
\begin{filecontents}{demo.bib}
@Article{Kubota2007_JoCMD.14.367,
author = {Kubota, Alison and Wolfer, WilhelmG. and Valone, StevenM. and Baskes, MichaelI.},
title = {Collision cascades in pure $\updelta$-plutonium},
journal = {Journal of Computer-Aided Materials Design},
year = {2007},
volume = {14},
number = {3},
pages = {367-378},
month = {oct},
doi = {10.1007/s10820-007-9057-x},
file = {:Collision cascades in pure delta-plutonium_J Computer-Aided Mater Des 14 (2007) 367–378.pdf:PDF},
groups = {Unsorted},
issn = {0928-1045},
keywords = {Molecular dynamics; Radiation damage; Plutonium},
language = {English},
owner = {Wenqiang},
publisher = {Springer Netherlands},
review = {Wigner-Seitz analysis},
timestamp = {2015.03.04},
url = {http://dx.doi.org/10.1007/s10820-007-9057-x},
}
@Article{Stukowski2012_MaSiMSaE.20.45021,
author = {Stukowski, Alexander},
title = {Structure identification methods for atomistic simulations of crystalline materials},
journal = {Modelling and Simulation in Materials Science and Engineering},
year = {2012},
volume = {20},
number = {4},
pages = {045021},
__markedentry = {[Wenqiang:6]},
doi = {10.1088/0965-0393/20/4/045021},
file = {:Structure identification methods for atomistic simulations of crystalline materials_Modell. Simul. Mater. Sci. Eng. 20 (2012) 045021.pdf:PDF},
groups = {Post-analysis},
issn = {0965-0393},
language = {en},
owner = {Wenqiang},
review = {adaptive CNA, common neighbor analysis modifier in OVITO},
timestamp = {2016.11.06},
url = {http://stacks.iop.org/0965-0393/20/i=4/a=045021},
urldate = {2016-11-06},
}
\end{filecontents}
\usepackage{upgreek}
\usepackage[backend=bibtex,sorting=none,hyperref=true,style=nature,isbn=false,doi=false,eprint=false,url=false,maxbibnames=1]{biblatex}
\AtEveryBibitem{\clearfield{note} \clearfield{title} \clearfield{language}}
\addbibresource{demo.bib}
\begin{document}
\begin{frame}{Demo}
\begin{block}{Text}
I want to disable the language field in bibitems\cite{Kubota2007_JoCMD.14.367}\cite{Stukowski2012_MaSiMSaE.20.45021}.
\end{block}
\begin{block}{Bibliography}
\printbibliography
\end{block}
\end{frame}
\end{document}
최종 PDF 파일도 여기에 표시됩니다.
bib 파일은 JabRef에서 생성됩니다. 아무도 필드를 끄는 방법을 말해 줄 수 있습니까 language
? 어떤 도움이라도 주시면 감사하겠습니다!
답변1
생성된 내용을 보면 .bbl
언어 형식이 다음과 같은 것을 볼 수 있습니다.
\list{language}{1}{%
{English}%
}
이는 목록이라는 의미이므로 \clearlist{language}
제거하려면 를 사용해야 합니다.