감동, 마음이 움직이는 것

[bibtex]사용하기 본문

Tips (Utility, Computer Language, and etc.)

[bibtex]사용하기

Struggler J. 2017. 2. 7. 19:21

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.


답변임

bibtex paper rather than bibtex myBib. 





 



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}
}