私は参考文献に thebibliography 環境を使用しています。テキスト内で特定の参考文献 (\cite{ref1}) を引用すると、たとえば [1] のように表示されます。代わりに括弧 (1) で囲みたいのですが、それは可能ですか?
感謝を込めて
答え1
引用の呼び出しと参考文献自体の両方で、角括弧の代わりに丸括弧を使用することを希望されていると想定します。
\documentclass{article}
% Change appearance of numeric labels in citation call-outs
\usepackage{cite}
\renewcommand\citeleft{(}
\renewcommand\citeright{)}
% Change appearance of numeric labels in bibliography
\makeatletter
\renewcommand{\@biblabel}[1]{(#1)}
\makeatother
\begin{document}
\cite{myref}
\begin{thebibliography}{9}
\bibitem{myref} Some entry.
\end{thebibliography}
\end{document}