as you know LaTeX is by far the main environment for writing scientific documents. However the package provided in entropy is not complete. Here is what I get when I try to compile the following example file. Save the latex beamer file as example.tex and try to run:
$pdflatex example.tex
You will see the following error. It gets much worse if you include pictures.
! LaTeX Error: File `fullpage.sty' not found.
Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: sty)
Enter file name:
The example.tex follows. The forum does not allow me to attach it as it ends to .tex. I would like to mention that the Ubuntu/Debian package is full and works fine. I am talking about the one you install by typing:
$ sudo apt-get install texlive-full
- Code: Select all
\documentclass[handout]{beamer}
%\documentclass{beamer}
{
\usepackage{beamerbasearticle}
\usepackage{fullpage}
\usepackage{hyperref}
\usepackage{amssymb}
}
\usepackage{pgf,pgfarrows,pgfnodes,pgfautomata,pgfheaps,pgfshade}
\usepackage{amsmath,amscd,amssymb}
\usepackage{colortbl}
\usepackage[english]{babel}
\mode<presentation>
{
\usetheme{CambridgeUS}
\setbeamertemplate{navigation symbols}{}
}
\title[Linux]{\bf{Parallel Threads and Latency Minimization}}
\author[May 2-16 2009]
{\textbf{Archwndas}
\\
2th Linux Kernel Development Meeting \\}
\institute[May 2-16 2009]
\date[2009]{2-16 May 2009}
\AtBeginSubsection[]
{
\begin{frame}<beamer>
\frametitle{Outline}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
}
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
\section{Past Research}
\subsection{Linux Kernel Development}
\begin{frame}{Thank you for your attention}
\begin{center}
Will you fix the bug?
\end{center}
\end{frame}
\end{document}

