Yeah, they do appear in the environments tab, but it's not ordered and doesn't tell me which question number it is.
Here's a minimal working code example:
Code: Select all
\documentclass[12pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{amsmath,amsthm,amssymb}
\newcommand{\N}{\mathbb{N}}
\newcommand{\Z}{\mathbb{Z}}
\newenvironment{problem}[2][Problem]{\begin{trivlist}
\item[\hskip \labelsep {\bfseries #1} \hskip \labelsep {\bfseries #2.}]}{\end{trivlist}}
\newenvironment{question}[2][Question]{\begin{trivlist}
\item[\hskip \labelsep {\bfseries #1}\hskip \labelsep {\bfseries #2.}]}{\end{trivlist}}
\begin{document}
\begin{question}{1}
\begin{problem}{(a)}
%... lalalala lots of text here
\end{problem}
\end{question}
%.... many more questions
\begin{question}{9}
%Would be cool to have a reference to "Question 9" so I can just click it in the content toolbar and jump straight to here rather than search through the .tex file
\begin{problem}{(a)}
%... lalalala lots of text here
\end{problem}
\end{question}
\end{document}