如何防止长字符串开始自己的行?
我经常使用引用文件路径的文档。通常,文件路径比页面的文本宽度长。文件路径最终会使某些行变得非常短且难看,因为 Word 在意外的位置中断了路径。当使用“justify”进行格式设置时,它看起来特别糟糕。
如果文件路径有中断字符(如空格或连字符),则字符串会在奇怪的位置中断,并且格式会很丑陋。
It looks like this /my/file/path/is/really_kind_of
long/and/it keeps going/version3/computer42/somewhere/in/the/world.txt
如果文件路径没有不间断字符(就像我将连字符换成“不间断”破折号),则整个文件路径将移动到新行,并且该行在末尾处“中断”宽度和路径的其余部分位于其下方的线上。
It looks like this
/my/file/path/is/really_kind_of long/and/it keeps going/version3/computer42/so
mewhere/in/the/world.txt
我真的很希望它能做更多类似这样的事情:
It looks like this /my/file/path/is/really_kind_of long/and/it keeps going/ver
sion3/computer42/somewhere/in/the/world.txt
有谁知道实现这一目标的秘密咒语吗?