How to Cite MATLAB File Exchange file using Bibtex?
25 ビュー (過去 30 日間)
古いコメントを表示
I want to cite the following file from MATLAB File Exchange:
Is there a way to generate bibtex for this?
0 件のコメント
採用された回答
Chunru
2021 年 10 月 31 日
編集済み: Chunru
2021 年 11 月 3 日
You can do it manually as follows: [Updated]
atharva aalok (2021). Professional_Plots (https://www.mathworks.com/matlabcentral/fileexchange/100766-professional_plots), MATLAB Central File Exchange. Retrieved October 31, 2021.
@misc
{ aalok2021,
author={Atharva Aalok},
title={Professional Plots},
year=2021
howpublished = "\url{https://www.mathworks.com/matlabcentral/fileexchange/100766-professional_plots}",
note = "[Online; accessed October 31, 202]"
}
Make sure to include \usepackage{url} or \usepackage{hyperref} in your main .tex file).
3 件のコメント
Amna Mazen
2022 年 9 月 6 日
編集済み: Amna Mazen
2022 年 9 月 6 日
A comma is missing after the "year". This gives a latex error and prevents the url from appearing in the reference. Here is the modified version:
@misc
{ aalok2021,
author={Atharva Aalok},
title={Professional Plots},
year=2021,
howpublished = "\url{https://www.mathworks.com/matlabcentral/fileexchange/100766-professional_plots}",
note = "[Online; accessed October 31, 202]"
}
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で MATLAB Report Generator についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!