BibTeX, biblatex and biberReference to Citation

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
KOR
Posts: 3
Joined: Mon Jun 30, 2014 6:40 pm

Reference to Citation

Post by KOR »

Hi,
I like to reference a citation.
normally I do c=300000km/s\cite{google} :D
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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Reference to Citation

Post by Johannes_B »

Can you please expand that to a compilable minimal example? Right now i don't know what you want/need.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
KOR
Posts: 3
Joined: Mon Jun 30, 2014 6:40 pm

Reference to Citation

Post by KOR »

Sorry for that

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}
output should look like this:
The speed of light is 300000kms$^{-1}.(superscript citation number one)
For further details see reference (citation number one in normal font size).
Last edited by cgnieder on Mon Jun 30, 2014 9:35 pm, edited 1 time in total.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Reference to Citation

Post by Johannes_B »

First of all, you should have a look at package siunitx. It might be handy for you.

Furthermore, natbib is kind of old fashioned. If you have the choice, use biblatex in conjunctin with biber instead.

I still don't know exactly, what your ouput should be. But i guess you are looking for something like \citet{<bibkey>} or \citep{<bibkey>}.

Please read the information in the link about Minimal Working Examples above again.


Best regards
Johannes
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
KOR
Posts: 3
Joined: Mon Jun 30, 2014 6:40 pm

Re: Reference to Citation

Post by KOR »

the \citet command was what I am looking for. Thanks for that. But since I have to use a certain bibliography style (\bibliographystyle{angewchem}) which uses numbers instead of author year. I get author is undefined in citation Bibliographygoogle.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Reference to Citation

Post by Johannes_B »

There is a biblatex style for that: biblatex-chem.


If you want any further help, please provide a minimal working example. My crystal ball is at the shop. I am not a psychic.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply