如何对齐项目标签?

如何对齐项目标签?

当我尝试回答作业中的匹配问题时,我发现上面显示的四个答案的最终 PDF 彼此不对齐。似乎小写的“b”比“a”、“c”、“d”占用的空间更多。

有人知道我该如何解决这个问题吗?

Latex 中的一种奇怪的格式模式

答案1

请始终发布代码,而不仅仅是代码图像。

您只展示了一小部分,但它表明您缺少 Latex 的大部分自动编号、布局和交叉引用功能。

可能类似下面的内容会是一个合理的标记,然后可以根据需要调整布局而不改变标记,这是像乳胶这样的系统的一个主要优点,但是如果您有明确的字体更改和间距命令以及文档中的手动编号,就会失败。

在此处输入图片描述

\documentclass{article}
\renewcommand\theenumi{\alph{enumi}}% a b c 
\newtheorem{problem}{Problem}
\renewcommand\figurename{Plot}
\renewcommand\thefigure{\Alph{figure}}% A B C
\begin{document}

\begin{problem}
Pick one of these:
\begin{enumerate}
\item B
\item C
\item D
\item A
\end{enumerate}
\end{problem}

\begin{problem}
something\ldots

In Plot~\ref{zz} which shows\ldots

in Plot~\ref{www} which shows\ldots

\begin{figure}[htp]
\centering
\begin{picture}(10,10)
\put(0,10){\line(1,-1){10}}
\end{picture}
\caption{something\label{zz}}
\end{figure}

\begin{figure}[htp]
\centering
\begin{picture}(10,10)
\put(0,0){\line(1,1){10}}
\end{picture}

\caption{something\label{www}}
\end{figure}

\end{problem}

\end{document}

相关内容