tufte-book で混合引用番号スタイルを使用する

tufte-book で混合引用番号スタイルを使用する

クラスを使用して書かれた本があり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}

ここに画像の説明を入力してください ここに画像の説明を入力してください

関連情報