All Questions
5 questions
0
votes
1
answer
77
views
What is the problem with \node[red]{X}; in RTL context (xelatex)
This example on tikz node if I use \node[red]{x}; in math mode (RTL context) the node appears faraway unlike \node[color=red]{x};, I thought the two were equivalent
In pgfmanual (Page 173) we can find ...
0
votes
0
answers
90
views
LuaLaTeX, bidi=basic and Tikz awkward behaviour
@UlrikeFischer
The following MWE demonstrates awkward behaviour of LuaLaTeX bidi=basic with Tikz:
MWE 1 - Normal behaviour
\documentclass[tikz,margin=5cm]{standalone}
\usepackage{tikz}
%:Language
\...
1
vote
1
answer
110
views
How to display a Tikz Flowcharts properly in a RTL Beamer document
\documentclass[hyperref=unicode]{beamer}
\usepackage{hologo}
\mode<presentation>{\usetheme{Warsaw}}
\usepackage[nil,bidi=basic-r]{babel}
\babelprovide[import=ar-DZ, main]{arabic}
\babelprovide[...
10
votes
1
answer
2k
views
tikz: Right to left text within text along path
I have this example to write text along path using decorations.text library, and I want to insert arabic text starting from right to left
\documentclass[border=5mm]{standalone}
\usepackage{tikz}
\...
9
votes
5
answers
4k
views
Is there a way to print two tikzpictures next to each other marked with a and b?
I have the following code that should print the two figures next to each other with an a to the left of the first figure and a b to the left of the second one. The code below does this, but everything ...