我是 Latex 的新手,我不明白任何人关于格式的评论。我的理解是,Latex 可以帮助我制作我想要的文档外观。我打算使用 Latex 进行一些基础数学课程,我想知道如何将我的解决方案与问题编号分开排列。这是我尝试用来创建缩进的代码。
\section*{Practice Problems}
1.2) A is a true statement. \\
\quad B is a true statement. \newline
\hspace{2mm} C is a false statement. \newline
D could be either false or true so it is not a statement. \newline
但我希望结果看起来像这样。没有句号。1.2
) A 是真陈述。......
B 是真陈述。......
C 是假陈述。......
D 可以是假的也可以是真的,所以它不是一个陈述。
答案1
答案2
有一个考試班在 LaTex 中处理多项选择题、每个问题的分数等
\question Which of these famous physicists invented time?
\begin{oneparchoices}
\choice Stephen Hawking
\choice Albert Einstein
\choice Emmy Noether
\choice This makes no sense
\end{oneparchoices}
\question Which of these famous physicists published a paper on Brownian Motion?
\begin{checkboxes}
\choice Stephen Hawking
\choice Albert Einstein
\choice Emmy Noether
\choice I don't know
\end{checkboxes}
https://www.overleaf.com/learn/latex/Typesetting%20exams%20in%20LaTeX#Multiple_choice_questions
http://mirrors.ctan.org/macros/latex/contrib/exam/examdoc.pdf
答案3
我建议您采用双列tabularx
环境,总宽度为\textwidth
;如果需要,第二列可以自动换行。
列之间的空白量由宏控制\tabcolsep
。其默认值为6pt
;要将该值减少三分之一,您可以发出指令\setlength\tabcolsep{4pt}
。
\documentclass{article}
\usepackage{tabularx} % for 'tabularx' env.
\begin{document}
\section*{Practice Problems}
%\noindent
\begin{tabularx}{\textwidth}{@{} l X @{}}
1.2) & A is a true statement. \\
& B is a true statement. \\
& C is a false statement. \\
& D could be either false or true so it is not a statement.
\end{tabularx}
\end{document}