
내 보고서의 인용과 관련해 도움을 줄 수 있는 사람이 있나요? Latex가 컴파일되면 "pmrep.bbl 파일이 없습니다"라는 오류 메시지가 나타나고 인용이 '?'로 표시됩니다. PDF 뷰어에서.
내 턱받이 파일(nbsrep.bib):
@misc{blackboard2016,
author = "Blackboard",
title = "Blackboard Collaborate"
note ="http://www.blackboard.com/online-collaborative-learning/blackboard-collaborate.aspx",
urldate = "2016-10-28",
year = "2016"
}
@misc{clarke2016,
author = "Lauren Clarke",
organization = "Concrete",
title = "Is the UEA campus becoming unrecognisable? - concrete",
note = "http://www.concrete-online.co.uk/uea-campus-unrecognisable/",
urldate = "2016-10-27",
year = "2016",
month = "06",
day = "14"
}
@misc{frankkeyes2015,
author = "Jessica Frank-Keyes",
organization = "Concrete",
title = "UEA plans to recruit 20\% more students by 2030 - concrete",
note = "http://www.concrete-online.co.uk/uea-plans-to-recruit-20-more- students-by-2030/",
urldate = "2016-10-27",
year = "2015",
month = "11",
day = "30"
}
@misc{uea2016,
author = " UEA",
title = "Archived annual facts and figures booklets Archived annual facts and figures booklets",
note = "https://portal.uea.ac.uk/planningoffice/biu/planning-and-management/facts-and-figures",
urldate = "2016-10-27",
year = "2016"
}
내 tex 파일(pmreport):
\documentclass[final]{nbsreport}
%%\usepackage{hyperref}
\usepackage{natbib}
\usepackage{url}
\usepackage{hyperref}
\begin{document}
\section{Blackboard Collaborate Report}
\subsection{Introduction}
The University is currently struggling to fulfill the needs of teaching staff who require rooms to conduct their seminars, lectures, labs and workshops. With over 14,000 students currently enrolled in the university you can begin to understand, with a further 3,000 expected in the next few years \citep{uea2016, frankkeyes2015}. Likewise, in the UEA 2030 vision programme there are plans to demolish older buildings on campus which include; CD Annex, Blackdale and Congregation Hall \citep{clarke2016}. As a result teaching staff have voiced there concerns with one particular statement coming from the School of Biology who stated "it is putting a huge strain on teaching resources within the school' \citep{clarke2016}.
The new technology that has been implemented is Blackboard Collaborate a simple, convenient and reliable online virtual classroom solution \citep{blackboard2016}. It allows organization such as UEA to deliver engagement to their students even though they are not in the same room \citep{blackboard2016}. This new technology enables seminar groups to be delivered with students distributed in various areas such as; home, work or even in another country as long as they have internet connectivity. Currently the technology is not widely understood by the university teaching staff. Our project team was assembled to define, design, plan and deliver a Global Showcase Event that will powerfully demonstrate the new technology to the university teaching staff. Additionally, recruit staff ambassadors that will enable promotion within their respected university school. The reason behind the project team being formed was that ITCS currently have a heavy workload and cannot fully commit to promoting the technology this academic year.
\bibliography{nbsrep}
\end{document}
답변1
다음 예에서는 사용 중인 것처럼 보이는 article
(독점?) 클래스 대신 문서 클래스를 사용하겠습니다 . nbsreport
보시다시피, article
클래스를 사용할 때 코드는 올바르게 컴파일됩니다. 파악하기 어려운 클래스로 전환할 때 컴파일되지 않으면 nbsreport
후자의 클래스에 하나 이상의 버그가 있을 수 있습니다.
참고 apalike
문헌 스타일은 가장 오래된 참고문헌 스타일 중 하나입니다. 따라서 처리는 물론이고 urldate
. \url
필요한 경우 LaTeX가 (더) 적합한 줄 바꿈 가능성을 찾을 수 있도록 지시문 에 URL 문자열을 넣어야 합니다 . 쉼표 누락과 같은 구문 오류도 수정하세요. 또한 필드에서 발생하는 "UAE" 인스턴스를 title
중괄호로 묶어 소문자로 변환되지 않도록 하세요.
\RequirePackage{filecontents}
\begin{filecontents}{nbsrep.bib}
@misc{blackboard2016,
author = "Blackboard",
title = "Blackboard Collaborate",
note ="\url{http://www.blackboard.com/online-collaborative-learning/blackboard-collaborate.aspx}, last checked on 2016-10-28",
year = "2016"
}
@misc{clarke2016,
author = "Lauren Clarke",
organization = "Concrete",
title = "Is the {UEA} campus becoming unrecognisable?--- concrete",
note = "\url{http://www.concrete-online.co.uk/uea-campus-unrecognisable/}, last checked on 2016-10-27",
year = "2016",
month = "June",
day = "14"
}
@misc{frankkeyes2015,
author = "Jessica Frank-Keyes",
organization = "Concrete",
title = "{UEA} plans to recruit 20\% more students by 2030---concrete",
url = "\url{http://www.concrete-online.co.uk/uea-plans-to-recruit-20-more-students-by-2030/}, last checked on 2016-10-27",
year = "2015",
month = "November",
day = "30"
}
@misc{uea2016,
author = "UEA",
title = "Archived annual facts and figures booklets",
note = "\url{https://portal.uea.ac.uk/planningoffice/biu/planning-and-management/facts-and-figures}, last checked on 2016-10-27",
year = "2016"
}
\end{filecontents}
\documentclass[final]{article} % I don't have access to 'nbsreport'
\usepackage{natbib}
\bibliographystyle{apalike}
\usepackage[hyphens]{url}
\usepackage[colorlinks,allcolors=blue]{hyperref} % choose your preferred color(s)
\begin{document}
\citep{uea2016, frankkeyes2015}
\citep{clarke2016}
\citep{blackboard2016}
\bibliography{nbsrep}
\end{document}