1. 程式人生 > >Mac:TexStudio 新增論文引用

Mac:TexStudio 新增論文引用

新增引用需要額外添寫一個檔案ieetutorial.bib

%一條引用記錄,直接從谷歌學術copy就好
@article{hart1968formal,
  title={A formal basis for the heuristic determination of minimum cost paths},
  author={Hart, Peter E and Nilsson, Nils J and Raphael, Bertram},
  journal={IEEE transactions on Systems Science and Cybernetics},
  volume={4
}, number={2}, pages={100--107}, year={1968}, publisher={IEEE} }
\documentclass[conference, 12pt]{IEEEtran}

\usepackage{xeCJK}
\usepackage{fontspec}
\setmainfont{Times New Roman}
%這裡新增引用包
\usepackage{cite}

\begin{document}

\title{論文題目}
\author{\IEEEauthorblockN{名字}\IEEEauthorblockA{實驗室\\學院\\
大學}} \maketitle \begin{abstract} 這裡是摘要 \end{abstract} \section{introduction} 這裡是引用\cite{sample1} %這裡新增引用資料庫 \bibliographystyle{IEEEtran} \bibliography{ieetutorial} \end{document}