Cobry
Cobry

Reputation: 4548

How to add extra horizontal whitespace between words

I want to have more space between words. I don't want this to be a global setting but I want to use it at some places like for example when trying to show a file format example

-0.906638958281220     -0.657018016704405     -0.728731730614787\n
-0.786972436949130     -0.657627328226054     -0.787627155672891\n
-0.777310920528387     -0.784783890438497     -0.593932422372214\n
 0.995954003399787     -0.696941212792459     -0.096196347815229\n
-0.900490089683701     -0.833132404483661      0.228899514508313\n
-0.934597263489565     -0.763072730515099      0.417292195793138\n
-0.802394301831597     -0.767756191733287      0.691687709627505\n

sphinx 'make html' output will automatically remove multiple spaces and it will look like this

-0.906638958281220 -0.657018016704405 -0.728731730614787
-0.786972436949130 -0.657627328226054 -0.787627155672891
-0.777310920528387 -0.784783890438497 -0.593932422372214
0.995954003399787 -0.696941212792459 -0.096196347815229
-0.900490089683701 -0.833132404483661 0.228899514508313
-0.934597263489565 -0.763072730515099 0.417292195793138
-0.802394301831597 -0.767756191733287 0.691687709627505

Thanks

Upvotes: 2

Views: 1307

Answers (1)

Cobry
Cobry

Reputation: 4548

Using :: code blocks will do the trick

some text above
::
LEAVE AN EMPTY LINE
    -0.906638958281220     -0.657018016704405     -0.728731730614787
    -0.786972436949130     -0.657627328226054     -0.787627155672891
    -0.777310920528387     -0.784783890438497     -0.593932422372214
     0.995954003399787     -0.696941212792459     -0.096196347815229
    -0.900490089683701     -0.833132404483661      0.228899514508313
    -0.934597263489565     -0.763072730515099      0.417292195793138
    -0.802394301831597     -0.767756191733287      0.691687709627505
LEAVE AN EMPTY LINE
some text below

result will look like this

some text above
-0.906638958281220     -0.657018016704405     -0.728731730614787
-0.786972436949130     -0.657627328226054     -0.787627155672891
-0.777310920528387     -0.784783890438497     -0.593932422372214
 0.995954003399787     -0.696941212792459     -0.096196347815229
-0.900490089683701     -0.833132404483661      0.228899514508313
-0.934597263489565     -0.763072730515099      0.417292195793138
-0.802394301831597     -0.767756191733287      0.691687709627505
some text below

Upvotes: 2

Related Questions