분실된 참고문헌 목록

분실된 참고문헌 목록

LaTeX 파일:

\documentclass[a4paper]{article}

\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{csquotes}% Recommended

\usepackage[style=authoryear-ibid,backend=biber]{biblatex}

\addbibresource{sample.bib}% Syntax for version >= 1.2

\title{A simple example showing how to create Harvard style referencing in LaTeX}
\author{WriteLaTeX}
\date{}

\begin{document}
\maketitle

\begin{abstract}
The following examples show how to produce Harvard style referencing using biblatex.
\end{abstract}

\section*{Citation examples}

\begin{enumerate}
\item A citation command in parentheses: \parencite{Smith:2012qr}.
\item A citation command for use in the flow of text: As \textcite{Smith:2013jd} said \dots
\item A citation command which automatically switches style depending on location and the option setting in the package declaration (see line 12 in the LaTeX source code). In this case, it produces a citation in parentheses: \autocite{Other:2014ab}.
\end{enumerate}

\printbibliography

\end{document}

.bib 파일:

@BOOK{Smith:2012qr,
    title = {{B}ook {T}itle},
    publisher = {Publisher},
    author = {Smith, J.~M. and Jones, A.~B.},
    year = {2012},
    edition = {7th},
}

@ARTICLE{Smith:2013jd,
    author = {Jones, A.~B. and Smith, J.~M.},
    title = {{A}rticle {T}itle},
    journal = {Journal title},
    year = {2013},
    volume = {13},
    pages = {123-456},
    number = {52},
    month = {March},
    publisher = {Publisher}
}

@BOOK{Other:2014ab,
    title = {{B}ook {T}itle},
    publisher = {Publisher},
    author = {Other, A.~N.},
    year = {2014},
    edition = {10th},
}

결과는 다음과 같아야 합니다.

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

왜 이런 결과가 나왔나요?

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

감사해요!

답변1

나는 이것을 좋아했습니다 :

라텍스 파일


\documentclass{article}
\usepackage{natbib}
\bibliographystyle{agsm}

\begin{document}

Try one.... \citep{sipser2006introduction}
Try two..... \citep{divincenzo2000physical}

\bibliography{sample}% without extension .bib
\end{document}

Bib 파일(sample.bib)


@book{sipser2006introduction,
  title={Introduction to the Theory of Computation},
  author={Sipser, Michael and others},
  volume={2},
  year={2006},
  publisher={Thomson Course Technology Boston}
}

@article{divincenzo2000physical,
  title={The physical implementation of quantum computation},
  author={DiVincenzo, David P},
  journal={Fortschritte der Physik: Progress of Physics},
  volume={48},
  number={9-11},
  pages={771--783},
  year={2000},
  publisher={Wiley Online Library}
}

나는 이런 결과를 얻었습니다 ..

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

라텍스가 .aux 파일을 열 수 없으면 F6과 F11을 번갈아 누르세요.

감사해요..))

관련 정보