i would like to know where i can use wrap figure.
Is it possible to use wrapfigure, in the right side of environments like itemize and tabbing..
if so please give me an example.. For me, i am able to wrap figures in a full fledged text area.
But it does not allow me to do so in a tabbing area. i wanted a the image on the right side of my problem solution.. i am attaching the code herewith
Code: Select all
\documentclass[10.5pt,english]{book}
\usepackage{fancybox,array,amsmath}
\usepackage[ centering,
headheight=14pt,
headsep=10pt,
includehead,
papersize={7in,9.5in},
text={6in,8in},
dvips=false,
pdftex=false,
vtex=false]{geometry}
\usepackage[cam,a4,center,dvips]{crop}
\usepackage{graphicx,colortbl,wrapfig,babel}
\begin{document}
\thispagestyle{empty}
\section*{} \vspace{-47pt}
\begin{enumerate}
\item \begin{enumerate}
\item [a)]\textbf{What is a node?}
\item [b)]\textbf{What is your inference if the global stiffness matrix is observed to be singular matrix?}\\
a) A node is a point at which the field variable is unknown and to be determined.\\
b) If the body is not constrained, the stiffness matrix becomes singular.
\end{enumerate}\vspace{10pt}
\item \textbf{In terms of natural coordinates, write the expressions for shape functions of one dimensional linear element.}
\begin{wrapfigure}[6]{r}{100mm}
\centering
\includegraphics{SQA-1.eps}
\caption{}
\end{wrapfigure}
\textit{Shape functions:}
\begin{tabbing}
\hspace{10mm} \= ${{N}_{i}}=\displaystyle \frac{1-\xi }{2}$ \hspace{50mm} i want to place the image here\\
\> ${{N}_{j}}=\displaystyle \frac{1+\xi }{2}$
\end{tabbing}
Where $\xi$ is a natural coordinate. \vspace{10pt}
\end{enumerate}
\end{document}
Thanks in advance..
Regards,
Muthu