我在Ubuntu20.04上,需要使用MLA格式引用我的资源作为演示文稿,并且无法找到使用Bibtex的方法。我尝试了很多建议中所描述的东西,这些建议都是在讨论这个话题时发现的,看起来它们都只在Windows上工作,我没有任何Windows安装可以测试它们。我有一个完整的文本包,正在使用以下内容进行编译:
$ pdflatex texfilebasename
$ bibtex texfilebasename
$ pdflatex texfilebasename
$ pdflatex texfilebasename我通常使用类似的,但司法协助已被特别要求为我的任务。当我在这个网站上搜索我的问题时,我发现没有结果。有没有人知道如何获得MLA格式。我常用的用法是:
\bibliography{bibliography}
\bibliographystyle{apalike}我试过"mla“和"mlalike”
下面是我的.tex文件中的代码:
\documentclass[12pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{indentfirst}
\usepackage{setspace}
\usepackage{float, lscape}
\usepackage{hyperref}
\doublespacing{}
\pagenumbering{gobble}
% \author{}
% \title{}
% \date{\today}
\begin{document}
% \maketitle
% \newpage
% \pagenumbering{arabic}
\section*{some good quotes and paragraphs that could be used}
\noindent ``One additional strength of a network-transparency mechanism is that it would benefit not only
individual end users, but also commercial users (e.g., content providers) and network providers
who are interested in whether their peering partners adhere to their contractual
promises.''\cite{transparencyNotNeutrality}
\section*{Transparency With Respect to ISPs}
\bibliography{bibliography}
\bibliographystyle{mla}
\end{document}发布于 2020-09-05 17:15:40
发布于 2020-09-05 18:30:33
在我的问题中,我尝试用xelatex替换pdflatex,结果仍然一样。编译是没有错误的,但是bibtex无法找到mla.bst,所以我只知道引用的位置,而没有引用部分。也许在16.04到20.04之间有什么东西坏了。
以下是错误:
LaTeX Warning: Citation `transparencyNotNeutrality' on page undefined on input
line 115.
pdfTeX warning (ext4): destination with the same identifier (name{page.}) has b
een already used, duplicate ignored
\relax
l.117 \section
*{Transparency With Respect to ISPs} [2] (./isp_section.bbl
! Undefined control sequence.
\protect \citeauthoryear
{Pappas, Argyraki, Bechtold, and Perrig}...
l.4 et~al.}{2015}]{transparencyNotNeutrality}
? X这里是bibliography.bib条目,我是从ACM获得的,它只将引用名更改为transparencyNotNeutrality。Vim中的语法突出显示不识别articleno和numpage,但如果删除这些行,问题仍然存在:
@inproceedings{transparencyNotNeutrality,
author = {Pappas, Christos and Argyraki, Katerina and Bechtold, Stefan and Perrig, Adrian},
title = {Transparency Instead of Neutrality},
year = {2015},
isbn = {9781450340472},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/2834050.2834082},
doi = {10.1145/2834050.2834082},
booktitle = {Proceedings of the 14th ACM Workshop on Hot Topics in Networks},
articleno = {22},
numpages = {7},
location = {Philadelphia, PA, USA},
series = {HotNets-XIV}
}https://askubuntu.com/questions/1272887
复制相似问题