감동, 마음이 움직이는 것
[bibtex]사용하기 본문
1. Bibtex 개념
http://tex.stackexchange.com/questions/64696/bibtex-i-couldnt-open-file-name-mybib-aux
myBib.bib
is only a database, which may contain many entries that you don't cite in your paper. It's in paper.tex
that you tell the system what bibliographic database to use (with \bibliography{myBib}
). So it's paper
which you must run BibTeX on (preciselypaper.aux
, but the extension can be omitted)
위에 답변이 가장 이해가 잘됨.
질문은 아래와 같음.
My article paper.tex
compiles fine, but myBib.bib
doesn't.
$ pdflatex paper.tex
$ bibtex myBib
I couldn't open file name `myBib.aux'
I happen to be using TeXShop, but the command line is unambiguous.
답변임
2. bibtex사용법
출처: http://amath.colorado.edu/documentation/LaTeX/reference/faq/bibstyles.html
http://bazzinga.egloos.com/5507595
The reference/bibliography section usually appears at the endof an publication. In your LaTeX file, these two commandsinsert the reference section:
\bibliographystyle{xxx}
\bibliography{yyy}
The ``xxx'' is a style name --plain or abbrv or siam oralpha or any of dozens of other available styles,many listed below.The ``yyy'' is the name of the bib file (yyy.bib)containing the reference database.
For example, the command \bibliography{myrefs}would call on file ``myrefs.bib''.
[예시]
\bibliographystyle{apsrev4-1}
\bibliography{et}
[예시-포멧]
@ARTICLE{Zurek:1993,
AUTHOR = {Zurek, R. W. and Martin, L. J.},
TITLE = {Interannual Variability of planet-encircling dust activity on {M}ars},
YEAR = {1993},
JOURNAL = jgr,
VOLUME = {98},
NUMBER = {E2},
PAGES = {3247--3259}
}
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[gnuplot] \tilde{x} 표현하기 (1) | 2017.02.23 |
---|---|
[Latex] 로마자 숫자표현하기 (0) | 2017.02.15 |
동적할당으로 Array크기 변경하는 함수 만들 때 주의할 것 (0) | 2017.02.06 |
[gnuplot] fillcurves (0) | 2017.02.02 |
[색상 변환기] (0) | 2017.02.02 |
bibtex paper
rather thanbibtex myBib
.