Code: Select all
@MISC{tek10,
AUTHOR="Lovdata",
TITLE="Teknisk forskrift 2010",
YEAR="2010",
URL="http://www.lovdata.no/cgi-wift/ldles?doc=/sf/sf/sf-20100326-0489.html"
}
Code: Select all
@MISC{tek10,
AUTHOR="Lovdata",
TITLE="Teknisk forskrift 2010",
YEAR="2010",
URL="http://www.lovdata.no/cgi-wift/ldles?doc=/sf/sf/sf-20100326-0489.html"
}
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
plain
bibliography style ignores the url
field. You need to use a style which supports it. For example, you could load Code: Select all
\usepackage{natbib}
plainnat
, which is the natbib
version of plain
:Code: Select all
\bibliographystyle{plainnat}
natbib
provides also author-year styles, which are popular today.It's displayed when I do as above. Perhaps you did something different, you could check again. Have a look at my output:tbstensrud wrote:I did as you said, however there are no url displaying yet.
Then perhaps usetbstensrud wrote:Also the order of references appears to be random. Ideally I want the references in the text to be labled 1,2,3 and so on regardless of their placement in the bib file.
unsrt
or unsrtnat
instead.Code: Select all
\bibliographystyle{unsrtnat}
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