Latex学习_MARKDOWN(持续更新)

overleaf

IEEE期刊模板:https://template-selector.ieee.org/secure/templateSelector/publicationType
IEEE会议模板:https://www.ieee.org/conferences/publishing/templates.html

图片、表格

公式

$ formular $
\begin{equation}
formular
\end{equation}

公式转换网站

https://editor.codecogs.com/

https://www.latexlive.com/home##

https://simpletex.cn/ai/latex_ocr

https://webdemo.myscript.com/views/math/index.html#

原文链接:https://blog.csdn.net/weixin_44142151/article/details/124746713

希腊字母

Lowercase Latex code Uppercase Latex code
α \alpha α \alpha A \Alpha A \Alpha
β \beta β \beta B \Beta B \Beta
γ \gamma γ \gamma Γ \Gamma Γ \Gamma
δ \delta δ \delta Δ \Delta Δ \Delta
ϵ \epsilon ϵ \epsilon E \Epsilon E \Epsilon
ζ \zeta ζ \zeta Z \Zeta Z \Zeta
η \eta η \eta H \Eta H \Eta
θ \theta θ \theta Θ \Theta Θ \Theta
ι \iota ι \iota I \Iota I \Iota
κ \kappa κ \kappa K \Kappa K \Kappa
λ \lambda λ \lambda Λ \Lambda Λ \Lambda
μ \mu μ \mu M \Mu M \Mu
ν \nu ν \nu N \Nu N \Nu
ξ \xi ξ \xi Ξ \Xi Ξ \Xi
ο \omicron ο \omicron O \Omicron O \Omicron
π \pi π \pi Π \Pi Π \Pi
ρ \rho ρ \rho P \Rho P \Rho
σ \sigma σ \sigma Σ \Sigma Σ \Sigma
τ \tau τ \tau T \Tau T \Tau
υ \upsilon υ \upsilon Υ \Upsilon Υ \Upsilon
ϕ \phi ϕ \phi Φ \Phi Φ \Phi
χ \chi χ \chi X \Chi X \Chi
ψ \psi ψ \psi Ψ \Psi Ψ \Psi
ω \omega ω \omega Ω \Omega Ω \Omega

上下标

幂次

参考文献

1.引用方式

在文中通过\cite{}引用对应的参考文献。

\cite{reference name}

2.放置方式

方式一:在文献检索网站中,引用时选择BibTex格式,复制到bib文件中。bib文件的建立:可以先建立一个txt文件,再把文件后缀改成bib即可。

\begin{document}
... ...文章内容 ... ...

\bibliographystyle{IEEEtran} %必须添加
\bibliography{IEEEabrv,XXX} %必须添加,对应XXX.bib文件

\vfill %与参考文献的表示无关,仅用于填充段落空白,自动排版
\end{document}

方式二:如不想使用bib文件,而只想把内容和参考文献放在同一项目中,则可以在方式一的基础上,点击Recompile旁边的logs and output files–>右下角other logs and files–>最上方output.bbl,下载后将里面的内容复制到文中最后。

\begin{document}
... ... 文章内容... ...

\begin{thebibliography}{100}
    复制output.bbl文件中的内容,如:
    \bibitem{ref1} ...
    \bibitem{ref2} ...
\end{thebibliography}

\vfill
\end{document}

3.细节问题

文献上下标

 \textsuperscript{} %上标
 \textsubscript{}  %下标

文献上标示例

@ARTICLE{D2-JSCC,
  author={Huang, Jianhao and Yuan, Kai and Huang, Chuan and Huang, Kaibin},
  journal={IEEE Journal on Selected Areas in Communications}, 
  title={D\textsuperscript{2}-{JSCC}: Digital Deep Joint Source-channel Coding for Semantic Communications}, 
  year={2025},
  volume={},
  number={},
  pages={1-1},
  }

强制大写

用额外的{ }框住需要大写的部分。
文献示例

@ARTICLE{8-wu2022channel,
  author={Wu, Haotian and Shao, Yulin and Mikolajczyk, Krystian and Gündüz, Deniz},
  journal={IEEE Wireless Communications Letters}, 
  title={Channel-Adaptive Wireless Image Transmission With {OFDM}}, 
  year={2022},
  volume={11},
  number={11},
  pages={2400-2404},
  keywords={OFDM;Channel estimation;Wireless communication;Decoding;Symbols;Resource management;Image communication;Joint source channel coding;deep neural networks;OFDM;image communications},
  doi={10.1109/LWC.2022.3204837}}

你可能感兴趣的:(科研小白成长路,学习)