Set the width of table columns
Changes made to table column width settings will affect the typeset table only, not the preview provided by Visual Editor. You need to recompile your document to see the result of any changes made to column widths.
Follow these steps to set column width(s) to a fixed value, or allow the width(s) to vary according to the content in the column cells.
Select the column(s) whose width you want to change. The column width icon (
) is then enabled.
Select the drop-down menu:

Choose the preferred option for the selected column(s):
Stretch width to text: this option allows the typeset column width(s) to be determined by the amount of content contained in the column's cells, e.g., the width of typeset text or mathematics.
Fixed width, wrap text: sets the width of the column(s) to a fixed value which causes line breaking (text wrapping) within column cells. Selecting this option displays the Set column width window used to set fixed column width(s), as explained in the next section.

How to set a fixed column width
The Set column width pop-up window provides a drop-down list containing three ways to set fixed column widths:
As a percentage (%) of the current environment's line width: the table column widths might then vary according to where the table is used (see example below).
A Custom option using LaTeX commands to calculate the width (see example below).
The following image shows how Visual Editor uses a small icon to indicate columns with a fixed width. You can edit the fixed-width setting by selecting (clicking) the icon to display the Set column width window.

Example: using percentage of line width
The command \linewidth
holds the value of the current line width, which varies based on the document format, such as single-column or double-column layouts. Additionally, the value of \linewidth
can change in specific environments, e.g., within a minipage
.
This example uses the multicol
package to typeset two identical tables with column widths set to 0.25\linewidth
. One table is typeset in a single-column section, the other in a two-column section, demonstrating how changes to \linewidth
affects the table column widths.
\documentclass{article}
\usepackage{array}
\usepackage{multicol}
\begin{document}
\section{Section with a single column}
This part of the page is a single column with \verb|\linewidth|=\the\linewidth.\vskip12pt
\begin{tabular}{|p{0.25\linewidth}|p{0.25\linewidth}|}
\hline
A & B\\
\hline
C & D \\
\hline
\end{tabular}
\vskip12pt \noindent We now typeset the same table in a two-column section.
\begin{multicols}{2}
[
\section{Section with two columns}
]
Here, \verb|\linewidth|=\the\linewidth. The table column widths are smaller.
\begin{tabular}{|p{0.25\linewidth}|p{0.25\linewidth}|}
\hline
A & B\\
\hline
C & D \\
\hline
\end{tabular}
\end{multicols}
\end{document}
Open this example in Overleaf and switch to Visual Editor.
This example produces the following output:
Example: using custom commands
The Custom option lets you set column widths using a wider range of units including em
, ex
and sp
together with LaTeX commands—provided those commands produce a valid width value in units LaTeX understands.
The next example demonstrates just a few of the many ways you can use the Custom option to set column widths, including use of the units em
and ex
, simple arithmetic expressions and more advanced calculations using LaTeX commands. The\dimexpr
("dimension expression") command is used to perform arithmetic operations on LaTeX lengths (also called dimensions) using addition, subtraction, multiplication, or division. In essence, \dimexpr
enables use of dynamically-calculated lengths, including the width of table columns.
\documentclass{article}
\usepackage{array}
\begin{document}
\newdimen\mydim
\mydim=1.25cm
\newcommand{\Acol}{\dimexpr 1cm + 0.1in + 3pt + 2.5mm\relax}
\newcommand{\Bcol}{0.1\linewidth}
\begin{itemize}
\item Width of column 1: 4em=\the\dimexpr 4em\relax
\item Width of column 2: 3ex=\the\dimexpr 3ex\relax
\item Width of column 3: \verb|\Acol| sets a width of \the\dimexpr 1cm + 0.1in + 3pt + 2.5mm\relax
\item Width of column 4: \verb|\Bcol| sets a width of \the\dimexpr0.1\linewidth\relax
\item Width of column 5: \verb|\dimexpr0.25\linewidth+2cm-\mydim\relax| sets a width of \the\dimexpr0.2\linewidth+2cm-\mydim\relax
\end{itemize}
\begin{table}
\centering
\caption{Using \LaTeX{} commands and units to set column widths}
\begin{tabular}{|p{4em}|p{3ex}|p{\Acol}|p{\Bcol}|p{\dimexpr0.2\linewidth+2cm-\mydim\relax}|}
\hline
A & B &C & D&E\\
\hline
F& G&H& I&J\\
\hline
\end{tabular}
\end{table}
\end{document}
Open this example in Overleaf and switch to Visual Editor.
This example produces the following output:
How to change the alignment of a table cell
The alignment of individual, non-merged, cells can’t be changed in Visual Editor.
The content of merged cells can be aligned (see the section Merging two or more cells in a table row).
How to merge (or unmerge) table cells
Table cells can be merged horizontally, within a table row, but not vertically within a table column.
Merging two or more cells in a table row
Select the cells you want to merge.
Select the Merge cells icon (
) to merge the cells.
Optionally, you can change the alignment of the merged cells.
Unmerging two or more merged cells
Select the merged cell.
Select the Merge cells icon (
) to unmerge the cells.
The following video demonstrates merging three cells in a table row, changing alignment of the merged cell, and unmerging the cell content.
How to delete a table row or column
Select the rows or columns you want to delete.
Select the Delete row or column icon (
) to delete the selected rows or columns.
How to add new rows or columns
The Insert button () lets you add one or more new rows or columns before or after a selected location.
If you want to insert m rows and n columns, select an m × n group of cells covering the locations where you want to insert those rows and columns.
Example: In the following screenshot, a 3 × 2 group of cells straddling 3 rows and 2 columns has been selected.

Selecting
provides the following options:

You can now insert any of the following:
2 columns to the left of column 1
2 columns to the right of column 2
3 rows above row 1
3 rows below row 3
Last updated
Was this helpful?