Graphics, Figures & TablesTable with a logo in latex

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
Tolaso
Posts: 37
Joined: Tue Dec 20, 2016 12:23 am

Table with a logo in latex

Post by Tolaso »

How can one go and draw something like this in LaTeX ? I have searched through the Internet but failed to find a suitable answer.
Στιγμιότυπο από 2017-11-09 21-38-42.png
Στιγμιότυπο από 2017-11-09 21-38-42.png (66.01 KiB) Viewed 2251 times
I'm interested in reproducing the table. Here is an MWE that I tried but to no success.

Code: Select all

\documentclass[11pt]{article}
\usepackage{graphicx, array}
\usepackage[margin=1.5cm , a4paper]{geometry}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}

\begin{document}
\begin{table}[ht]

\centering
\begin{tabular}{*{2}{m{0.48\textwidth}}}
\begin{center}
The graphic goes here.

Some more text.


\end{center} &
\begin{center}

Some more text.

\end{center}
\end{tabular}
\end{table}
\end{document}
That is far from perfect ... any suggestions?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Tolaso
Posts: 37
Joined: Tue Dec 20, 2016 12:23 am

Table with a logo in latex

Post by Tolaso »

Solved in TexSE.
Post Reply