BibTeX, biblatex and biberBibliography Style and URL Problem

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
anis_huq
Posts: 5
Joined: Fri Mar 16, 2012 1:26 am

Bibliography Style and URL Problem

Post by anis_huq »

Hi,
I have the following entry in my Bibliography.

Code: Select all

@misc{fuller2011,
 author               = {V. Fuller and D. Farinacci and D. Meyer and D. Lewis},
 month                = {June},
 organization         = {Internet Engineering Task Force},
 publisher            = {IETF},
 series               = {Request for Comments},
 title                = {LISP Alternative Topology (LISP+ALT)},
 url                  = {http://tools.ietf.org/html/draft-ietf-lisp-alt-07},
 year                 = {2011},
 }
When I use \bibliographystyle{plain}, I see the following in the subsequent .pdf:

Code: Select all

V. Fuller, D. Farinacci, D. Meyer, and D. Lewis. Lisp alternative topol-
ogy (lisp+alt), June 2011.
Why am I not seeing the URL?

When I use \bibliographystyle{acm}, (I am forced to use "acm") I see the following in the subsequent .pdf:

Code: Select all

Fuller, V., Farinacci, D., Meyer, D., and Lewis, D. Lisp
alternative topology (lisp+alt), June 2011.
You see that commas are put within one names and still no URL. What am I doing wrong? How can I fix this?
Last edited by Stefan Kottwitz on Fri Mar 16, 2012 10:16 am, edited 1 time in total.

Recommended reading 2024:

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

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

User avatar
justdeath
Posts: 69
Joined: Mon Sep 05, 2011 10:27 am

Bibliography Style and URL Problem

Post by justdeath »

Hi to the forum.

But google is your friend:
http://tex.stackexchange.com/questions/ ... ibtex-file

Since I am nice:

Code: Select all

@misc{fuller2011,
 author               = {V. Fuller and D. Farinacci and D. Meyer and D. Lewis},
 month                = {June},
 organization         = {Internet Engineering Task Force},
 publisher            = {IETF},
 series               = {Request for Comments},
 title                = {LISP Alternative Topology (LISP+ALT)},
 howpublished         = {\url{http://tools.ietf.org/html/draft-ietf-lisp-alt-07}},
 year                 = {2011},
 }
And add \usepackage{url} in the preamble.

Nikolay
manpreet9112
Posts: 8
Joined: Sat Jan 30, 2016 8:00 pm

Bibliography Style and URL Problem

Post by manpreet9112 »

I am facing a problem in bibliography. I used @Electronic created by jabref. And used [authoryear]{natbib} package and bibliography style is {unsrtnat}. But I am unable to cite fields from @Electronic. @book and @article works well. Here is .bib file.

Code: Select all

@Electronic{2015,
  Title                    = {India loses Rs 2 trillion annually to corrosion of infrastructure: Government” Sep 3, 2015, The Economic Times},
  Month                    = {September},
  Url                      = {http://articles.economictimes.indiatimes.com/2015-09-03/news/66178697_1_corrosion-installations-infrastructure},
  Year                     = {2015},
  Owner                    = {inderpreet},
  Timestamp                = {2016.02.17}
}
Whenever I write \cite{2015}, it shows 201(2015) in place of \cite{2015}. What I do?
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Bibliography Style and URL Problem

Post by Johannes_B »

Can you open up a new thread for that? We have space for millions of questions, dealing with one problem per thread keeps the place tidy and clean.

A minimal working example including a working and non-working entry woul be nice.
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