Text Formatting ⇒ The table is to the right of picture.
The table is to the right of picture.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- 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: 10397
- 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}