Esta é a primeira vez que pergunto neste fórum. Eu sou novo no látex.
Eu sei que minha pergunta parece semelhante comLista numerada dentro de uma célula da tabela, mas meu objetivo é fazer algo assim:
Até agora, com este código:
\documentclass[a4paper, 11pt]{article}
\usepackage[margin=2cm]{geometry}
\usepackage{array, multirow, blindtext, booktabs}
\begin{document}
\begin{center}
\noindent
\title\large\textbf{TITLE HERE $($KAK$)$}
\noindent
\large\textbf{SUB TITLE HERE}\\
\end{center}
\noindent
\begin{tabular}{@{}llp{0.63\textwidth}}
Material one & : & Explanation One \\
Material two & : & Explanation two \\
Material three & : & Explanation three \\
Material four & : & \begin{enumerate}\item \blindtext \item some text here \end{enumerate} \\
\end{tabular}
\end{document}
Mas o resultado final foi:
Então, como posso alinhar a lista numerada com o texto anterior como exemplo?
Responder1
Sugiro que você carregue o enumitem
pacote para criar aquele ambiente enumerado personalizado que é muito compacto.
\documentclass[a4paper,11pt]{article}
\usepackage[margin=2cm]{geometry}
\usepackage{array, blindtext, booktabs}
\usepackage{enumitem}
%% Create a very compact enumerated list environment
\newlist{myenum}{enumerate}{1}
\setlist[myenum]{label=\arabic*., nosep, wide,
leftmargin=*, % hanging indentation
before=\vspace{-0.57\baselineskip},
after =\vspace{-0.8\baselineskip}}
\begin{document}
\begin{center}
\large\textbf{TITLE HERE $($KAK$)$}\\
\large\textbf{SUB TITLE HERE}
\end{center}
\noindent
\begin{tabular}{@{} ll p{0.63\textwidth} @{}}
\toprule
Material one & : & Explanation One \\
Material two & : & Explanation two \\
Material three & : & Explanation three \\
Material four & : &
\begin{myenum}
\item \blindtext
\item Some more text here.
\end{myenum} \\
\bottomrule
\end{tabular}
\end{document}
Responder2
Semelhante à resposta do Mico, ajustando o espaçamento vertical aplicando o \lineskip
tamanho, envolvendo também em uma nova enumerate
lista.
Além disso, usei
@{\hskip2\tabcolsep:\hskip2\tabcolsep}
em substituição ao especificador da 2ª coluna l
: Insere o :
com o espaçamento correto 2\tabcolsep
à esquerda e o mesmo à direita de:
\documentclass[a4paper, 11pt]{article}
\usepackage[margin=2cm]{geometry}
\usepackage{array}
\usepackage{multirow}
\usepackage{booktabs}
\usepackage{enumitem}
\usepackage{blindtext}
\newlist{insidetabenum}{enumerate}{1}
\setlist[insidetabenum,1]{wide,topsep=0pt,leftmargin=*,itemsep=0pt,before={\vspace{\dimexpr-\normalbaselineskip+3\lineskip}},label={\arabic*.}}
\begin{document}
\begin{center}
\noindent
\title\large\textbf{TITLE HERE $($KAK$)$}
\noindent
\large\textbf{SUB TITLE HERE}\\
\end{center}
\noindent
\begin{tabular}{@{}l@{\hskip2\tabcolsep:\hskip2\tabcolsep}p{0.63\textwidth}}
Material one & Explanation One \\
Material two & Explanation two \\
Material three & Explanation three \\
Material four &
\begin{insidetabenum}
\item
\blindtext[2]
\item some text here \end{insidetabenum}
\end{tabular}
\end{document}
Responder3
Você também pode ter esse layout com um código mais simples:
\documentclass[a4paper, 11pt]{article}
\usepackage[margin=2cm, showframe]{geometry}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{booktabs}
\usepackage{enumitem}
\usepackage{blindtext}
\makeatletter
\newcommand*{\compress}{\@minipagetrue}
\makeatother
\begin{document}
\begin{center}
\noindent
\title\large\textbf{TITLE HERE $($KAK$)$}
\noindent
\large\textbf{SUB TITLE HERE}\\
\end{center}
\noindent
\begin{tabular}{@{}l@{\,:\hskip2\tabcolsep} >{\arraybackslash\compress}p{0.63\textwidth}@{}}
Material one & Explanation One \\
Material two & Explanation two \\
Material three & Explanation three \\
Material four &
\begin{enumerate}[label=\arabic*., wide, itemsep=0pt]%
\item
\blindtext
\item some text here
\end{enumerate}
\end{tabular}
\end{document}
Se você quiser que o corpo dos itens fique alinhado verticalmente com a primeira letra (o L de Lorem, aqui), adicione a chave `leftmargin=*.