Latex learning notes
【1】Download latex live as package of source, installition around takes 10G space of your destination disk:
First download TeXLive
The official website is:
http://tug.org/texlive/acquire-netinstall.html
official homepage can be seen below:
Installing TeX Live over the Internet
TeX Live 2020 was released on April 10.
For typical needs, we recommend starting the TeX Live installation by downloading install-tl-windows.exe for Windows (18mb), or install-tl-unx.tar.gz (5mb) for everything else. There is also a zip archive install-tl.zip (23mb) which is the same as the .exe. Although the .zip archive works fine on all platforms, the .tar.gz is much smaller, since it omits installation support programs needed only on Windows. The archives are otherwise identical.
toturial for installion is :
https://zhuanlan.zhihu.com/p/41855480
mirros website can be found e.g.:
https://mirrors.tuna.tsinghua.edu.cn/CTAN/systems/texlive/Images/
around 3.5GB
[2] Download TeXstudio
https://www.texstudio.org/
[3] after installation
using endnote to output your bibliography or using google scholar or jornal's official website.
some issue may followed :
say: bibtex output foramt looks strange, or template for EndNote to export need modified:
https://zhuanlan.zhihu.com/p/135217810
https://community.endnote.com/t5/EndNote-API/BibTex-Label-Generator-Plugin/td-p/61667
[4] Warnings:
(1) for the path of your paper, do not use Chinese or Space to name it. it may involve some unknow issue such as compiler cannot find files.
Even eps to pdf package has been used
\usepackage{epstopdf}
You may have issues like this:
! Package pdftex.def Error: File `Fig-1-eps-converted-to.pdf' not found: using
(2) Try to remove file before compiling when bibtex changed
*-eps-figs-included.bbl
[5] bibtex Sorting algorithm
see:
https://www.overleaf.com/learn/latex/bibtex_bibliography_styles
When using Bibtex, the bibliography style is set and the bibliography file is imported with the following two commands:
\bibliographystyle{stylename}
\bibliography{bibfile}
where bibfile is the name of the bibliography .bib file, without the extension and stylename is one of the following:
stylename | output |
---|---|
abbrv |
|
acm |
|
alpha |
|
apalike |
|
ieeetr |
|
plain |
|
siam |
|
unsrt |
Open an example of the bibtex package in Overleaf
https://blog.csdn.net/qq_28424679/article/details/78898809