Text Formatting ⇒ Website address
Website address
Also, in word it appears automatically with a slightly different font and color, which looks better. One has to manually do it in latex?
Thanks.
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
Website address
Code: Select all
\documentclass{article}
\usepackage{url}
\begin{document}
\url{http://www.latex-community.org}
\end{document}
Code: Select all
\documentclass{article}
\usepackage{hyperref}
\hypersetup{colorlinks=true, urlcolor=blue}
\begin{document}
\url{http://www.latex-community.org}
\end{document}