2013年5月26日 星期日

[Latex] How to make reference part in latex file

[Latex] How to make reference part in latex file



Way 1:

\begin{document}



\begin{thebibliography}{9}

\bibitem{latexcompanion} Michel Goossens, Frank Mittelbach, and Alexander Samarin. \textit{The \LaTeX\ Companion}. Addison-Wesley, Reading, Massachusetts, 1993.

\bibitem{einstein} Albert Einstein. \textit{Zur Elektrodynamik bewegter K{\"o}rper}. (German) [\textit{On the electrodynamics of moving bodies}]. Annalen der Physik, 322(10):891–921, 1905.

\bibitem{knuthwebsite} Knuth: Computers and Typesetting,\\\texttt{http://www-cs-faculty.stanford.edu/\~{}uno/abcde.html}

\bibitem{Biblio:1} 梁XX、林XX. Linux嵌入式系統實作. 2302 \href{http://speed.cis.nctu.edu.tw/~ydlin/miscpub/embedlinux_tanet.pdf}{http://speed.cis.nctu.edu.tw/\~{}ydlin/miscpub/embedlinux\_{}tanet.pdf}

\end{thebibliography}



\end{document}



Way 2:

Use JabRef (In the internet have so many similer tools) to create a file (*.bib)



The content of  *.bib

Use @MISC and howpublished can create hyperlink.

So When user press hyperlink which can download pdf.

I try it a lot.



@MISC{biblio:1,

  author = {梁XX、林XX},

  title = {Linux嵌入式系統實作},

  year = {2002},

  owner = {freeman},

  timestamp = {2013.05.23},

  url = {http://speed.cis.nctu.edu.tw/~ydlin/miscpub/embedlinux_tanet.pdf},

  howpublished={\url{http://speed.cis.nctu.edu.tw/~ydlin/miscpub/embedlinux_tanet.pdf}}



}

Way 1

\begin{document}

% show reference when article cite the bibtexkey

\bibliographystyle{plain}

\bibliography{data/biblio}



\end{document}



Way 2

\begin{document}

\nocite{*} % show all reference without cite.

\bibliographystyle{plain}

\bibliography{data/biblio}



\end{document}

Related Posts:

0 意見:

張貼留言