-
Notifications
You must be signed in to change notification settings - Fork 407
Concealment of \citet and \citep from natbib #2658
Copy link
Copy link
Closed
Labels
Description
I am wondering whether the concealment of \citet and \citep from natbib can be improved.
Here a screenshot from the documentation of natbib
The corresponding code is
\documentclass{article}
\usepackage{natbib}
\begin{document}
\citet{jon90}
\citet[chap.~2]{jon90}
\citep{jon90}
\citep[chap.~2]{jon90}
\citep[see][]{jon90}
\citep[see][chap.~2]{jon90}
\citet*{jon90}
\citep*{jon90}
\end{document}Currently concealed as following
The most obvious change could be:
- show
\citep*?{jon90}with parentheses instead of square brackets (third and last line).
Prepend optional parameters and replace inner brackets with spaces
- Conceal
\citet[chap.~2]{jon90}as[chap. 2 jon90] - Conceal
\citep[see][]{jon90}as(see jon90) -
\citep[see][chap.~2]{jon90}. Here the chapter reference becomes completely invisible. I would at least show it. Showing it with less square brackets, e.g. as(see chap. 2 jon90). - for
\citetone could drop the surrounding square brackets. Here I am not so sure.
I am not totally sold on all my suggestions and what is possible to mimic natbib functionality
Reactions are currently unavailable

