使用 bibtex 运行 .aux 文件

使用 bibtex 运行 .aux 文件

我需要按照以下说明在同一文档中编译多个参考书目:

pdflatex <file>
bibtex <file>.aux
bibtex latex.aux
pdflatex <file>

我有这个标题:

\usepackage{multibib}
\newcites{latex}{\LaTeX-Literature}%  

我已打开该latex.aux文件,但 TexShop 不允许我使用 Typeset 对其进行编译。有人能帮助我吗?

该文件大致如下:

\documentclass[preprint,12pt]{elsarticle}
\usepackage[margin=52pt]{geometry}
\usepackage{graphicx}
\usepackage[english]{babel} 
\usepackage{amsmath,amsfonts,amsthm,amssymb} 
\usepackage[hang, small,labelfont=bf,up,textfont=it,up]{caption} 
\usepackage{dsfont}
\usepackage{pgf}
\usepackage{soul} 
\usepackage{url}
\usepackage{multibib}
\newcites{latex}{References Supplementary Material}


\begin{document}

Text.... \cite{}.

\bibliographystyle{vancouver} 
\bibliography{mybib.bib} 


Text with \citelatex{}.


\bibliographystylelatex{vancouver} 
\bibliographylatex{mybib.bib} 


\end{document}

我按照这里的说明进行操作 两个参考书目:一个用于正文,一个用于附录

它说要运行

pdflatex <file>
bibtex <file>.aux
bibtex latex.aux
pdflatex <file>

但我无法bibtex latex.aux使用 TexShop 运行。

相关内容