filecontents and filecontents* environments enable a LATEX source file to generate external files as it runs through LATEX. <https://ctan.org/pkg/filecontents?lang=en>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% Provide some test content | |
\begin{filecontents*}{\jobname.bib} | |
@article{Bao2015, | |
author = {Bao, Z. and Pan, G. and Zhou, W.}, | |
doi = {10.1109/TIT.2015.2421894}, | |
issue = {6}, | |
journal = IEEE_J_IT, | |
pages = {3413-3426}, | |
title = {Asymptotic Mutual Information Statistics of | |
{mimo} Channels and {CLT} of Sample Covariance Matrices}, | |
volume = {61}, | |
year = {2015}, | |
} | |
\end{filecontents*} | |
\documentclass{article} | |
\usepackage[style = ieee]{biblatex} | |
\addbibresource{IEEEabrv.bib} | |
\addbibresource{\jobname.bib} | |
\begin{document} | |
\nocite{*} | |
\printbibliography | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment