Text Formatting ⇒ Picture is located near text
Picture is located near 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
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Picture is located near text
Or have a look at the floatflt package.
Stefan
Picture is located near text
What this work don't do that i want, how correct this, if it is possible?Stefan_K wrote:You could use a minipage environment for the text and place the minipage next to the included graphic inside the figure environment.
Or have a look at the floatflt package.
Stefan
Code: Select all
\begin{figure}
\includegraphics{images/circuit6.eps}
\caption{bla bla bla}
\begin{minipage}{0.49\textwidth}
При R1 = $\infty$
$\upvarphi_b = 35.9438{\text{В}}
\Rightarrow$
\[
\begin{array}{l}
E_{\text{экв}} = 35.9438{\text{В}};\\
I1*R_{\text{в}} + I1*R_{\text{н}} = E_{\text{экв}};\\
\Rightarrow
R_{\text{в}} = \frac{E_{\text{экв}} - I1*R_{\text{н}}}{I1};\\
R_{\text{в}} =
\end{array}
\]
\end{minipage}
\end{figure} Picture is located near text
Re: Picture is located near text
Maybe you give me simple example? Because I very need this information and can't find it.
Picture is located near text
But again, I'm not sure whether or not this is the kind of thing you're looking for.
Picture is located near text
Text in the beggining and then picture is shown.
Code: Select all
\documentclass [a4paper, 12pt, oneside]{scrartcl}
\usepackage [CP1251] {inputenc}
\usepackage [english] {babel}
\usepackage{indentfirst}
\usepackage{misccorr}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{ccaption}
\usepackage{wrapfig}
\begin{document}
Information Information Information Information Information Information
Information Information Information Information Information Information
Information Information Information Information Information Information
\begin{wrapfigure}{r}{0.49\textwidth}
\begin{center}
\includegraphics{circuit.eps}
\end{center}
\caption{circuit.eps}
\end{wrapfigure}
Information Information Information Information Information Information
\end{document}