\hspace{amount} 等于 \begin{quote} 缩进

\hspace{amount} 等于 \begin{quote} 缩进

缩进量\hspace等于多少\begin{quote}

以下是我正在创建的文档中的序言

\documentclass[fleqn,10pt,pdftex]{article} 
\usepackage[margin=.75in]{geometry}
\usepackage{amsmath,amsthm,amssymb}
\usepackage{array}
\usepackage[shortlabels]{enumerate}
\usepackage{titlesec}
\setcounter{secnumdepth}{4}

答案1

标准quote环境使用\leftmargin

\documentclass{article}

\begin{document}

\begin{quote}
This is a quote
\end{quote}
\hspace*{\leftmargin}And this is aligned

\end{document}

在此处输入图片描述

相关内容