引文格式

引文格式

我不確定如何修復我的引文輸出 - BibTex 正在產生一個引文,在渲染時,它看起來像:

大腦與認知,55(1):30 - 40, 2004。

如何去除「ce:title」標籤?引用的 .bib 檔案是

@article{Bechara200430,
title = "The role of emotion in decision-making: Evidence from neurological patients with orbitofrontal damage ",
journal = "Brain and Cognition ",
volume = "55",
number = "1",
pages = "30 - 40",
year = "2004",
note = "<ce:title>Development of Orbitofrontal Function</ce:title> ",
issn = "0278-2626",
doi = "http://dx.doi.org/10.1016/j.bandc.2003.04.001",
url = "http://www.sciencedirect.com/science/article/pii/S0278262603002859",
author = "Antoine Bechara"
}

這是一個範例文件:

\documentclass[british]{article}

\usepackage[T1]{fontenc}

\usepackage[latin9]{inputenc}

\usepackage{babel}

\begin{document}

This is the misformatted citation \cite{Bechara200430}\\

\bibliographystyle{plain}

\bibliography{oberdiek-bundle,/Users/Kevin/Downloads/science}

\end{document}

答案1

該欄位的內容note「按原樣」排版。人們可能會考慮添加 LaTeX 程式碼來擺脫這些標籤,但這樣的程式碼會相當脆弱,因為<或者>在某些條目中可能是合法的,例如在帶有數學公式的標題或註釋本身中。

檢查.bib文件是否存在並手動刪除它們要容易得多。

相關內容