我目前正在写论文,使用 TexPad 作为编辑器。我选择使用它,因为它看起来很干净,并排显示 PDF 视图,而且很好用。好吧,几乎可以正常工作,因为我的参考文献只显示在(?, ?)
文本中,这让我很抓狂。
这是我的文档的结构:
\documentclass[10.5pt]{article}
\usepackage{color}
\usepackage[a4paper,bindingoffset=0.2in,%
left=3.35cm,right=2.12cm,top=3.75cm,bottom=2.88cm,%
footskip=.25in]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{glossaries}
\usepackage[english,ngerman]{babel}
\usepackage[numberedbib]{apacite}
\usepackage{graphicx}
\PassOptionsToPackage{hyphens}{url}\usepackage{hyperref}
\newcommand*{\quelle}[1]{\par\raggedleft\footnotesize Quelle:~#1}
\setlength{\parindent}{0ex}
\makeglossaries
\loadglsentries{glossary}
\begin{document}
\include{cover}
\pagenumbering{arabic}
\begin{otherlanguage}{english}
\begin{abstract}
Lorem Ipsum
\end{abstract}
\end{otherlanguage}
\newpage
\tableofcontents
\newpage
\include{document1)
% All of my text
\include{document99)
\clearpage
\printglossaries
\listoffigures
\listoftables
\bibliographystyle{apacite}
\bibliography{references}
正如您所看到的,我将论文的每个部分分成各自的文件,然后将它们包含在内。
这是我的未编辑的 BibDesk 文件:
%% This BibTeX bibliography file was created using BibDesk.
%% https://bibdesk.sourceforge.io/
%% Created for MY NAME at 2020-03-09 14:33:56 +0100
%% Saved with string encoding Unicode (UTF-8)
@article{strava-millitary,
Author = {BBC},
Date-Added = {2020-03-09 13:59:08 +0100},
Date-Modified = {2020-03-09 14:00:40 +0100},
Journal = {BBC},
Title = {Fitness app Strava lights up staff at military bases},
Url = {https://www.bbc.com/news/technology-42853072},
Year = {2018},
Bdsk-Url-1 = {https://www.bbc.com/news/technology-42853072}}
@article{have-I-been-pwned,
Date-Added = {2020-03-09 13:53:45 +0100},
Date-Modified = {2020-03-09 13:55:58 +0100},
Lastchecked = {09.03.2020},
Month = {03},
Title = {Have I been pwned},
Url = {https://haveibeenpwned.com/PwnedWebsites},
Year = {2020},
Bdsk-Url-1 = {https://haveibeenpwned.com/PwnedWebsites}}
@article{quantifying-explainable-discrimination,
Author = {Kamiran, Faisal and {\v Z}liobait{\.e}, Indr{\.e} and Calders, Toon},
Da = {2013/06/01},
Date-Added = {2020-03-03 10:35:51 +0100},
Date-Modified = {2020-03-03 11:27:38 +0100},
Doi = {10.1007/s10115-012-0584-8},
Isbn = {0219-3116},
Journal = {Knowledge and Information Systems},
Number = {3},
Pages = {613--644},
Title = {Quantifying explainable discrimination and removing illegal discrimination in automated decision making},
Url = {https://doi.org/10.1007/s10115-012-0584-8},
Volume = {35},
Year = {2013},
Bdsk-Url-1 = {https://doi.org/10.1007/s10115-012-0584-8}}
@url{initiative21,
Author = {Initiative D21},
Date-Added = {2020-02-12 11:46:59 +0100},
Date-Modified = {2020-02-12 11:47:49 +0100},
Title = {Bias in algorithmischen Systemen},
Url = {https://initiatived21.de/app/uploads/2019/03/algomon_denkimpuls_bias_190318.pdf},
Year = {2019},
Bdsk-Url-1 = {https://initiatived21.de/app/uploads/2019/03/algomon_denkimpuls_bias_190318.pdf}}
@url{data-service-alliance,
Author = {Expert Group Data Ethics},
Date-Added = {2020-02-10 13:27:59 +0100},
Date-Modified = {2020-03-09 14:33:56 +0100},
Title = {Ethischer Kodex f{\"u}r daten-basierte Wertsch{\"o}pfung},
Url = {https://data-service-alliance.ch/_Resources/Persistent/456771f49480bcdc65113a52fd994933be9184d2/Codex_V3_german_public.pdf},
Year = {2019},
Bdsk-Url-1 = {https://data-service-alliance.ch/_Resources/Persistent/456771f49480bcdc65113a52fd994933be9184d2/Codex_V3_german_public.pdf}}
@inproceedings{EthicalCode,
Author = {M. {Loi} and C. {Heitz} and A. {Ferrario} and A. {Schmid} and M. {Christen}},
Booktitle = {2019 6th Swiss Conference on Data Science (SDS)},
Date-Modified = {2020-03-09 14:28:29 +0100},
Doi = {10.1109/SDS.2019.00-15},
Issn = {null},
Keywords = {business data processing;data analysis;ethical aspects;public organizations;administrations;ethical code;data-based business;industry-academic initiative;Ethics;Guidelines;Companies;Pipelines;Law;ethics, data, algorithm, predictive models, fairness, privacy, algorithmic bias, code},
Month = {June},
Pages = {6-12},
Title = {Towards an Ethical Code for Data-Based Business},
Year = {2019},
Bdsk-Url-1 = {https://doi.org/10.1109/SDS.2019.00-15}}
带有(?, ?)
和相应 Tex 的屏幕截图:
Die Autoren des ''Quantifying explainable discrimination and removing illegal discrimination
in automated decision making'' Papers
\cite{quantifying-explainable-discrimination} unterscheiden zwischen erklärbaren und illegalen Diskriminierung.
您是否发现我的文档中存在任何明显问题?
谢谢你的帮助!