diff options
author | Karl Berry <karl@freefriends.org> | 2010-04-10 00:04:40 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-04-10 00:04:40 +0000 |
commit | 5fd15d101add3e08ff14e00c8a38998602e87959 (patch) | |
tree | 0ec09aea3b1a0bac1b45bd6635145cd5d2ab267c /Master/texmf-dist/doc/latex/bidi/test2-wrapfig.tex | |
parent | 1a415339f97d6e886e15efee8e7be4c3ba4e38ec (diff) |
bidi now lualatex, too (9apr10)
git-svn-id: svn://tug.org/texlive/trunk@17780 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/bidi/test2-wrapfig.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/bidi/test2-wrapfig.tex | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/bidi/test2-wrapfig.tex b/Master/texmf-dist/doc/latex/bidi/test2-wrapfig.tex new file mode 100644 index 00000000000..ab655dac412 --- /dev/null +++ b/Master/texmf-dist/doc/latex/bidi/test2-wrapfig.tex @@ -0,0 +1,28 @@ +\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} +\begin{wraptable}[4]{l}{4cm} + \centering +\fbox{This is ``wraptable''.} + \caption{The Caption}\label{T1} +\end{wraptable} + +\sample \sample Reference to Table~\ref{T1}. +\sample + +\section{RTL} +\setRTL + +\begin{wraptable}[4]{r}{4cm} + \centering +\fbox{This is ``wraptable''.} + \caption{The Caption}\label{T2} +\end{wraptable} + +\sample \sample Reference to Table~\ref{T2}. +\sample +\end{document} |