我有多个段落,每个段落都有不同的标题。我使用字母(A,B,C,...)
来配合标题,例如:
A. title-1(我想要斜体)
主体
B. 标题-2
主体
等等...我尝试使用枚举如下:
\begin{enumerate}[{\em A.}]
\item{\em title-1}
body text
\item{\em title-2}
body text
\end{enumerate}
但是文本的缩进与此部分之前的其他段落不同。如果有人能提供更好的方法,我将不胜感激。
答案1
实施 Sean 的建议。以下文档使用该titlesec
包来格式化\paragraph
命令,以便
\documentclass{article}
\usepackage{titlesec}
\usepackage{chngcntr} % for easy manipulation of counters
\usepackage{kantlipsum} % for dummy text
\setcounter{secnumdepth}{4} % make sure paragraphs will be numbered
% set up the format for the paragraph
\titleformat{\paragraph}[hang]{\normalfont}{\theparagraph.}{.5em}{\emph}
% make the paragraph counter reset every section
\counterwithin{paragraph}{section}
% define the display of the counter to be upper case alpha
\renewcommand\theparagraph{\Alph{paragraph}}
\begin{document}
\section{A section}
\paragraph{A paragraph}
\kant[1]
\paragraph{Another paragraph}
\kant[2]
\section{Another section}
\paragraph{Another paragraph}
\kant[3]
\end{document}
答案2
你可以用自己的格式定义自己的命令。例如:
\documentclass{article}
\newcounter{paracnt}
\newcommand{\para}[1]{\par\refstepcounter{paracnt}\Alph{paracnt}.
\textit{#1.} }
\begin{document}
\para{Title-1} First
\para{Title-2} Second
\end{document}