![Tufte-book에서 혼합 인용 번호 스타일 사용](https://rvso.com/image/472709/Tufte-book%EC%97%90%EC%84%9C%20%ED%98%BC%ED%95%A9%20%EC%9D%B8%EC%9A%A9%20%EB%B2%88%ED%98%B8%20%EC%8A%A4%ED%83%80%EC%9D%BC%20%EC%82%AC%EC%9A%A9.png)
tufte-book
나는 대부분의 인용이 보조주에 제공되고 인용 번호가 기본적으로 위 첨자로 표시되는 클래스를 사용하여 작성된 책을 가지고 있습니다 . 그러나 특히 다른 출처에서 재인쇄된 일부 그림의 캡션에서 인용 번호를 대괄호 안에 표시하고 싶은 곳이 있습니다. 그러나 이 작업을 수행하는 방법을 모르겠고 가장 가까운 방법은 \citep
명령을 \setcitestyle{numbers,square}
. 문제는 보조주에 인용 내용이 포함되지 않고 인용 카운터도 제대로 조정되지 않을 수 있다는 것입니다. 그러나 인용은 참고문헌 페이지에 나타납니다. 내가 원하는 것은 텍스트에서 대괄호 안에 있는 인용 번호의 경우 해당 숫자가 인용 텍스트와 함께 보조주에 위 첨자 형식으로 정상적으로 표시되기를 원하는 것입니다.
\documentclass{tufte-book}
% Citations and references
\usepackage{natbib}
\usepackage{bibentry}
\renewcommand{\bibname}{References}
\renewcommand{\bibname}{References}
\setcitestyle{numbers, sort}
\setcitestyle{square}
\begin{filecontents}{a.bib}
@article{HapticsSurvey,
author = {Bermejo, Carlos and Hui, Pan},
date-added = {2023-09-10 19:00:06 -0700},
date-modified = {2023-09-10 19:00:06 -0700},
journal = {ACM Computing Surveys (CSUR)},
number = {9},
pages = {1--35},
publisher = {ACM New York, NY},
title = {A survey on haptic technologies for mobile augmented reality},
volume = {54},
year = {2021}}
@article{PulfrichThreshold,
author = {Durai, C Vijay Reena and Rajendran, Siddhart and Webster, Michael A and Vempati, Sandeep and Bharadwaj, Shrikant R},
date-added = {2023-09-10 12:48:28 -0700},
date-modified = {2023-09-10 12:48:28 -0700},
journal = {Vision research},
pages = {85--93},
publisher = {Elsevier},
title = {The magnitude of monocular light attenuation required to elicit the Pulfrich illusion},
volume = {187},
year = {2021}}
@book{PalmerRadiometry,
author = {Palmer, James M and Grant, Barbara Geri},
date-added = {2023-09-10 11:13:21 -0700},
date-modified = {2023-09-10 11:13:21 -0700},
publisher = {SPIE press Bellingham},
title = {The art of radiometry},
year = {2010}}
\end{filecontents}
\begin{document}
This is first line. \cite{HapticsSurvey}
This is second line. \citep{PulfrichThreshold}
This is third line. \cite{PalmerRadiometry}
\bibliographystyle{customv7}
\bibliography{a}
\end{document}