帮我在 LaTex 中对齐作业点 A、B 和 C

帮我在 LaTex 中对齐作业点 A、B 和 C

我有这样的作业这里并且我想让所有东西都对齐"1.2.6 EX. ... a) ... b) ..",例如“”——怎么做?我不喜欢 LaTex 立即插入点 8 和点 8.1/8.2 等。

在此处输入图片描述

在此处输入图片描述

最小工作示例

\documentclass{article}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{float}

\begin{document}
\tableofcontents
\newpage

\section{Exercise 1.1.1} 
\section{Exercise 1.3.4}
\subsection{a) The equation for the affine variety}
\end{document}

答案1

您可以使用

\newcommand{\exercise}[1]{\section*{#1 Exercise}\addcontentsline{toc}{section}{#1 Exercise}}
\newcommand{\working}[1]{\subsection*{#1}\addcontentsline{toc}{subsection}{#1}}

然后使用

\exercise{1.1.1}
\working{a) Drawing}
...

\exercise{1.1.2}
\working{a) Drawing}
...

编辑修改以避免在参数中输入练习。

例如它会变成什么样

在此处输入图片描述

答案2

您可以看看下面的代码及其输出:

\documentclass{report}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{float}

\renewcommand\thesection{\arabic{chapter}.\arabic{section}}
\renewcommand\thesubsection{\alph{subsection})}


\begin{document}
\tableofcontents
\newpage
\chapter{Theorem XX}
\section{Exercise A}
\section{Exercise B}
    \subsection{Exercise B.1}
    \subsection{Exercise B.2}
\section{Exercise C}
\section{Exercise D}
\section{Exercise E}

\chapter{Theorem YY}
\section{Exercise F}
    \subsection{The equation for the affine variety}
    \subsection{The equation for the affine variety}
\section{Exercise G}
\section{Exercise H}
\end{document}

运行代码后的输出: 在此处输入图片描述

如果您仍想尝试 1.1.1 练习,那么您需要在序言中包含 \part 命令,如“\renewcommand\thesection{\arabic{part}.\arabic{chapter}.\arabic{section}}”,并在文档正文中使用 part 命令!

相关内容