참고문헌을 사용하여 괄호 안에 참고문헌 번호 매기기

참고문헌을 사용하여 괄호 안에 참고문헌 번호 매기기

나는 참고문헌을 위해 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}

관련 정보