Removing a space in a table

I have a problem with a space too large. Here it’s possible to display my data fields with placeholders representing the largest number of digits.

enter image description here

As you can see, after the last β€œP”, the values ​​are outside the scope of the chart. Although I could increase the size of the table as a whole (currently text width), this will be a poor design choice on my part. I think I should use all this empty empty space. I don't know what to do, though.

When I have all the unique values, the table looks perfect. I want the increased size of the number to "consume" a space before pulling the table out of certain bounds. I was hoping to use extracolsep with no arguments to remove the spaces, but unfortunately does not.

+6
source share
1 answer

try adding this command in front of your table;

\ renewcommand {\ tabcolsep} {1pt}

the default column separator width is 6pt inserted before and after the contents of the column, but this will change that. Replace 1pt with what you need.

+9
source

Source: https://habr.com/ru/post/894579/


All Articles