我想在我的博士论文中使用这个模板:latex 模板->论文模板
这使用一个名为 dissertation 的 master.tex 和 slave.tex 文件来创建章节。似乎引用只出现在主文件中,而不出现在从属文件中。在从属文件中它出现 [?]。有没有办法让 dissertation.bib 文件对从属文件也可见。
这是我在主文件中引用的确切命令:
\references{dissertation}
\cite{Einstein1906}
我使用的Texmaker+Miktex编译顺序是:pdflatex+bitex+pdflatex(x2)+view pdf (下面是MASTER.tex代码)
\documentclass{dissertation}
\begin{document}
\include{title/title}
\tableofcontents
\include{summary/summary}
\include{preface/preface}
\include{chapter-1/chapter-1}
\include{conclusion/conclusion}
\include{epilogue/epilogue}
\include{acks/acks}
\include{cv/cv}
\include{publications/publications}
\references{dissertation}
\end{document}
这是 slave.tex
\chapter{Introduction}
\label{chapter_1}
\cite{Einstein1906}
\authors{Albert {\titleshape Einstein}}
\begin{abstract}
\end{abstract}
\section{Document Structure}
\section{Title Page}
\section{Chapters}
\section{Fonts and Colors}
\references{dissertation}
因此,如果我将\cite
文档放入 slave.tex 中,我的 pdf 中会输出 [?]。问题是 dissertation.bib 和 bbl 文件不会自动生成在第 1 章文件夹中。如果我将 dissertation.bib 和 bbl 复制粘贴到 chapter 文件夹中,它就会正常工作。
我问过很多有经验的用户,但没人能解决这个问题。如果能得到任何帮助我都会很感激。
先感谢您