LaTex tabularx宏包设置 之 有效解决自动换行的问题!

导言区Performance:

\usepackage{tabularx}

 

语法说明

% 说明:

\begin{tabularx}{widthi}[posi]{preamblei}
\end{tabular}

EXAMPLE: \begin{tabularx}{10.5cm}{|X|X|X|} %表格总宽度为10.5cm,共3列,宽度均相同。每列宽度为10.5/3=3.5。是自动计算出来的。如果将上面表将的设置改为\begin{tabularx}{\linewidth}{|p{3cm}|X|X|},则表格的总宽度是行宽,第1列列宽为3cm,其他两列的列宽自动计算。参考“自动计算列宽的tabularx宏包”。

 

示例

\documentclass[danish,a4paper,twoside,11pt]{report}

\usepackage{tabularx}

\begin{document}

\begin{table}[h]
\begin{tabularx}{\textwidth}{p{4cm} X}
	\hline
Use Case Navn: & Opret Server \\ 

    \hline
Scenarie:      & At oprette en server med bestemte regler som tillader folk at spille sammen. More Text more text More Text \\

\hline
\end{tabularx}
\end{table}

\end{document} 

结果

采用\begin{tabularx}{\textwidth}{p{4cm} X}的情况(上述示例中的情况)

LaTex tabularx宏包设置 之 有效解决自动换行的问题!_第1张图片

采用\begin{tabularx}{\textwidth}{p{4cm} l} 的情况(即,将上述“X”换成“L”的情况)

LaTex tabularx宏包设置 之 有效解决自动换行的问题!_第2张图片

参考文献

The tabularx package∗ David Carlisle 2020/01/15

你可能感兴趣的:(LaTex)