natbib 패키지에서 괄호 억제

natbib 패키지에서 괄호 억제

현재 인용을 위해 이 패키지를 사용하고 있습니다. 위 첨자로 인용 번호가 필요하지만 괄호도 함께 제공됩니다. 이러한 괄호를 억제할 수 있는 방법이 있나요?

\documentclass[10pt,a4paper]{article}
\usepackage{natbib}
\setcitestyle{super}


\begin{document}
$\beta$-protein\cite{hardy1992alzheimer}  % citation 
\bibliographystyle{unsrt}
\bibliography{reference}
\end{document}

여기에 이미지 설명을 입력하세요

참조.bib

@article{hardy1992alzheimer,
  title={Alzheimer's disease: the amyloid cascade hypothesis},
  author={Hardy, John A and Higgins, Gerald A},
  journal={Science},
  volume={256},
  number={5054},
  pages={184--186},
  year={1992},
  publisher={American Association for the Advancement of Science}
}

답변1

당신이 사용할 수있는

\setcitestyle{%
  super,%
  open=,%
  close=,%
}

%매우 중요하며 \setcitestyle공백을 전혀 좋아하지 않는 것 같습니다. 그 protein와 동등한 작은 공간이 여전히 있는데 \textsuperscript{1}어디서 오는지 모르겠습니다.

unsrtnat그런데: 아마도 다음과 완벽하게 호환되는 데 사용하는 것이 더 좋은 아이디어일 것입니다 .natbib

관련 정보