Does someone know which latex package to use in order to make paper size like blank presentation.
Here is an example
And here is the result when showing the slides :
http://youtu.be/j9WZyLZCBzs?list=PLUl4u3cNGP60A3XMwZ5sep719_nh95qOe
Does someone know which latex package to use in order to make paper size like blank presentation.
Here is an example
And here is the result when showing the slides :
http://youtu.be/j9WZyLZCBzs?list=PLUl4u3cNGP60A3XMwZ5sep719_nh95qOe
One way would be to use four minipages:

\documentclass{article}
\usepackage[
paperwidth=8.5in,
paperheight=8.5in,
top=0.25in,
bottom=0.25in,
left=0.25in,
right=0.25in,
nomarginpar,
footskip=15pt,
]{geometry}
\usepackage{enumitem}
\usepackage{environ}
%\usepackage{showframe}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\cfoot{\thepage}
\newcommand*{\Heading}[1]{{\centering\textbf{#1}\par}}
\NewEnviron{MyBox}{%
\fbox{\begin{minipage}[t][0.48\textheight]{0.48\linewidth}
\vspace*{0.5cm}%
\BODY%
\end{minipage}}%
\hfill
}
\begin{document}\noindent
\begin{MyBox}
\Heading{Lecture 2}
\begin{itemize}
\item \textbf{Readings:} Sections 1.3--1.4.
\end{itemize}
\end{MyBox}%
\begin{MyBox}
\Heading{Review of Probability Models}
\begin{itemize}
\item \textbf{Readings:} Sections 1.3--1.4.
\end{itemize}
\end{MyBox}%
\vfill\noindent
\begin{MyBox}
\Heading{Conditional probaility}
\begin{itemize}
\item Probability of A\ldots
\end{itemize}
\end{MyBox}%
\begin{MyBox}
\Heading{Die roll example}
\begin{itemize}
\item Let $B$ be the event\ldots
\end{itemize}
\end{MyBox}%
\begin{MyBox}
\Heading{Lecture 2}
\begin{itemize}
\item \textbf{Readings:} Sections 1.3--1.4.
\end{itemize}
\end{MyBox}%
\begin{MyBox}
\Heading{Review of Probability Models}
\begin{itemize}
\item \textbf{Readings:} Sections 1.3--1.4.
\end{itemize}
\end{MyBox}%
\vfill\noindent
\begin{MyBox}
\Heading{Conditional probaility}
\begin{itemize}
\item Probability of A\ldots
\end{itemize}
\end{MyBox}%
\begin{MyBox}
\Heading{Die roll example}
\begin{itemize}
\item Let $B$ be the event\ldots
\end{itemize}
\end{MyBox}%
\end{document}
beamer for the slides. If you are interested in a non-beamer solution let me know and I can look into modifying this. Am traveling starting tomorrow so might be a while until I can get back to this though.
– Peter Grill
Dec 12 '14 at 03:53
As commented, use the beamer class with the option handout and pgfpges for a 4 x 1 layout:

\documentclass[handout]{beamer}
\setbeamercolor{background canvas}{bg=cyan!05}
\usepackage{pgfpages}
\pgfpagesuselayout{4 on 1}[a4paper,landscape,border shrink=5mm]
\pgfpageslogicalpageoptions{1}{border code=\pgfusepath{stroke}}
\pgfpageslogicalpageoptions{2}{border code=\pgfusepath{stroke}}
\pgfpageslogicalpageoptions{3}{border code=\pgfusepath{stroke}}
\pgfpageslogicalpageoptions{4}{scale=3,border code=\pgfusepath{stroke}}
\begin{document}
\huge
\frame{\frametitle{\Huge Lecture \insertpagenumber} Bla bla bla ... }
\frame{\frametitle{\Huge Lecture \insertpagenumber} More bla bla ... }
\frame{\frametitle{\Huge Lecture \insertpagenumber} Still bla bla ... }
\frame{\frametitle{\Huge Lecture \insertpagenumber} Even more bla ... }
\end{document}
With a % before \pgfpagesuselayout and removing the handout option you can obtain the presentation version. See also about the command \mode.
Slides can be done using beamer. Printing multiple logical pages on a single sheet of paper can be done using pdfpages.
beamerorpdfscreenor similar? – cfr Nov 30 '14 at 23:47