amsplain 或 amsalpha 无法与 Bibtex 配合使用

amsplain 或 amsalpha 无法与 Bibtex 配合使用

如果我使用以下任何一种样式,我的参考文献引用都是正确的BibTex清楚的联合国或者α。但是,如果我将样式改为阿姆斯普兰或者阿尔法,文中没有引用任何参考文献(它们的位置是空白),尽管参考文献列表对于两种样式都是正确格式化的。有人知道我可能做错了什么吗?我使用 Tex Live 2022。提前谢谢大家!

这里有一份完整的小文件。

\documentclass[editMode]{ufdissertation}\sloppy
%\usepackage{CustomMacros}%  This is a user macro/style file.

\usepackage{tikz}%       tikz is used by almost everyone, but 
certainly by me for this.
\usepackage{pgfplots}%   pgfplots is tikz but better.
%\usepackage{amsrefs}%   amsrefs contains the .bibtex style content for mathematician papers.
\usepackage{algpseudocode}

\usepackage{scrextend}
\deffootnote{1.5em}{0em}{\thefootnotemark\quad}
%% Uncomment the relevant line below if you have tables or figures.
\haveTablestrue%        Uncomment this if you have tables in your thesis.
\haveFigurestrue%       Uncomment this if you have figures in your thesis.
\haveObjectstrue%       Uncomment this if you have Objects in your thesis. This is almost certainly not the case however.
%%% Below are the commands to set the degree type, department, graduation time, and chair. 
%       Most of these are self explanatory. 
%       Note: The \chair command takes an optional argument for a cochair. 
%           So if John was your chair and Jacob was a cochair, you would use \chair[Jacob]{John}.
%           If John was your chair and you had no cochair, you can simply use \chair{John}.
\title{any}%  Put your title here.
\degreeType{any}%   Official name of your degree; eg "Doctorate of Philosophy".
\major{any}%                    Your official Department
\author{any}%                  Your Name
\thesisType{any}%              Dissertation (PhD) or Thesis (Masters)
\degreeYear{any}%                      Intended graduation year (not the year you submit the thesis)
\degreeMonth{any}%                   Month of graduation should be May, August, or December.
\chair{any}%                   Chair and Cochair (see comment block above).

%%% For each of the following, type in the name of the file that contains each section. 
% They are assumed to be tex files, but if they aren't the command takes an optional argument for the extension.
%So, you could load dedication.tex as your dedication file using \setDedicationFile{dedication}
% You could load dedication.txt instead with \setDedicationFile[txt]{dedication}.

% NOTE: For some compilers they may or may not add a .tex to the end of the file automatically.
% If you get a "couldn't find dedication.tex.tex" type error, try the command with an empty optional argument,
%e.g. \setDedicationFile[]{dedication}

%%% These are REQUIRED sections; easiest to do via these commands.

\setDedicationFile{dedicationFile}%                 Dedication Page
\setAcknowledgementsFile{acknowledgementsFile}%     Acknowledgements Page
\setAbstractFile{abstractFile}%                     Abstract Page (This should only include the abstract itself)
\setReferenceFile{referenceFile}{amsplain}%         References. 
First argument is your bibtex source file
%                                                       the second argument is your bibtex style file.
\setBiographicalFile{biographyFile}%                Biography file of the Author (you).

%%% These are NOT required, so only use them if you actually need/have them.

\setAbbreviationsFile{abbreviations}%           Abbreviations Page
\setAppendixFile{appendix}%                     Appendix Content; hyperlinking might be weird.
\multipleAppendixtrue%                          Uncomment this if you have more than one appendix, 
%                                                   comment it if you have only one appendix.
\begin{document}

This author \cite{Author} did something and this author \cite{Author2} did something else.

\end{document}

以下是 donor 的内容:

Anything.

以下是acceptancesFile的内容:

Anything.

以下是 abstractFile 的内容:

Anything.

以下是referenceFile的内容:

@article{Author,
title={Title},
volume={1},
number={1},
journal={Journal},
publisher={Publisher},
author={Somebody, John},
year={2000},
pages={1-2}
}

@article{Author2,
title={Title},
volume={1},
number={1},
journal={Journal},
publisher={Publisher},
author={Somebody Else, John},
year={2000},
pages={1-2}
}

以下是 biographyFile 的内容:

Anything.

缩写内容如下:

\singlespacing
\begin{tabular}{l p{5in}} 
\emph{a} & Piston acceleration.\\
\\
$A_{\mathrm{in}}$ & Piston internal annular area.\\
\end{tabular}
\doublespacing

附录内容如下:

\chapter{Some Additional Material}

Test for first appendix file.

\begin{table}[h]
\caption[Aliquam mi nisi]{Aliquam mi nisi, tristique at rhoncus quis, consectetur non mi. Phasellus blandit quam ligula, a viverra lacus commodo at.}
%\begin{center}
\begin{tabularx}{\textwidth}{XXXX}\hline
Some    & Data  & Goes  & Here\\\hline
Some    & Data  & Goes  & Here\\
Some    & Data  & Goes  & Here\\
Some    & Data  & Goes  & Here\\\hline
\end{tabularx}
%\end{center}

\end{table}


\chapter{Secondary Appendix Content}

Test for second appendix file.


\chapter{Expert Opinions}

Test for third appendix file.

相关内容