我有一份这样的文件:
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage{charter} % charter font
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\usepackage[natbibapa]{apacite}
\usepackage{citeref}
\renewcommand{\refname}{Bibliografia}
\begin{document}
For the same reasons, \citet{Parnas2003} have underlined the necessity of...
On the other hand, some authors \citep{Morgan2011} disagree with this view...
\bibliographystyle{apacite}
\bibliography{library}
\end{document}
我有两个问题:
当生成参考文献列表时,每个参考文献后面都会出现一个“[1]”,如下所示:
Parnas, J., & Handest, P. (2003). 早期精神分裂症中异常自我体验的现象学。综合精神病学,44(2),121–34。doi: 10.1053/comp.2003.50017 [1]
我已检查过
apacite
文档,但没有发现任何东西。我只能使用书籍类来更改参考书目标题。在文章类中,
\renewcommand{\refname}{Bibliografia}
这不起作用。
有人能帮我找到这个问题的根源吗?
编辑这是我的参赛作品:
@article{Parnas2003,
author = {Parnas, Josef and Handest, Peter},
doi = {10.1053/comp.2003.50017},
file = {:D$\backslash$:/Documenti/Psicologia/Papers/Phenomenology \& cognitive sciences/Self and schizophrenia/Ipseity-Hyperreflexivity model/Parnas, Handest - 2003 - Phenomenology of anomalous self-experience in early schizophrenia.pdf:pdf},
issn = {0010-440X},
journal = {Comprehensive psychiatry},
keywords = {Adult,Depersonalization,Disease Progression,Ego,Female,Humans,Male,Perceptual Disorders,Perceptual Disorders: psychology,Schizophrenic Psychology,Self Concept},
number = {2},
pages = {121--34},
pmid = {12658621},
title = {{Phenomenology of anomalous self-experience in early schizophrenia.}},
url = {http://www.ncbi.nlm.nih.gov/pubmed/12658621},
volume = {44},
year = {2003}
}
@article{Morgan2011,
author = {Morgan, Hannah L and Turner, Danielle C and Corlett, Philip R and Absalom, Anthony R and Adapa, Ram and Arana, Fernando S and Pigott, Jennifer and Gardner, Jenny and Everitt, Jessica and Haggard, Patrick and Fletcher, Paul C},
doi = {10.1016/j.biopsych.2010.07.032},
file = {:D$\backslash$:/Documenti/Psicologia/Papers/Phenomenology \& cognitive sciences/Minimal self/Ownership/Morgan et al. - 2011 - Exploring the Impact of Ketamine on the Experience of Illusory.pdf:pdf},
issn = {1873-2402},
journal = {Biological psychiatry},
keywords = {Adult,Body Image,Female,Humans,Illusions,Illusions: drug effects,Infusions,Intravenous,Ketamine,Ketamine: administration \& dosage,Ketamine: blood,Ketamine: pharmacology,Male,Personality Assessment,Photic Stimulation,Placebos,Proprioception,Proprioception: drug effects,Psychiatric Status Rating Scales,Psychomotor Performance,Psychomotor Performance: drug effects,Touch Perception,Touch Perception: drug effects,Visual Perception,Visual Perception: drug effects},
month = jan,
number = {1},
pages = {35--41},
pmid = {20947068},
title = {{Exploring the impact of ketamine on the experience of illusory body ownership.}},
url = {http://www.sciencedirect.com/science/article/pii/S0006322310008267 http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=3025328\&tool=pmcentrez\&rendertype=abstract},
volume = {69},
year = {2011}
}
答案1
该数字归功于citeref
,它添加了参考项目被引用的页面列表。
移除通话
\usepackage{citeref}
并且,在重新编译之前,删除该.aux
文件,否则您将因不再被识别的命令而收到虚假错误。
文件.aux
将自动重新创建。再次运行 BibTeX,以确保数字(反向引用)不会再出现。
书目部分的重命名是通过
\addto\captionsitalian{\renewcommand{\refname}{Bibliografia}}
因为您正在使用babel
。