使用圆圈编号的参考文献列表

使用圆圈编号的参考文献列表

在我的文档中,我想使用类似于参考文献列表中的图片的内容

在此处输入图片描述

关于如何实现这一点有什么想法吗?

谢谢你!

这是我的模板

\documentclass[12pt,a4paper,openany]{report}
\usepackage{pifont} %bouni
\usepackage{graphicx}
\usepackage{graphicx}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{newlfont}
\usepackage{amsmath}
\usepackage{t1enc}
\usepackage[latin1]{inputenc}
\usepackage[french]{babel}

\usepackage{fancybox}
\usepackage{xcolor}


\newcommand\encercle[1]{%
    \unitlength1em%
    \begin{picture}(1.5,1.5)%
        \put(0.75,0.3){\circle{1.5}}% modifier 0.3 éventuellement
        \put(0,0){\parbox[b]{1.5em}{\centering#1}}%
    \end{picture}}


\usepackage{amssymb}
\usepackage{relsize}
\usepackage{layout}
\usepackage{fancyhdr}

\usepackage{calc}%pour encadrer un paragraphe
\usepackage[top=3cm, bottom=3cm, left=3cm, right=3cm]{geometry}

\usepackage{xcolor}
\definecolor{citeblue}{rgb}{0.00,0.00,0.60}
\usepackage[colorlinks=true,pagebackref=true]{hyperref}
\hypersetup{urlcolor=citeblue, citecolor=citeblue, linkcolor=citeblue}

\begin{document}
\begin{thebibliography}{99}

\bibitem{doug} R.G. Douglas, \textit{On majorization, factorization and range inclusion of operators in Hilbert space}, Proc. Amer. Math. Soc. \textbf{17}, 413--416, 1966.

\bibitem{fg}{M. Faghih-Ahmadi, F. Gorjizadeh,} {A-numerical radius of A-normal operators in semi-Hilbertian spaces,} Italian journal of pure and applied mathematics n. 36-2016 (73-78).
    
\end{thebibliography}

But I want to obtain this form automatically 
\begin{enumerate}
\item[\encercle{1}] R.G. Douglas, \textit{On majorization, factorization and range inclusion of operators in Hilbert space}, Proc. Amer. Math. Soc. \textbf{17}, 413--416, 1966.
\item[\encercle{2}] {M. Faghih-Ahmadi, F. Gorjizadeh,} {A-numerical radius of A-normal operators in semi-Hilbertian spaces,} Italian journal of pure and applied mathematics n. 36-2016 (73-78).
\end{enumerate}
\end{document}

答案1

使用 biblatex:

\documentclass{article}
\usepackage[style=numeric]{biblatex}
\DeclareFieldFormat{labelnumberwidth}{%
\textcircled{\scriptsize #1}}
\addbibresource{report.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}

平均能量损失

当然,对于更大的参考文献列表,你需要一些比格式化更复杂的东西\textcircledlabelnumberwidth有关使用的一些想法tikz,请参阅这里)。

仅使用thebibliography环境:

\documentclass{article}
\makeatletter
\def\@biblabel#1{\textcircled{\scriptsize #1}}
\makeatother
\begin{document}
\begin{thebibliography}{99}
\bibitem{doug} R.G. Douglas, \textit{On majorization, factorization and range inclusion of operators in Hilbert space}, Proc. Amer. Math. Soc. \textbf{17}, 413--416, 1966.
\bibitem{fg}{M. Faghih-Ahmadi, F. Gorjizadeh,} {A-numerical radius of A-normal operators in semi-Hilbertian spaces,} Italian journal of pure and applied mathematics n. 36-2016 (73-78).
\end{thebibliography}
\end{document}

相关内容