我正在尝试使用该apacite
包进行参考,但是在使其工作时遇到了一些问题。
我正在使用 Ubuntu 和 Tex Live 发行版,因此我安装了texlive-bibtex-extra
包含的 Ubuntu 包apacite
。
我正在使用一个可以正常工作的 bibtex 文件,natbib
但由于某种原因,它在这里不起作用。Jung2009
是我的参考文献之一。
以下是一个例子:
\documentclass[11pt,a4paper,oldfontcommands]{memoir}
\usepackage{apacite}
\begin{document}
example example example \cite{Jung2009}.
\bibliographystyle{apacite}%{unsrt}
\bibliography{library}
\end{document}
我最初在标题中引用时遇到了问题,但通过将其放在命令\protect
前面解决了这个问题\cite
。
但是当我尝试编译时仍然出现以下错误
This is BibTeX, Version 0.99d (TeX Live 2013/Debian)
The top-level auxiliary file: apa_practice.aux
The style file: apacite.bst
Database file #1: library.bib
apacite.bst [2013/07/04 v6.02 APA bibliography style]
"" is a string literal, not a function, for entry Jung2009 while executing---line 5144 of file apacite.bst
(There was 1 error message)
编辑:我的 .bib 文件是由我的参考文献管理器 Mendeley 自动生成的。以下是 的输入Jung2009
。
@article{Jung2009,
abstract = {...},
author = {Jung, Christian and M\"{u}ller, Andreas E},
doi = {10.1016/j.tplants.2009.07.005},
file = {:home/geff/Documents/Mendeley Files/Jung and Muller.pdf:pdf},
issn = {1878-4372},
journal = {Trends Plant Sci.},
keywords = {...},
month = oct,
number = {10},
pages = {563--73},
pmid = {19716745},
title = {{Flowering time control and applications in plant breeding.}},
url = {http://www.ncbi.nlm.nih.gov/pubmed/19716745},
volume = {14},
year = {2009}
}
编辑 2:通过在我的 .tex 文件所在的文件夹中运行 apacite.ins,我可以让 apacite 运行,并且上述示例运行良好。但是现在我的真实文档中的每个引用都会导致 !Undefined Control Sequence Error。即使我删除了文件夹中的所有其他相关文件。可能是其他软件包干扰了?这是我的序言,基于模板:
\documentclass[11pt,a4paper,oldfontcommands]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage[dvips]{graphicx}
\usepackage{xcolor}
\usepackage{times}
\usepackage{parskip}
\usepackage{wrapfig}
\usepackage{tcolorbox}
\usepackage{lipsum}
\usepackage{subfig}
\usepackage[format=hang]{caption}
%\usepackage{cite}
\usepackage{apacite}
\usepackage[
breaklinks=true,colorlinks=true,
linkcolor=black,urlcolor=black,citecolor=blue,
bookmarks=true,bookmarksopenlevel=2]{hyperref}
\usepackage{geometry}
\geometry{total={210mm,297mm},
left=20mm,right=20mm,
bindingoffset=10mm, top=25mm,bottom=25mm}
\OnehalfSpacing
%\linespread{1.3}
%%% CHAPTER'S STYLE
\chapterstyle{brotherton}
%%% STYLE OF SECTIONS, SUBSECTIONS, AND SUBSUBSECTIONS
\setsecheadstyle{\Large\bfseries\sffamily\raggedright}
\setsubsecheadstyle{\large\bfseries\sffamily\raggedright}
\setsubsubsecheadstyle{\bfseries\sffamily\raggedright}
%%% STYLE OF PAGES NUMBERING
\pagestyle{plain}
\makepagestyle{plain}
\makeevenfoot{plain}{\thepage}{}{}
\makeoddfoot{plain}{}{}{\thepage}
\makeevenhead{plain}{}{}{}
\makeoddhead{plain}{}{}{}
\maxsecnumdepth{subsection}
\maxtocdepth{subsection}
任何帮助是极大的赞赏。