标记、编号和引用问题

标记、编号和引用问题

我希望在 latex 中排版以下问题

Q 1 Find the shortest path....                      
Q 2 Explain... 

我想\begin{question}......\end{question}在乳胶中输入这些问题并标记每个问题以便以后参考。

答案1

这是一个使用该ntheorem包的解决方案。它设置了一个名为 的新定理类环境question。交叉引用环境可以通过通常的-机制question实现。\label\ref

在此处输入图片描述

\documentclass{article}

\usepackage{ntheorem}
\theoremstyle{plain}
\theorembodyfont{\upshape} % or "\itshape", or whatever
\newtheorem{question}{Q}

\usepackage{cleveref} % optional (for \cref and \Cref macros)
\crefname{question}{question}{questions}

\begin{document}

\begin{question} \label{q:1}
Find the shortest path \dots
\end{question}

\begin{question} \label{q:2}                
Explain \dots
\end{question}

Questions \ref{q:1} and \ref{q:2} \dots

\Cref{q:1,q:2} \dots
\end{document}

相关内容