私は 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
全体の幅が の2 列環境を採用することをお勧めします\textwidth
。2 番目の列では、必要に応じて自動的に改行できます。
列間の空白の量はマクロによって制御されます\tabcolsep
。そのデフォルト値は です6pt
。その値を 3 分の 1 に減らすには、命令 を発行します\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}