I am using WinEdt with MikTeX 2.9 in a Windows 7 environment.
I am having issues being able to get text in parentheses working correctly with a citation, specifically that when the document prints to PDF I get extraneous parentheses that should be removed by the natbib command I am using.
I wish to have the following text:
(cited in Axelrod 1997)
But I keep getting:
(cited in Axelrod (1997))
I have tried using two methods to remove the extraneous pair of brackets. First I tried:
\citep[cited in]{Axelrod2}
and then I tried:
\citetext{cited in \citealp{Axelrod2}}
but both give me the same result: two sets of parentheses.
Could someone please advise me where I am going wrong? I have the natbib reference document, and I was copying from the examples in there.
I am using a document template created for my university and I have the following packages and options being loaded:
\usepackage[english]{babel}
\usepackage{amsmath,amsthm}
\usepackage{amsfonts}
\usepackage[a4paper,layout=a4paper,
bindingoffset=4cm,left=0cm,right=2cm,
head=2.5cm, bmargin=2cm]{geometry}
\usepackage{microtype}
\usepackage{verbatim}
\usepackage{graphicx}
\usepackage{url}
\usepackage[round]{natbib}
\usepackage{listings}
\usepackage{booktabs}
\usepackage{multirow}
\RequirePackage[l2tabu, orthodox]{nag}
\usepackage{cleveref}

clevereflast and used your\citealtsuggestion. This removed the extra brackets, and inserted a comma between the author and the year. I seem to be experiencing some weird effects with thenatbibpackage. I can live with the comma. If you put your suggestion as an answer, I can vote it as such. :) – Michelle Mar 14 '13 at 21:29\citep[cited in][]{Axelrod2}seems like a good way to go. – moewe Apr 26 '20 at 06:05\citetext{cited in \citealp{Axelrod2}}should only produce one pair of parentheses. I could not reproduce the output you describe in the question with the code shown so far. It should work. Something else must be going on. – moewe Apr 26 '20 at 06:07