Tutorial latex on android: how to make documents in LaTeX: How to add references in documents

Опубликовано: 03 Октябрь 2024
на канале: Rajendra Choure
138
5

Adding citations without using good citation manager is a nightmare. in LaTex bibtex is very efficient citation namger. This video shows how to create bibtex file and link that to our document, also how to add citations to text.

Remember to use
No special package is required.
Use following code at end of tex file.
\bibliography{document} % document.bibis default file name in vetbtex
\bibliographystyle{abbrv} % in pair of curly braces
Style name is there, you can use apalijw, scimag, nature or style required by your publisher, university or mentor
Use the following code
\cite{bibid}% bibid is the markup for reference you want to add. It is just afeter the reference type in bibentry.

Example Bibentry
% 32386062 @Article{pmid32386062, Author="Lambert, I. and Pervent, M. and Quer?, A. L. and Cl?ment, G. and Tauzin, M. and Severac, D. and Benezech, C. and Tillard, P. and Martin-Magniette, M. L. and Colella, S. and Lepetit, M. ", Title="{{R}esponses of mature symbiotic nodules to the whole plant systemic nitrogen signaling}", Journal="J. Exp. Bot.", Year="2020", Month="May" } % 32336748 @Article{pmid32336748, Author="Han, Q. and Ma, Q. and Chen, Y. and Tian, B. and Xu, L. and Bai, Y. and Chen, W. and Li, X. ", Title="{{V}ariation in rhizosphere microbial communities and its association with the symbiotic efficiency of rhizobia in soybean}", Journal="ISME J", Year="2020", Month="Apr" }

% 32292600 @Article{pmid32292600, Author="Corpas, F. J. and Palma, J. M. ", Title="{{H}2{S} signaling in plants and applications in agriculture}", Journal="J Adv Res", Year="2020", Volume="24", Pages="131--137", Month="Jul" }

% 32218172 @Article{pmid32218172
, Author="Roy, P. and Achom, M. and Wilkinson, H. and Lagunas, B. and Gifford, M. L. ", Title="{{S}ymbiotic {O}utcome {M}odified by the {D}iversification from 7 to over 700 {N}odule-{S}pecific {C}ysteine-{R}ich {P}eptides}", Journal="Genes (Basel)", Year="2020", Volume="11", Number="4", Month="Mar" }

The text just after @articoe{ , is the bibid.