LaTeX references

(A) Simple references

1. Description

Tags references: \ cite {pa}

(Pa is the identity of each reference)

The documents:
\ thebibliography the begin {} {99}
\ bibitem {PA} Chengyi Yun, Su Wei: \ emph {emphasize content},
\ texttt {website content}
\ {End} thebibliography

2. Source Code

%导言区
\documentclass{ctexart}


%正文区
\begin{document}
    时光的单车飞快驶去,岁月的倒影也将消失,白天与黑夜不停的交替,轮回的四季斑驳了谁的岁月,蹉跎了谁的年华。一个人静静地与岁月交错,于平淡之中细细体会生活的深意,去注视,去聆听,去感受那些带着希望的别离以及那些经受沧桑的相逢,不论时光如何飞转,那些落花一样的往事,依然鲜活地存在于我的脑海之中。当岁月和美丽的回忆已成为风中的叹息,我们伤感的眼里也许依然残存旧时的泪痕,模糊了视线,不敢轻易触碰。
    % 引用文献
    \cite{pa}
    

    % \emph强调某些内容
    \begin{thebibliography}{99}
        \bibitem{pa}程一云,苏伟: \emph{计算方法},
        \texttt{https://www.meiwen.com.cn/article/51366.html}
    \end{thebibliography}
        
\end{document}

3. The output effect

 

(B) to document management approach

1. Description:

Document management, the idea is to put it references a file name suffix .bib's,

In the preamble need to import: \ bibliographystyle {plain} packages

Document then introduced where needed, the use of \ cite {name} tag

In use the end of the text: \ bibliography {test.bib} import file reference

2. Source:

(2) test.bib file

@article{Alice13,
title = {Demostration of bibliography items},
author = {A. Alice and B. Bob and C. Charlie and D. Danny},
year = {2013},
journal = {Journal of \TeX perts},
volume = {36},
number = {7},
pages = {114-120}}

(3) Source article

%导言区
\documentclass{ctexart}

%导入数据库的参考文献模板
\bibliographystyle{plain}

%正文区
\begin{document}
    时光的单车飞快驶去,岁月的倒影也将消失,白天与黑夜不停的交替,轮回的四季斑驳了谁的岁月,蹉跎了谁的年华。一个人静静地与岁月交错,于平淡之中细细体会生活的深意,去注视,去聆听,去感受那些带着希望的别离以及那些经受沧桑的相逢,不论时光如何飞转,那些落花一样的往事,依然鲜活地存在于我的脑海之中。当岁月和美丽的回忆已成为风中的叹息,我们伤感的眼里也许依然残存旧时的泪痕,模糊了视线,不敢轻易触碰。
    \cite{Alice13}

    %导入模板,放在末尾
    \bibliography{test.bib}

\end{document}

3. The output effect

 

 

 

(C) directly from the source website

1. Description

Directly from the source site, references cited. Two steps are required

  1. Zotero is installed locally
  2. In the browser plug-ins installed Zotero
  3. Not the same as the second, the content of the references that we have obtained, copied to our .bib file, you can import the same.

2. Operation

For example, I have installed Zotero client locally, and I of the Zotero Firefox browser plug-in installed.

(1) Open HowNet

The content of the desired search, I am here to search elements Python programming example.

Note: It should be open Zotero client, Zotero browser plug-ins such contact only with the client up to the incoming data to the client.

 

(2) choose to export documents

Here chose "to use the language of python GUI visual design"

 

(3) View Document

Right-click on the entry in the selection of literature to be exported

 

 

(4) Select the export entry

 

(5) is selected format BibTeX

 

(6) to save to your desktop

 

(7) which reads:

@article{_pythongui_2019,
    title = {{使用Python语言的GUI可视化编程设计}},
    volume = {19},
    issn = {1009-623X},
    url = {http://kns.cnki.net/kns/detail/detail.aspx?QueryID=5&CurRec=2&recid=&FileName=DPJY201902007&DbName=CJFDTEMP&DbCode=CJFQ&yx=&pr=&URLID=},
    abstract = {为了提高开发GUI的效率,对Python可视化编程环境的研发开展研究。对Python语言可视化编程的宏观整体进行了设计,分别包括资源整合、属性编译、界面因素控制、数据存储。考虑相关系统的再次转移与使用,应用Python语言对可视化编程进行了实现,降低了对GUI进行研发的成本,提高了工作效率,并解决了Python语言进行可视化研发的部分瓶颈。},
    language = {中文;},
    number = {02},
    urldate = {2019-03-08},
    journal = {单片机与嵌入式系统应用},
    author = {耿, 颖},
    year = {2019},
    keywords = {编程, 可视化, GUI, programming, Python, visualization},
    pages = {20--22+44}
}

(8) Copy the contents

We pasted into the document management .bib reference document for unified management.

 

 

Published 118 original articles · won praise 63 · views 40000 +

Guess you like

Origin blog.csdn.net/qq_42185999/article/details/104274580