BibTeX, biblatex and biber ⇒ Help on Bibliography please
Help on Bibliography please
I am trying to learn Latex so I wrote a simple bibliography embedded in my tex file. I tried to cite a website, but the generated pdf doesn't textwrap the long URL I am trying to cite into the next line. Instead, it just cuts off at the end of line. I was wondering how I can get around with this. My code are as follows:
Below is my test.tex file:
\documentclass{article}
\usepackage{graphicx}
\usepackage[margin=1in]{geometry}
\title{whatever}
\author{moo~}
\date{Friday, June 26, 2009}
\begin{document}
\maketitle
\tableofcontents
\section{helloWorld}
http://forums.freescale.com/freescale/b ... ead.id=158 \cite{Freescale}
\bibliographystyle{plain}
\bibliography{test}
\end{document}
Below is my test.bib file:
@unpublished{Freescale,
author = "Freescale",
title = "Freescale Semiconductor Forum",
note = "Available at:%
\texttt{http://forums.freescale.com/freescale/b ... ead.id=158}",
}
HELP PLEASE XD~ Thank you!!!~
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
Help on Bibliography please
\usepackage{url}
And then put the URLs in \url{...} tags:
Code: Select all
\documentclass{article}
\usepackage{graphicx}
\usepackage[margin=1in]{geometry}
\usepackage{url}
\title{whatever}
\author{moo~}
\date{Friday, June 26, 2009}
\begin{document}
\maketitle
\tableofcontents
\section{helloWorld}
\url{http://forums.freescale.com/freescale/board/message?board.id=MCUCOMM\&thread.id=158} \cite{Freescale}
\bibliographystyle{plain}
\bibliography{test}
\end{document}
Code: Select all
@unpublished{Freescale,
author = "Freescale",
title = "Freescale Semiconductor Forum",
note = "Available at: %
\url{http://forums.freescale.com/freescale/board/message?board.id=MCUCOMM\&thread.id=158}",
}