I currently with longtable alignment.
I have created a longtable 3 columns, with images at the 3rd column. After inserting the images which are about 1 to 2 inch height, the text which is in first 2 columns get bottom aligned.
(i.e. the content of the cell is bottom aligned)
I can solve this problem in tabular environment, by defining
m{value}. But I cannot do this with longtable please do help me..
Code: Select all
\begin{center}
\setlength{\extrarowheight}{0.5cm}
\begin{longtable}{|m{0.5in}@{}|m{3in}@{}|c|}
\hline {\textbf{No.}} & \textbf{Name} & \textbf{Symbol} \\ \hline
\endfirsthead
\hline \multicolumn{3}{|c|}{{\bfseries \tablename\ \thetable{} -- continued from previous page }} \\
\hline \multicolumn{1}{|c|}{\textbf{No.}} &
\multicolumn{1}{c|}{\textbf{Name}} &
\multicolumn{1}{c|}{\textbf{Symbol}} \\ \hline
\endhead
\hline \multicolumn{3}{|r|}{{Continued on next page}} \\ \hline
\endfoot
\hline \hline
\endlastfoot
1.7 & Fundamental Symbols & \\ \hline
1.7.1 & Direct Current & \includegraphics{Sym-1.eps}\\ \hline
1.7.2 & Alternating Current, General Symbol & \includegraphics{Sym-2.eps} \\ \hline
1.8.25 & Plug & \includegraphics{Sym-50.eps} \\ \hline
\end{longtable}
\end{center}
With regards,
Muthu