[Tex/LaTex] Adding Web Pages to JabRef

jabreflyx

I want to add webpage article (from New York Times) in my research paper. How can I add it to my bibigraphie . I can add using JabRef (research Article, Book, Booklet, .. ). but how can I add -automatically- webpage.

Should I use this code, or is there any other faster way to do that ?

@WEB{NYTimes,
  key = {NY-Immigration},
  link = {http://www.nytimes.com/2014/02/07/us/politics/boehner-doubts-immigration-overhaul-will-pass-this-year.html?_r=0},
  owner = {user3378649},
  timestamp = {2014.02.06},
  title = {Boehner Doubts Immigration Bill Will Pass in 2014},
  year = {2014}
}

Best Answer

Select the "Online" type in JabRef:

enter image description here

Which yields the following:

@ONLINE{CFD2011,
  author = {Cfd-online},
  title = {Dimensionless wall distance (y plus)},
  year = {2011},
  url = {http://www.cfd-online.com/Wiki/Dimensionless_wall_distance_%28y_plus%29},
  note = {[Online; Stand 19. Dezember 2012]},
  owner = {LaRiFaRi},
  timestamp = {2012.12.19}
}

and than print it (if you want as a separated section):

\printbibliography[
    heading=bibliography,
    title=Bibliography,
    nottype=online
]
\printbibliography[
    heading=subbibliography,
    title=Online sources,
    type=online
]

I don't know, if this is relevant, but I run this with the package:

\usepackage[%
    ,backend=biber
]{biblatex} 
Related Question