所以我正在试着打字写我的数学作业,我想知道如何给问题编号(不是方程式!)。所以我必须像
4.3
//work
4.4
//work
5.2
//work
6.1
//work
有谁知道这是怎么做到的吗?
答案1
您只需使用\section*
并根据您的要求手动对其进行编号即可:
\documentclass{article}
\begin{document}
\section*{4.3 Some stuff}
// work
\section*{4.4 Another section}
// work
\section*{5.2 Interesting stuff}
// work
\section*{6.1 Final section}
// work
\end{document}
答案2
如果您希望将它们格式化为标准枚举列表但使用任意编号,则可能需要如下内容:
\documentclass{article}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}[widest={5.2}]
\item[4.3] Some problem\\
// work
\item[4.4] Another question\\
// work
\item[5.2] Interesting solution\\
// work
\item[6.1] Final proof\\
// work
\end{enumerate}
\end{document}
使用enumitem
withwidest={5.2}
可以指定适当的标签宽度。这可能不会带来太大的影响,但如果您的问题有更复杂的编号,则可能会造成问题。