我想知道如何在itemize
环境中缩进表格。
\documentclass{article}
\begin{document}
Hello. I love \LaTeX! I have a question:
\begin{itemize}
\item
How can I indent the table below?
\begin{tabular}{|rcccl|}
\hline\\[-10pt]
this & table & should & be & indented \\
\hline
\end{tabular}
\end{itemize}
\end{document}
答案1
您可以在 前面添加 ,tabular
其中\hspace*{<len>}
是<len>
任何已知的 (La)TeX 长度单位。例如,下面我将tabular
隔开2em
:
\documentclass{article}
\begin{document}
Hello. I love \LaTeX! I have a question:
\begin{itemize}
\item
How can I indent the table below?
\hspace*{2em}\begin{tabular}{|rcccl|}
\hline
this & table & should & be & indented \\
\hline
\end{tabular}
\end{itemize}
\end{document}
使用此处带星号的版本\hspace*{<len>}
不是强制性的 -\hspace{<len>}
也可以使用。
请注意,必须“取消跳过”在\hline
via后插入的距离\\
。我刚刚将其从我的 MWE 中删除。当然,您还可以使用其他长度(\labelsep
我想到的是,这是项目符号和项目文本开头之间的长度)。