Graphics, Figures & TablesCan't create the right table

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
73nismit
Posts: 4
Joined: Tue Sep 01, 2015 7:18 pm

Can't create the right table

Post by 73nismit »

Hi everyone, used the forum a lot, but here is my first post.
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:
latex_forum_example.pdf
example of the table I'm trying to create
(1.42 KiB) Downloaded 209 times
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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Can't create the right table

Post by Johannes_B »

Hi and welcome,

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

Code, edit and compile here:
\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}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
73nismit
Posts: 4
Joined: Tue Sep 01, 2015 7:18 pm

Re: Can't create the right table

Post by 73nismit »

Thanx a lot! I also found \multirow in the multirow package. I deleted the lines on the the big rows so it looks good, i doesn't look like one big table, so it's not hard to see. Tables get messy really fast ;)
Post Reply