Document Classesbeamer | Error I can't find file

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

beamer | Error I can't find file

Post by coachbennett1981 »

Ok, I completely don't know what I am missing out of the 2011 TeX Live, I have been using LaTeX since 2003, this morning, I think I am back to square one... Here is my file:

Code: Select all

\documentclass{beamer}
\mode<presentation>
\usetheme{Hannover}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{multicol}
\usepackage{color}
\usepackage{pstricks}
\usepackage{pst-plot}
\usepackage{pstricks-add}

\title{Section 7.3  Use Functions Involving e}
\author[Mr. Bennett]{School Without Walls\\ \texttt{nicholas.bennett@dc.gov}}

\begin{document}
\begin{frame}
	\titlepage
\end{frame}

\section{Warm Up}
	\begin{frame}{Warm Up}
		\begin{block}{Warm Up}
			\begin{enumerate}
				\item \emph{Explain} how to tell whether the function $y=b^x$ represents exponential growth or decay.
				\item Graph the function $y=-2\left(\frac{3}{5}\right)^x$. 
			\end{enumerate}
		\end{block}
	\end{frame}
\end{document}
Here is what I get.. I save all my .tex files in the same location, so I don't know what gives.
! I can't find file `"Section 7.3 Use Functions Involving e.tex"'.
<*> "Section 7.3 Use Functions Involving e.tex"

(Press Enter to retry, or Control-D to exit)
Please type another input file name:
Can somebody please help me

Nick
Last edited by coachbennett1981 on Thu Feb 23, 2012 7:08 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10334
Joined: Mon Mar 10, 2008 9:44 pm

beamer | Error I can't find file

Post by Stefan Kottwitz »

Hi Nick,

this file works for me. I only needed to add

Code: Select all

\usepackage{etex}
\usepackage{auto-pst-pdf}
because of "no room for a new dimen" and using pdfLaTeX. I did not get the error you mentioned.

Stefan
LaTeX.org admin
coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Re: beamer | Incomprehensible Error

Post by coachbennett1981 »

Thanks Stefan, that worked
Post Reply