与章节号在同一行枚举

与章节号在同一行枚举

在此处输入图片描述

我想在教科书末尾展示所选练习的答案。它们应该标有章节号并且不带换行符。有没有简单的方法可以做到这一点?

我的 Latex 技能不足以解决这个问题。我的解决方案:

\newpage
\section*{Answers to selected exercises}
\begin{multicols}{2}
\huge{Chapter 1}\\

\normalsize
\textbf{1.1.} 25 \textbf{1.2.} 14 \textbf{1.3.} 42 \textbf{1.4.} $H_0$ reject 
\textbf{1.5.} Do not reject $H_0$ \textbf{1.6.} 125 \textbf{1.7.} no 
\textbf{1.8.} maybe \textbf{1.9.} probably not \textbf{1.10.} why not? 
 \textbf{1.11.} fate \textbf{1.12.} 754.14 \textbf{1.13.} correlation 
 \textbf{1.14.} $\rho = 0.7$ \textbf{1.15.} 147 \\

 \huge{Chapter 2}\\

 \normalsize
 \end{multicols}
  ....

答案1

您可以使用inline以下列表enumitem使用一些宏来定义新的解决方案集 - \chapteranswer{<num>},自动将添加<num>到枚举中的过程很容易:

在此处输入图片描述

\documentclass{article}

\usepackage[inline]{enumitem}
\usepackage{multicol}

\newcommand{\chapteranswer}[1]{%
  \subsection*{Chapter #1}%
  \setlist[enumerate]{label = \textbf{#1.\arabic*}, itemjoin = \quad}%
}

\newcommand{\nextanswer}[1]{\setcounter{enumi}{\numexpr#1-1}}

\begin{document}

\section*{Answers to selected exercises}
\begin{multicols}{2}
  \raggedright
  \chapteranswer{1}

  \begin{enumerate*}
    \item 25 
    \item 14 
    \nextanswer{5}
    \item 42 
    \item $H_0$ reject 
    \item Do not reject $H_0$ 
    \item 125 
    \item no 
    \item maybe 
    \item probably not 
    \item why not? 
    \item fate 
    \item 754.14 
    \item correlation 
    \item $\rho = 0.7$ 
    \item 147
  \end{enumerate*}

  \chapteranswer{2}

  \begin{enumerate*}
    \item 25 
    \item 14 
    \item 42 
    \item $H_0$ reject 
    \nextanswer{12}
    \item Do not reject $H_0$ 
    \item 125 
    \item no 
    \item maybe 
    \item probably not 
    \item why not? 
    \item fate 
    \item 754.14 
    \item correlation 
    \item $\rho = 0.7$ 
    \item 147
  \end{enumerate*}

  \chapteranswer{3}

  \begin{enumerate*}
    \item 25 
    \item 14 
    \item 42 
    \item $H_0$ reject 
    \item Do not reject $H_0$ 
    \item 125 
    \item no 
    \item maybe 
    \item probably not 
    \item why not? 
    \item fate 
    \nextanswer{765}
    \item 754.14 
    \item correlation 
    \item $\rho = 0.7$ 
    \item 147
  \end{enumerate*}

\end{multicols}

\end{document}

由于内容并不真正遵循句子结构,连字符模式在传统的对齐设置中可能看起来很糟糕。因此,我发布了一些\raggedright让内容看起来更美观的内容。

对每个部分使用已知/现有的分段单元章节有助于将事物保持在一起,尽管这也可以改变。

\nextanswer{<num>}允许您明确识别下一个答案的编号(因为您可能只提供以下答案已选择练习)。

相关内容