缩进枚举

缩进枚举

我想缩进我的枚举列表。我在网上找到了一些建议,但我的枚举比网上的更先进(我认为)。我如何将我的列表缩进 0.5 厘米?这是我的报告的片段。

\documentclass[paper=a4, fontsize=10pt, DIV=10]{scrartcl} % A4 paper and 11pt font size
\usepackage[T1]{fontenc} 
\usepackage[utf8]{inputenc}
\usepackage{fourier} % Use the Adobe Utopia font for the document - comment this line to return to the LaTeX default
\usepackage[english, swedish]{babel}
\usepackage{amsmath,amsfonts,amsthm}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{array}
\usepackage{verbatim}
\usepackage{tikz}
\usepackage{changepage} 
\usepackage{enumitem}
\usepackage{adjustbox}
\usepackage[justification=centering]{caption}
\usetikzlibrary{decorations.pathreplacing}
\usetikzlibrary{calc}
\usepackage{sectsty} % Allows customizing section commands
\allsectionsfont{\centering \normalfont\scshape} % Make all sections centered, the default font and small caps

\usepackage{fancyhdr} % Custom headers and footers
\pagestyle{fancyplain} % Makes all pages in the document conform to the custom headers and footers
\fancyhead{} % No page header - if you want one, create it in the same way as the footers below
\fancyfoot[L]{} % Empty left footer
\fancyfoot[C]{} % Empty center footer
\fancyfoot[R]{\thepage} % Page numbering for right footer
\renewcommand{\headrulewidth}{0pt} % Remove header underlines
\renewcommand{\footrulewidth}{0pt} % Remove footer underlines
\setlength{\headheight}{13.6pt} % Customize the height of the header

\numberwithin{equation}{section} % Number equations within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4)
\numberwithin{figure}{section} % Number figures within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4)
\numberwithin{table}{section} % Number tables within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4)

\setlength\parindent{0pt} % Removes all indentation from paragraphs - comment this line for an assignment with lots of text

\begin{document}

This is some text,
\begin{enumerate} [label=Step \arabic{enumi}.,ref=Step \arabic{enumi},leftmargin=*] 
\item 1 step
\item 2 step
\item 3 step
\end{enumerate}
And some more text.
\end{document}

答案1

像这样?enumitem定义一个labelindent键。

除了评论之外fourier,您应该使用 加载 的erewhon克隆utopia,它具有各种粗细和形状的真正小型大写字母、上等数字和下等数字(对脚注有用)以及一些其他功能。

\documentclass[paper=a4, fontsize=10pt, DIV=10]{scrartcl} % A4 paper and 11pt font size
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{fourier} % Use the Adobe Utopia font for the document - comment this line to return to the LaTeX default
\usepackage[english, swedish]{babel}
\usepackage{amsmath,amsfonts,amsthm}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{array}
\usepackage{verbatim}
\usepackage{tikz}
\usepackage{changepage}
\usepackage{enumitem}
\usepackage{adjustbox}
\usepackage[justification=centering]{caption}
\usetikzlibrary{decorations.pathreplacing}
\usetikzlibrary{calc}
\usepackage{sectsty} % Allows customizing section commands
\allsectionsfont{\centering \normalfont\scshape} % Make all sections centered, the default font and small caps

\usepackage{fancyhdr} % Custom headers and footers
\pagestyle{fancyplain} % Makes all pages in the document conform to the custom headers and footers
\fancyhead{} % No page header - if you want one, create it in the same way as the footers below
\fancyfoot[L]{} % Empty left footer
\fancyfoot[C]{} % Empty center footer
\fancyfoot[R]{\thepage} % Page numbering for right footer
\renewcommand{\headrulewidth}{0pt} % Remove header underlines
\renewcommand{\footrulewidth}{0pt} % Remove footer underlines
\setlength{\headheight}{13.6pt} % Customize the height of the header

\numberwithin{equation}{section} % Number equations within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4)
\numberwithin{figure}{section} % Number figures within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4)
\numberwithin{table}{section} % Number tables within sections (i.e. 1.1, 1.2, 2.1, 2.2 instead of 1, 2, 3, 4)

\setlength\parindent{0pt} % Removes all indentation from paragraphs - comment this line for an assignment with lots of text
\usepackage{showframe}
\renewcommand\ShowFrameLinethickness{0.2pt}

\begin{document}

This is some text,
\begin{enumerate} [label=Step \arabic*.,ref=Step \arabic*, leftmargin=*, labelindent =0.5cm]
\item 1 step step step step step step step step step step step step step step step step step step step step step step step step step step
\item 2 step
\item 3 step
\end{enumerate}
And some more text.

\end{document} 

在此处输入图片描述

相关内容