所以我使用 latex 已经有一段时间了。我只用它来做家庭作业。我通常会使用 latex 来为不同的问题创建部分
\section*{Ex 1:}
\subsection*{Solution:}
*solution*
这是最佳实践吗?例如,我可以使用enumerate
环境,或者其他我不知道的东西。
谢谢!
答案1
就我个人而言,我尽量避免在标题中使用冒号(这看起来有些奇怪),尤其是在标题末尾。冒号不会给您的章节标题增添任何有意义的内容,您也可以不使用它们。
除了使用\subsection*{Solution}
,你有没有想过使用类似定理的环境?amsthm
包是一个流行的包(其他包括ntheorem
和mdframed
)你可以在序言中定义
\documentclass{article}
\usepackage{amsthm}
\theoremstyle{definition}
\newtheorem*{solution}{Solution} % No numbering
%\newtheorem{solution}{Solution}[section] % Numbering with <sec.no>.<sol.no>
\begin{document}
\begin{solution}[by induction] % Optional parameter in parentheses
<your solution>
\end{solution}
\end{document}
amsmath
非常强大,但从某种意义上说,它有点受限。ntheorem
它mdframed
具有更多功能,但也有局限性。所以每个软件包都有其优点和缺点。