I like to reference a citation.
normally I do c=300000km/s\cite{google}

which returns c=300000km/s
^{\[X\]}
but now I want to write somethich like: For further information see reference X
How can I do that
thank you for your help
^{\[X\]}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\documentclass[12pt,a4paper,draft]{scrartcl}
\usepackage[super,square,comma,sort&compress]{natbib}
\begin{document}
\section{Speed of light}
The speed of light is 300000kms$^{-1}.$\cite{Bibliographygoogle}
For further details see reference \ref{Bibliographygoogle}.
\bibliography{../Bibtex/work.bib}{}
\end{document}
\citet{<bibkey>}
or \citep{<bibkey>}
. Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis