I'm writing a report in a language that uses decimal commas. In some cases that clashes with commas used for punctuation, causing hard to read text, e.g.:

for $x_i \in [-1,5, 1,5]$.
Is there a way to make this more readable?
|
I'm writing a report in a language that uses decimal commas. In some cases that clashes with commas used for punctuation, causing hard to read text, e.g.:
for Is there a way to make this more readable? |
||||
|
If you're using the comma as decimal separator, then you should consider using the semi-colon for the interval separator, it will be more readable:
(Instead of typing |
|||||||||||
|
Notice the space after the comma where you want it to act as a punctuation symbol. |
|||
|
|
You could try
and use a semicolon for the interval separator (as already suggested by Philippe Goutet). |
||||
|
|
|
The
would produce
|
|||
|
|
\[and\]for the brackets, are you? – egreg Jul 26 '11 at 17:54