Text Formatting ⇒ The table is to the right of picture.
The table is to the right of picture.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
The table is to the right of picture.
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[demo]{graphicx}
\begin{document}
\includegraphics{test}
\begin{tabular}{c}
Test
\end{tabular}
\end{document}
Stefan
The table is to the right of picture.
Thanks. Is it possible to do this with array?Stefan_K wrote:Just put it there without \newline or a paragraph break. Here's an example:The simple table will be put to the right of the picture.Code: Select all
\documentclass[a4paper,10pt]{article} \usepackage[demo]{graphicx} \begin{document} \includegraphics{test} \begin{tabular}{c} Test \end{tabular} \end{document}
Stefan
Re: The table is to the right of picture.
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
The table is to the right of picture.
Of course, for example:artemff wrote:Is it possible to do this with array?
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[demo]{graphicx}
\begin{document}
\includegraphics{test}
$\begin{array}{rcl}
E & = & mc^2
\end{array}$
\end{document}