使用当前的 TexStudio(两天前安装)。我已将 TexStudio 配置设置如下:构建默认书目设置为“Biber”,并且我已将构建和视图(快捷方式)设置为 txs:///pdflatex | txs:///biber | txs:///pdflatex | txs:///pdflatex
前言:
\documentclass[]{article}
\usepackage{setspace}
\usepackage{biblatex}
\addbibresource{Essay 1.bib}
在 Essay 1.bib 中
@InBook{Snowdon,
author = {B. Snowdon and H. Vane},
title = {Modern Macroeconomics: Its Origins, Development and Current State},
chapter = {8},
publisher = {Edward Elgar Pub},
year = {2005},
}
@inbook{Palley,
author = {Palley, Thomas I.},
title = {The Emergence of Theoretical and Institutional Coherence in Post Keynesian Economics},
booktitle = {Post Keynesian Economics: Debt, Distribution and the Macro Economy},
date = {1996},
}
我的问题:问题 1:
Process started: biber.exe "Essay 1"
INFO - This is Biber 2.14
INFO - Logfile is 'Essay 1.blg'
INFO - Reading 'Essay 1.bcf'
INFO - Found 2 citekeys in bib section 0
INFO - Processing section 0
INFO - Globbing data source 'Essay 1.bib'
INFO - Globbed data source 'Essay 1.bib' to Essay\ 1.bib
INFO - Looking for bibtex format file 'Essay\ 1.bib' for section 0
ERROR - Cannot find 'Essay\ 1.bib'!
INFO - ERRORS: 1
Process exited with error(s)
我收到这个错误,但我不知道如何修复,因为这似乎是它自己产生的问题:它将数据源“通配”到 Essay\ 1.bib 中,然后找不到它刚刚生成的东西?
问题 2:内联引用如下所示:
\cite[p.454]{Snowdon}
\cite[p.9]{Palley}
生成的 PDF 中的结果不包含 [选项] 并以粗体显示。我如何获得完整的引文而不以粗体显示?
我是个初学者,这真是太令人沮丧了。任何帮助我都感激不尽。