如何在创建新行后添加缩进

如何在创建新行后添加缩进

我是 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

这是我输入的 Latex 代码的输出,我希望语句排列整齐,并且数字位于左边。

但我希望结果看起来像这样。没有句号。1.2
) A 是真陈述。......
B 是真陈述。......
C 是假陈述。......
D 可以是假的也可以是真的,所以它不是一个陈述。

答案1

你可以使用这个技巧\phantom{1.2)}

在此处输入图片描述

\section*{Practice Problems}

1.2) A is a true statement. \\
\phantom{1.2)} B is a true statement. \newline
\phantom{1.2)} C is a false statement. \newline
\phantom{1.2)} D could be either false or true so it is not a statement.

答案2

有一个考試班在 LaTex 中处理多项选择题、每个问题的分数等

考试类别多项选择题来自 Overleaf

\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}

相关内容