위키 및 도서 참조가 포함된 턱받이 관련 문제

위키 및 도서 참조가 포함된 턱받이 관련 문제

이전에 턱받이 파일을 이용하여 라텍스로 보고서를 작성했는데 제대로 작동했습니다. 그런데 Latex로 새 보고서를 작성 중이고 별도의 bib 파일에 참조가 있는데 이 보고서가 작동하지 않습니다. 유일한 주요 차이점은 대부분 기사 대신 책과 위키피디아를 참고 자료로 사용한다는 것입니다.

Windows에서 Texworks를 사용하고 있습니다. bbl을 생성하기 위해 bib를 컴파일한 후, pdflatex + bibtex + pdflatex + pdflatex를 사용하여 tex 파일을 컴파일하면. 시도해 보니 마지막에 '참조' 섹션이 표시되지만 다음과 같은 참조가 표시되지 않습니다.

  1. Reinhard, DA 사례 연구 논문에서도 인용이 보이지 않습니다.

MWE는 다음과 같습니다. tex는 다음과 같습니다.

\documentclass{article}  
%\usepackage{url,apacite}  - had problems regardless if I included this or not
%\bibliographystyle{apacite} - same as above
\begin{document}  
Alpha particles \cite{wikip} (named \cite{Comp} after and denoted by the first letter     in the
Greek alphabet,\[\alpha\]) consist of two protons and two neutrons bound
together.
This means that an particle is a helium nucleus. 

\bibliographystyle{plain}
\bibliography{BibName}

\end{document}

첫 번째 보고서의 턱받이는 다음과 같습니다.

@article{example,
  author = {Knuth, Donald E.},
  year = {1986},
  title = {The \TeX book},
}

내 두 번째 보고서의 턱받이는 다음과 같습니다.

@misc{wikip,
   author = "Wikipedia",
   title = "Pen --- {W}ikipedia{,} The Free Encyclopedia",
   year = "2014",
   url = "\url{https://en.wikipedia.org/wiki/Pen}",
   note = "[Online; accessed 14-December-2014]"
 }


@book{Comp,
   author = "Rub",
   title = "Com",
   year = "1997",
   publisher = "John Wiley & Sons, Inc.",
    address   = "New York, New York"
 }    

내가 도대체 ​​뭘 잘못하고있는 겁니까?

정말 감사합니다!

답변1

몇 가지 오류가 있습니다. David Carlisle은 이미 댓글에서 그 중 일부를 지적했습니다.

  • &게시자 필드의 기호를 "이스케이프"해야 합니다 . 즉, 를 작성해야 합니다 \&.

  • 패키지 및 관련 참고문헌 스타일을 사용하려는 것 같으므로 apaciteURL 문자열을 \url{...}. 대신에 url = "...",.

  • title"wikip" 항목 필드 의 중괄호 위치를 수정하세요 .

여기에 이미지 설명을 입력하세요

\documentclass{article}  
\usepackage{apacite}
\bibliographystyle{apacite} 
\usepackage{url}
\usepackage{filecontents}
\begin{filecontents*}{BibName.bib}
@misc{wikip,
   author = "Wikipedia",
   title = "Pen --- {Wikipedia, The Free Encyclopedia}",
   year = "2014",
   url = "https://en.wikipedia.org/wiki/Pen",
   note = "Accessed 14-December-2014"
 }
@book{Comp,
   author = "Rub",
   title = "Com",
   year = "1997",
   publisher = "John Wiley \& Sons, Inc.",
    address   = "New York, New York"
 }    
\end{filecontents*}
\begin{document}  
\cite{wikip} 

\cite{Comp}
\bibliography{BibName}
\end{document}

답변2

여기에 이미지 설명을 입력하세요

 John Wiley & Sons, 

이어야한다

 John Wiley \& Sons, 

그렇지 않으면 오류가 발생 &하지만 라텍스 턱받이 라텍스 라텍스가 표시된 이미지를 생성해야 합니다. (귀하의 설명은 bibtex를 먼저 실행한 것처럼 들리는데 이는 올바르지 않습니다.)

관련 정보