diff options
-rw-r--r-- | Latex/Latex4/Latex_Typesetting_Text.tex | 16 | ||||
-rw-r--r-- | Latex/Latex5/Latex_FTF.tex | 20 |
2 files changed, 26 insertions, 10 deletions
diff --git a/Latex/Latex4/Latex_Typesetting_Text.tex b/Latex/Latex4/Latex_Typesetting_Text.tex index ef9ad49..5576521 100644 --- a/Latex/Latex4/Latex_Typesetting_Text.tex +++ b/Latex/Latex4/Latex_Typesetting_Text.tex @@ -178,18 +178,24 @@ \begin{frame}[fragile] \frametitle{Evaluation} \begin{enumerate} -\item -\item -\item +\item Which environment is used including a block of code? +\item What are the basic lists that make environments? +\item Joe has numerous used labels inside his Latex document. But all the references to label names come up as question marks. What might be the problem? \end{enumerate} \end{frame} \begin{frame} \frametitle{Solutions} \begin{enumerate} -\item +\item lstlistings \vspace{15pt} -\item +\item +\begin{enumerate} +\item itemize(for unorderd lists) +\item enumerate(for ordered lists) +\item description(lists where you want to specify your own label) +\end{enumerate} +\item While using labels, the latex document should be compiled twice for the references to show up. \end{enumerate} \end{frame} \begin{frame} diff --git a/Latex/Latex5/Latex_FTF.tex b/Latex/Latex5/Latex_FTF.tex index 0ef52ca..c7c50ae 100644 --- a/Latex/Latex5/Latex_FTF.tex +++ b/Latex/Latex5/Latex_FTF.tex @@ -214,20 +214,30 @@ \begin{frame}[fragile] \frametitle{Evaluation} \begin{enumerate} -\item -\item -\item +\item Why the figures and tables are called as floats? +\item What are the input parameters the figure environment take to make it float? +\item What is the mandatory arguement in tabular environment specification? \end{enumerate} \end{frame} \begin{frame} \frametitle{Solutions} \begin{enumerate} -\item \vspace{15pt} -\item +\item Figures and tables are called as floats because they float to the nearest location. +\item The following can be used as parameters to a figure environment to make it float. +\begin{itemize} +\item t - Top of the page. +\item b - Bottom of the page. +\item p - Separate pages for float +\item h - Here(the place where command appears) +\item !- To override Latex internal parameters for good position +\end{itemize} + +\item Alignment of each column \end{enumerate} \end{frame} + \begin{frame} \begin{block}{} |