blob: a0fd4b7f8e5f878b7d0e40311bd015af98f87c01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
\documentclass{article}
\usepackage{wrapfig}
\usepackage{bidi}
\newcommand\sample{Some text for our page
that might get reused over and over again. }
\begin{document}
\section{LTR}
The starting place for the wrapfigure
environment was manually determined in
the current ex-
\begin{wrapfigure}[7]{r}[0.2\width]{0pt}
\centering
\fbox{This is ``wrapfigure''.}
\caption{An example of the
\texttt{wrapfigure} environment}
\end{wrapfigure}
sample by first setting the text without
the figure to find the linebreaks.
\sample \sample \sample\sample \sample \sample\sample
\section{RTL}
\setRTL
The starting place for the wrapfigure
environment was manually determined in
the current ex-
\begin{wrapfigure}[7]{l}[0.2\width]{0pt}
\centering
\fbox{This is ``wrapfigure''.}
\caption{An example of the
\texttt{wrapfigure} environment}
\end{wrapfigure}
sample by first setting the text without
the figure to find the linebreaks.
\sample \sample \sample\sample \sample \sample\sample
\end{document}
|