Graphics, Figures & Tables ⇒ Can't create the right table
Can't create the right table
I have some problems creating tables, normally everything goes allright, but now I need to create a table with different row and colum size in one table. It's not easy to explain so I'll include an attachment
attachment: in the big 2 spaces on the right there will be an image or something that i will draw with latex. the rest will be text.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Can't create the right table
this is possible, but to be honest: It looks horrible and will be hard to read, i.e. to get information out of the table.
I think you might tear your heair out at one point using this setup.
Code: Select all
\documentclass{article}
\begin{document}
\begin{tabular}{|c|c|c|p{.25\textwidth}|p{.25\textwidth}|}
\hline
\multicolumn{3}{|c|}{\begin{tabular}{@{}c|c@{}}hello &
nismit \end{tabular}}
& image column & another column \\
\hline
some & stuff & here & image & other stuff \\
\hline
\end{tabular}
\end{document}
Re: Can't create the right table
