First, scaling 1.1011•22 should give 0.11011•23, not 0.1101•23. It is an error to discard bits early.
However, given the way it is, we want to calculate 01101 + -10100. Put the larger number above the smaller number and remember that, because the larger number is negative, the result must be negative:
1 0 1 0 0
0 1 1 0 1
_________
Now subtract the elementary-school way. On the right, we subtract 1 from 0. This requires borrowing from the digit to the left, so we subtract 1 from 10 (0 plus the borrowed value) and mark the borrow:
1 0 1 0'0
0 1 1 0 1
_________
1
Now we subtract 0 from -1 (0 minus the borrow). This requires borrowing again, so we subtract 0 from 1 (0 minus the borrow of 1 plus the new borrow of 10):
1 0 1'0'0
0 1 1 0 1
_________
1 1
Then 1 from 0 (1 minus the borrowed 1). We borrow again, so we subtract 1 from 10:
1 0'1'0'0
0 1 1 0 1
_________
1 1 1
Then 1 from -1 (0 minus the borrowed 1). We borrow again, so we subtract 1 from 1 (0 minus the borrowed 1 plus the newly borrowed 10):
1'0'1'0'0
0 1 1 0 1
_________
0 1 1 1
Then 0 from 0 (1 minus the borrowed 1). Finally, there is no new borrow, and we have:
1'0'1'0'0
0 1 1 0 1
_________
0 0 1 1 1
We remember this is negative, so the result is -00111.