2

I have seen some slides that look close to notes. For example,this one. I wonder what templates they are created? Not seem like by beamer, as there are more contents in each slide and not fancy at all.

azetina
  • 28,884
Tim
  • 5,763

1 Answers1

2

Here is example code using slides

\documentclass[landscape]{slides}
\usepackage{amssymb,amsmath,amsthm}
\pagestyle{empty}
%
\begin{document}
$y'''+4y''+3y'=x^2\cos x-3x$
First, we solve for $y_c$. The auxiliary equation is 
\begin{eqnarray*}
m^3+4m^2+3m&=&m(m^2+4m+3)\\
&=&m(m+3)(m+1)\\
m&=&0, -3, -1
\end{eqnarray*}
Hence $y_c=c_1+c_2e^{-3}x+c_3e^{-1}$.\par
For the left side, the annihilator will be 
$$(D^3+4D^2+3D)y$$ $$=D(D^2+4D+3)y$$
$$=D(D+3)(D+1)y$$
\end{document}

Note: You will often have to manually break the equations to keep them on the slide.

David Carlisle
  • 757,742