私は現在論文を書いていますが、私たちの学部のテンプレートは
\bibliographystyle{abbrvnat}
そして私は
\RequirePackage[round,
sort&compress]{natbib}
.cls ファイル内。
インターネット上の他の参考資料では が示されていまし\citetitle
たが、機能せず、今まで解決策を見つけることができませんでした。
必要なときに定期的に検索しますが、結果がないため、言い換えやハードコーディングなどの他の解決策を見つけます...
本当にありがとうございます。このサイトは以前私にたくさんの答えを提供してくれました。
ドイツから乾杯!
答え1
あなたはよだれかけ\citetitle
次の例に示すように、自分でマクロをパッケージ化して設定します。
\RequirePackage{filecontents}
\begin{filecontents*}{mybib.bib}
@article{abc,
author = {Author, Anne},
title = {{Random Thoughts}},
journal= {Circularity Today},
year = 5001,
volume = 1,
number = 2,
pages = {3-4},
}
\end{filecontents*}
\documentclass{article}
\usepackage[round,sort&compress]{natbib}
\bibliographystyle{abbrvnat}
\usepackage{usebib}
\bibinput{mybib} % specify name of bib file, w/o ".bib" extension
\newcommand\citetitle[1]{\usebibentry{#1}{title}}
\begin{document}
\emph{\citetitle{abc}}
\nocite{*}
\bibliography{mybib}
\end{document}