Follow-up question to For the inline enumerate: controlling the item spacing. I am having a problem with something using Exsheets and XeLaTeX to compile.
\documentclass[11pt, twoside]{article}
\usepackage[top=1in, bottom=1in, left=1.25in, right=1.25in]{geometry}
\usepackage [english]{babel}
\usepackage [autostyle, english = american]{csquotes}
\MakeOuterQuote{"}
\setlength{\parindent}{0.375in}
\setlength{\headheight}{0.5in}
%%exam stuff
\usepackage[load-headings]{exsheets} %need to have exsheets.cfg in the same folder
\SetupExSheets{
headings = runin-nr ,
headings-format = \normalsize,
%solution/print = true %get solutions printed after questions
counter-format = 1-qu. %1-question number. is the counter format.
}
\usepackage[inline]{enumitem}
\newlist{choices}{enumerate*}{1}
\setlist[choices]{itemjoin = \hspace{0.75in}, label=(\Alph*)}
%%exam stuff
%Times New Roman Font
\renewcommand\rmdefault{ptm}
%Times New Roman Font
\begin{document}
\begin{question}[type = exam]\hspace{0.2cm}%do hspace{0.2cm} for every question
Here's a question.
\end{question}
\begin{choices}
\item Test
\item Test
\item Test
\item Test
\item Test
\end{choices}
\end{document}
Output:

I am wondering if there is a way to guarantee that the leftmost part of "Here's a question" and "Line 2" align with the leftmost part of bullet (A). My \hspace{0.2cm} is merely an estimate.
Furthermore, is there a way to insert this \hspace{0.2cm} without having to put it in every time I type \begin{question}[type=exam]?


tasks? I'm still very new toexsheets.Also, as noted above,
– Clarinetist Nov 08 '14 at 04:250.2cmfor thehspacewas a guess. Is there perhaps a way to find the exact amount needed to align the line before with thechoices?1.2~) it might be a good idea to define a new headings instance for questions where the number part takes a fixed width and use said width withenumitem. – cgnieder Nov 08 '14 at 09:27tasks. This appears to be more work than I thought. Once it's finished and the new version is online I'll post an answer :) – cgnieder Nov 08 '14 at 18:28