1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
\documentclass{beamer}
\usepackage{biblatex}
\usepackage{csquotes}
% \addbibresource{biblatex-examples.bib}
\addbibresource{../common/local1.bib}
\begin{document}
\textit{Text goes here~\cite{Local1}.}
% Conceal example
Bla bla bla, see Ref.~\cite{Local1,Local1}. For more info, see also \cite{Local1}.
\autocite{}
\bibentry{}
\footcite{}
\smartcite{}
\Textcite[e.g.][]{}
\cite{fooBar}
\Cite{fooBar}
\citealp*{}
\citealp{}
\citealt*{}
\citealt{}
\citeauthor*{}
\citeauthor{asd}
\citenum{}
\citep{Local1}
\citep[e.g.][]{Local1}
\citet*{}
\citetext{}
\citeyear{}
\citeyearpar{}
\volcite{1}[23]{worman}
\volcite[23]{worman}
\end{document}
|