새 줄을 만든 후 들여쓰기를 어떻게 추가하나요?

새 줄을 만든 후 들여쓰기를 어떻게 추가하나요?

저는 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전체 너비가 2열인 환경을 사용하는 것이 좋습니다 \textwidth. 두 번째 열은 필요한 경우 자동 줄 바꿈을 허용합니다.

열 사이의 공백 크기는 매크로에 의해 결정됩니다 \tabcolsep. 기본값은 6pt; 해당 값을 1/3로 줄이려면 명령을 실행합니다 \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}

관련 정보