
我正在使用 winedt,我正在嘗試製作我的參考書目。我對我的參考文獻的寫作方式完全滿意,儘管我在文中的引用令人不安。括號中不寫作者姓名,年份則寫!輸出是這樣的:一些文本 Pascual-Hortal & Saura (2006)。我需要括號中的作者部分。
這是我使用的程式碼:
\documentclass[twoside,twocolumn]{article}
\usepackage{hyperref}
\newcommand{\myhyperref}[2]{\hyperref[#1]{#2 \ref*{#1}}}
\usepackage{natbib}
Some text \cite{pascual06}.
\bibliographystyle{apalike2}
\bibliography{testfour}
\end{document}
提前致謝。
答案1
括號內不寫作者姓名,年份則寫
若要產生括號式引用標註,您必須變更
\cite{pascual06}
到
\citep{pascual06}