I'm trying to no avail to create a table every cell in the row starts at the same height. Right now, every two cells in a row are centralized with respect to each other. So instead of:
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
in a list. I provide a MWE which demonstrates this. This MWE produces a list with a table such that the table is centered with respect to the item label. However I want all of them to appear in the same line.
\documentclass{article}
\begin{document}
\begin{enumerate}
\item \begin{tabular}{p{2pt}p{5cm}}
* & This curriculum vitae template has been designed for an academic CV. The current structure provides a summary of academic history without going in-depth on any one constituent part but the \\
\end{tabular}
\end{enumerate}
\end{document}
Very good example, the tabular is a box and gets typeset with its vertical center aligned with the baseline of the surrounding text. Use the optional argument to get the top of the box aligned.
\documentclass{article}
\begin{document}
\begin{enumerate}
\item \begin{tabular}[t]{p{2pt}p{5cm}}
* & This curriculum vitae template has been designed for
an academic CV. The current structure provides a summary
of academic history without going in-depth on any one
constituent part but the
\end{tabular}
\end{enumerate}
\end{document}
I hope you are not designing a template. By the way, what is your definition of a template? Personally, i am very confused.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p