I'm new here, trying to learn about LaTeX and being impressed on how powerful it is.
So let's cut to the chase.
I'm following a book with example and so far so good. On one example I need to use the package "blindtext" to fill the page with random text for experimenting on margins and stuff.
The problem is i get the message "! LaTeX Error: File `blindtext.sty' not found." when trypeset this simple code on TeXworks
Code: Select all
\documentclass[a4paper, 12pt]{book}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\chapter{Exploring the page layout}
In this chapter we will study the layout of pages.
\section{Some filler text}
\blindtext
\section{A lot more filler text}
More dummy text will follow.
\subsection{Plenty of filler text.}
\blindtext[10]
\end{document}
So what I did wrong?