改变开始中心的宽度

改变开始中心的宽度

在此处输入图片描述

我正在写我的硕士论文,想知道如何像这样为每个部分写介绍。我已经看过其他帖子,他们讨论了如何改变“开始中心”部分的宽度,但我自己无法使用任何这些技巧。如果你们知道一些更简单的方法,请告诉我。谢谢。

答案1

amsart我可以通过使用文档类、使用\section\subsection指令以及使用环境来重现您发布的屏幕截图中使用的布局quotationquotation环境会增加左右边距的宽度,或者换句话说,减少的值\textwidth

我绝对不会使用center环境,因为您不想将每条线都置于中心位置,对吗?

在此处输入图片描述

\documentclass{amsart}
\usepackage{lipsum} % filler text

\begin{document}
\setcounter{section}{8} % just for this example

\section{Intersection theory}

\begin{quotation}
\slshape % Employ slanted-roman font shape. If you prefer 
         % "regular" italics, use either '\itshape'  or '\em'.

\lipsum[2] % first para of filler text

\lipsum[2] % second para of filler text
\end{quotation}


\subsection{Chow groups} 

Having discussed the basics of scheme theory, we will now start 
with the foundations of intersection theory. The idea of 
intersection theory is the same as that of homology in \dots 
\end{document} 

答案2

我想你可以试试adjustbox

\documentclass{article}
\usepackage{adjustbox}
\usepackage{lipsum}

\begin{document}

\begin{adjustbox}{minipage=.7\textwidth,margin=0pt \smallskipamount,center}
    \itshape\lipsum[1]
\end{adjustbox}
\vspace{2em}

\lipsum[2]

\end{document}

此答案改编自这里

结果

相关内容