Bagaimana saya bisa menggunakan BibTeX untuk mengutip sebuah halaman web?

I'm ingin mengutip sejumlah halaman web yang menggunakan bibtex dan aku bertanya-tanya jika ada template tertentu dari bentuk @<nama template di sini> untuk melakukan hal itu. Jika anda bisa menggunakan website berikut sebagai contoh yang akan menjadi besar

http://web.archive.org/web/20080207010024/http://www.808multimedia.com/winnt/kernel.htm

Mengomentari pertanyaan (3)
Larutan

Cara yang mudah untuk melakukan hal itu di BibTeX adalah dengan @misc entri:

@misc{WinNT,
  title = {{MS Windows NT} Kernel Description},
  howpublished = {\url{http://web.archive.org/web/20080207010024/http://www.808multimedia.com/winnt/kernel.htm}},
  note = {Accessed: 2010-09-30}
}

Anda harus juga mungkin termasuk penulis jika anda tahu itu. Dan ingat untuk memuat paket seperti hyperref atau url.


Jika anda adalah menggunakan BibLaTeX ada @online masuk jenis:

@online{WinNT,
  author = {MultiMedia LLC},
  title = {{MS Windows NT} Kernel Description},
  year = 1999,
  url = {http://web.archive.org/web/20080207010024/http://www.808multimedia.com/winnt/kernel.htm},
  urldate = {2010-09-30}
}
Komentar (11)

Saya selalu menggunakan default yang disarankan oleh Wikipedia (lihat ", BibTeX entri" di bagian bawah), yang tersedia jika anda klik pada "kutip halaman ini".

Komentar (7)

The Griffith referensi manager menyarankan untuk menggunakan "elektronik" type. Jadi saya melakukannya seperti ini:

@electronic{Rub1,
 author = {Rubino, Daniel},
 editor = {{Windows Phone Central}},
 title = {IE9 for Windows Phone 7: Adobe Flash, demos and development},
 url = {http://www.wpcentral.com/ie9-windows-phone-7-adobe-flash-demos-and-development-videos},
 urldate = {14.01.2013},
 originalyear = {18.02.2011}
}

Di BibTeX ekspor Citavi ada als jenis "www". Tergantung pada editor yang anda miliki untuk menentukan gaya "elektronik" dan "www", begitu "lain-lain" tampaknya menjadi mungkin yang paling aman.

Tapi kemudian anda harus menggunakan \bibliographystyle{alphadin} dan melakukannya seperti ini:

@misc{Rub1,
 author = {Rubino, Daniel},
 editor = {{Windows Phone Central}},
 title = {IE9 for Windows Phone 7: Adobe Flash, demos and development},
 url = {http://www.wpcentral.com/ie9-windows-phone-7-adobe-flash-demos-and-development-videos},
 lastchecked = {14.01.2013},
 originalyear = {18.02.2011}
}
Komentar (3)

Saya menemukan sebuah tutorial yang sangat bagus di http://www.polymtl.ca/biblio/utiliser/guide_bibtex.pdf (perancis; link sudah mati, yang tersedia di Wayback Machine)

Dengan ini, aku telah dimodifikasi ieeetr.bst file untuk mengintegrasikan diabaikan tag url dan urldate untuk semua jenis file (gaya itu diberlakukan untuk laporan pada akhir penelitian).

File yang diubah namanya (mystyle) dan ditempatkan dalam satu folder lokal sebagai wasit.bib file. Disebut dengan

\bibliographystyle{mystyle}
\bibliography{ref}

(1) menambahkan entri baru :

ENTRY
  { address
...
    url
    urldate
  }
  {}
  { label }

(2) tambahkan fungsi ini

FUNCTION {format.url}
{ url empty$
    { "" }
    {   
        ". \emph{Disponible}~\url{" * url * "}" *
        urldate empty$
         { "there is url but no urldate in " cite$ * warning$ }
         { 
            "~(\emph{consult\'e le} " * urldate * ")" *
         }
         if$
    }
  if$
}

(3) untuk semua jenis, memanggil fungsi dengan format.url "," output ! Contoh untuk @incollection:

FUNCTION {incollection}
{ output.bibitem
  format.authors "author" output.check
  format.title "title" output.check
  blank.sep
  crossref missing$
    { format.in.ed.booktitle "booktitle" output.check
      format.bvolume output
      format.number.series output
      format.chapter.pages output
      format.addr.pub "publisher" output.check
      format.edition output
      format.date "year" output.check
    }
    { format.incoll.inproc.crossref output.nonnull
      format.chapter.pages output
    }      
  if$
  format.url "" output 
  new.block
  note output
  fin.entry
}

Saya berharap ini dapat membantu anda

Komentar (3)

Hm, tampaknya bahwa isn't mungkin untuk mengutip laman web secara langsung, tapi ada tampaknya menjadi solusi menggunakan tujuan umum @misc di bidang.

http://www.tex.ac.uk/cgi-bin/texfaq2html?label=citeURL

Komentar (0)

Jika anda membuat anda sendiri wib file dan anda ingin menggabungkan web referensi, saya menggunakan fungsi ini:

FUNCTION {internet}
{ output.bibitem
  format.titleclass output
  format.authors " " * "author" output.check
  title empty$
    {""}
    { title "t" change.case$ * ".\,\ " *}
  if$
  format.address output
  publisher empty$
    {
      institution empty$
        { }
        { institution "; " * output}
      if$
    }
    { publisher "; " * output}
  if$
  year empty$
    { " [date unknown; " }
    { year
      month empty$
        { " [\ignorespaces " * }
        { "~" * month * " [\ignorespaces " *}
      if$
    }
  if$
  revised empty$
    { "" * }
    { "revised~" * revised * "; " *}
    if$
  accessed empty$
    { "" * }
    { "accessed~"  * accessed * "]. " *}
    if$
  website *
  doi empty$
    {}
    { add.period$ " " * doi * }
  if$
  output
  add.period$
  format.referenceclass output
  fin.entry.noperiod
}

Ini dengan bib file file seperti

@INTERNET{www11b,
    AUTHOR    = "Schultheis, J. D.",
    TITLE     = "Fun with Reference Citations",
    ADDRESS   = "Baltimore (MD)",
    PUBLISHER = "Random House",
    YEAR      = "2013", 
    MONTH     = sep # " 10",
    ACCESSED  = "2014 " # sep # " 26",
    WEBSITE   =
             "http://en.wikipedia.org/wiki/Trajectory\_of\_a\_projectile",
    DOI       = "\url{doi:10.10.1038/nphys1170}"     }

@INTERNET{www11a,
    TITLE    = "Flight Equations with Drag",
    WEBSITE  = "http://www.grc.nasa.gov/WWW/k-12/airplane/flteqs.html",
    ACCESSED = "2011 " # oct     }

@INTERNET{www11c,
    AUTHOR   = "Grissom, Gus",
    INSTITUTION = "Glenn Research Center, National Aeronautics
                   and Space Administration",
    TITLE    = "Flight Equations with Drag",
    ADDRESS  = "Cleveland (OH)",
    YEAR     = "1999",
    MONTH    = dec # "12",
    REVISED  = "2014 " # jun # " 12",
    ACCESSED = "2014 " # oct # " 7",
    WEBSITE  = "http://www.grc.nasa.gov/WWW/k-12/airplane/flteqs.html"}

@INTERNET{manktelow2010history,
    TITLE     = "History of taxonomy",
    AUTHOR    = "Manktelow, Mariette",
    WEBSITE   = "\url{http://www.atbi.eu/summerschool/files/%
                summerschool/Manktelow\_Syllabus.pdf}",
    ACCESSED  = "2014 Aug~26",
    ADDRESS   = "Uppsala (Sweden)",
    PUBLISHER = "Uppsala University Dept. of Systematic Biology",
    YEAR      = "2010"     }

@INTERNET{smith2014metcalf,
    TITLE    = "Assault on california power station raises alarm on
                potential for terrorism",
    AUTHOR   = "Rebecca Smith",
    WEBSITE  = "\url{http://online.wsj.com/news/articles/%
                SB10001424052702304851104579359141941621778}",
    ACCESSED = "2014 Aug 26",
    PUBLISHER= "The Wall Street Journal",
    MONTH    = feb,
    YEAR     = {2014}     }

Saya mendapatkan hasil seperti ini:

Komentar (0)