对于我正在编写的 gcc 备忘单,我想创建一个表,该表应该描述 gcc 如何解释不同的文件结尾。到目前为止我创建的表定义如下:
|======================================================================
|.c |C source code which must be preprocessed.
|.i |C source code which should not be preprocessed.
|.h |C header file to be turned into a precompiled header.
|.s |Assembler code.
|other |
An object file to be fed straight into linking. Any file name with no
recognized suffix is treated this way.
|======================================================================
我遇到的问题是表格跨越了总页面宽度,但我想要的是每列的宽度与其最宽的条目一样宽,并且表格将只跨越它需要的宽度。