summaryrefslogtreecommitdiff
path: root/embellishing_a_plot/slides.tex
diff options
context:
space:
mode:
authorJovina2011-05-04 12:05:01 +0530
committerJovina2011-05-04 12:05:01 +0530
commit8f769af90d747f7e12e4ef64ec2ee9dabf19b727 (patch)
tree23b5de3ab7c201220de16da2fcbaf6a54e128a0f /embellishing_a_plot/slides.tex
parent19c8f29fa0be1c8697078fbeae780c5aa52b0676 (diff)
downloadst-scripts-8f769af90d747f7e12e4ef64ec2ee9dabf19b727.tar.gz
st-scripts-8f769af90d747f7e12e4ef64ec2ee9dabf19b727.tar.bz2
st-scripts-8f769af90d747f7e12e4ef64ec2ee9dabf19b727.zip
Modified files in module1.
Diffstat (limited to 'embellishing_a_plot/slides.tex')
-rw-r--r--embellishing_a_plot/slides.tex141
1 files changed, 48 insertions, 93 deletions
diff --git a/embellishing_a_plot/slides.tex b/embellishing_a_plot/slides.tex
index e71645b..8c82d1c 100644
--- a/embellishing_a_plot/slides.tex
+++ b/embellishing_a_plot/slides.tex
@@ -1,4 +1,4 @@
-% Created 2010-12-18 Sat 12:25
+% Created 2011-05-03 Tue 14:38
\documentclass[presentation]{beamer}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
@@ -8,7 +8,6 @@
\usepackage{float}
\usepackage{wrapfig}
\usepackage{soul}
-\usepackage{t1enc}
\usepackage{textcomp}
\usepackage{marvosym}
\usepackage{wasysym}
@@ -24,14 +23,14 @@ commentstyle=\color{red}\itshape, stringstyle=\color{darkgreen},
showstringspaces=false, keywordstyle=\color{blue}\bfseries}
\providecommand{\alert}[1]{\textbf{#1}}
-\title{Embellishing a Plot}
+\title{}
\author{FOSSEE}
\date{}
\usetheme{Warsaw}\usecolortheme{default}\useoutertheme{infolines}\setbeamercovered{transparent}
\begin{document}
-\maketitle
+
@@ -42,31 +41,37 @@ showstringspaces=false, keywordstyle=\color{blue}\bfseries}
\begin{frame}
-\frametitle{Outline}
-\label{sec-1}
-\begin{itemize}
-\item Modifying the color, line style \& linewidth of a plot
-\item Adding a title to the plot (with embedded \LaTeX{})
-\item Labelling the axes
-\item Annotating the plot
-\item Setting the limits of axes.
-\end{itemize}
+\begin{center}
+\textcolor{blue}{Embellishing a Plot}
+\end{center}
+\begin{center}
+\includegraphics[scale=0.25]{../images/iitb-logo.png}\\
+Developed by FOSSEE Team, IIT-Bombay. \\
+Funded by National Mission on Education through ICT
+
+MHRD, Govt. of India
+\end{center}
\end{frame}
\begin{frame}
-\frametitle{Question 1}
+\frametitle{Objectives}
\label{sec-2}
- Plot sin(x) in blue colour and with linewidth as 3
+ At the end of this tutorial, you will be able to,
+
+\begin{itemize}
+\item Modify the attributes of the plot -- color, line style,linewidth.
+\item Add a title to the plot with embedded \LaTeX{}.
+\item Label x and y axes.
+\item Add annotations to the plot.
+\item Set and Get the limits of axes.
+\end{itemize}
\end{frame}
-\begin{frame}[fragile]
-\frametitle{Solution 1}
+\begin{frame}
+\frametitle{Question 1}
\label{sec-3}
-\begin{verbatim}
-In []: clf()
-In []: plot(x, sin(x), 'b', linewidth=3)
-\end{verbatim}
+ Plot sin(x) in blue colour alongwith linewidth as 3
\end{frame}
\begin{frame}
\frametitle{Question 2}
@@ -74,119 +79,69 @@ In []: plot(x, sin(x), 'b', linewidth=3)
Plot the sine curve with green filled circles.
\end{frame}
-\begin{frame}[fragile]
-\frametitle{Solution 2}
-\label{sec-5}
-
-\begin{verbatim}
-In []: clf()
-In []: plot(x, cos(x), 'go')
-\end{verbatim}
-\end{frame}
\begin{frame}
\frametitle{Question 3}
-\label{sec-6}
+\label{sec-5}
Plot the curve of x vs tan(x) in red dashed line and linewidth 3
\end{frame}
-\begin{frame}[fragile]
-\frametitle{Solution 3}
-\label{sec-7}
-
-\begin{verbatim}
-In []: clf()
-In []: plot(x, cos(x), 'r--')
-\end{verbatim}
-\end{frame}
\begin{frame}
\frametitle{Question 4}
-\label{sec-8}
+\label{sec-6}
Change the title of the figure such that the whole title is
formatted in LaTex style
\end{frame}
-\begin{frame}[fragile]
-\frametitle{Solution 4}
-\label{sec-9}
-
-\begin{verbatim}
-In []: title("$Parabolic function -x^2+4x-5$")
-\end{verbatim}
-\end{frame}
\begin{frame}
\frametitle{Question 5}
-\label{sec-10}
+\label{sec-7}
Set the x and y labels as ``x'' and ``f(x)'' in LaTex style.
\end{frame}
-\begin{frame}[fragile]
-\frametitle{Solution 5}
-\label{sec-11}
-
-\begin{verbatim}
-In []: xlabel("$x$")
-In []: yalbel("$f(x)$")
-\end{verbatim}
-\end{frame}
\begin{frame}
\frametitle{Question 6}
-\label{sec-12}
+\label{sec-8}
Make an annotation called ``root'' at the point (-4, 0). What happens
to the first annotation?
\end{frame}
-\begin{frame}[fragile]
-\frametitle{Solution 6}
-\label{sec-13}
-
-\begin{verbatim}
-In []: annotate("root", xy=(-4,0))
-\end{verbatim}
-\end{frame}
\begin{frame}
\frametitle{Question 7}
-\label{sec-14}
+\label{sec-9}
Set the limits of axes such that the area of interest is the
rectangle (-1, -15) and (3, 0)
\end{frame}
-\begin{frame}[fragile]
-\frametitle{Solution 7}
-\label{sec-15}
-
-\begin{verbatim}
-In []: xlim(-1, 3)
-In []: ylim(-15, 0)
-\end{verbatim}
-\end{frame}
\begin{frame}
\frametitle{Summary}
-\label{sec-16}
+\label{sec-10}
+
+ In this tutorial,we have learnt to-
\begin{itemize}
-\item Modifying the attributes of plot by passing additional arguments
-\item How to add title
-\item How to incorporate \LaTeX{} style formatting
-\item How to label x and y axes
-\item How to add annotations
-\item How to set the limits of axes
+\item Modify the attributes of plot by passing additional arguments
+\item Add title
+\item Incorporate \LaTeX{} style formatting
+\item Label x and y axes
+\item Add annotations
+\item Set the limits of axes
\end{itemize}
\end{frame}
\begin{frame}
-\frametitle{Thank you!}
-\label{sec-17}
+\frametitle{Acknowledgement}
+\label{sec-11}
\begin{block}{}
\begin{center}
- This spoken tutorial has been produced by the
- \textcolor{blue}{FOSSEE} team, which is funded by the
+ \textcolor{blue}{\Large THANK YOU!}
\end{center}
+ \end{block}
+\begin{block}{}
\begin{center}
- \textcolor{blue}{National Mission on Education through \\
- Information \& Communication Technology \\
- MHRD, Govt. of India}.
+ For more Information, visit our website\\
+ \url{http://fossee.in/}
\end{center}
\end{block}
\end{frame}
-\end{document}
+\end{document} \ No newline at end of file