I'm trying to format a table that is about 3/4 the width of the paragraph text. I tried using tabular to do this, however it has some problems. First, the default table extends past my documents margins. Second, there is too much spacing in the table and it is too wide.
Does anyone know how to control the width so it's about 3/4 the width of the paragraph? Also, how to emphasize / italicize the entire table?
Thanks!
\documentclass[letterpaper]{ltxdoc}
\usepackage[left=3cm, right=3cm]{geometry}
\usepackage{lipsum}
\setlength{\parskip}{1em}
\usepackage[T1]{fontenc}
\begin{document}
\lipsum
\begin{center}
\begin{tabular}{ c c c c c }
<ARGUMENT> & $\equiv$ & <PROP\_PREMISE\_MAJOR> & <PROP\_PREMISE\_MINOR> & <PROP\_CONCL>
\end{tabular}
\end{center}
\end{document}





tabularenvironment. If you will provide complete small, compilable document with your problem, than is the most likely that you will get answer soon. – Zarko May 28 '19 at 18:17