I'm writing an article with 2 columns. If my document is this:
\documentclass[10pt,a4paper, twocolumn]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[
left=2.00cm,
right=2.00cm,
top=2.00cm,
bottom=2.00cm
]{geometry}
\usepackage{blindtext}
\begin{document}
\blinddocument
\end{document}
Is there a way tho know exactly the width of the column (see picture)? I need it for draw in others softwares using this lenght.

(\textwidth-\columnsep)/2but just stick\showthe\columnwidthinto your document and tex will show the value in the log – David Carlisle Jul 04 '17 at 18:22something.texall messages are written to a filesomething.login the same directory. most of the messages (including\showthemessages are also shown on the terminal directly. – David Carlisle Jul 04 '17 at 18:36columnsep=1cmthen is (21-2-2-1)/2=8 cm. You can also test it in the PDF preview with\the\columnwidth(I am to lazy to search in the logs)... but why the hell you need to know if the column is 8.00 cm or 8.03 cm ? You can(must) always use a relative length as\columnwidthinstead of absolute length as8cmin images, tables, etc. Using relative lengths as far you can, guarantees that if you change the document layout, everything change accordingly (this does not happen if you manage lengths in cm). – Fran Jul 05 '17 at 06:54\the\columnwidth(252.0pt) and turn that into cm with thelengthconvertpackage with\Convert{\the\columnwidth}(8.85679 cm). – Daniel Jul 19 '23 at 19:25