サブセクションの段落余白を調整する

サブセクションの段落余白を調整する

単純だが馬鹿げた質問かもしれないが、何日も私を悩ませ続けている。私のコードに基づくと:

\documentclass[a4paper, 11pt]{article} 
\usepackage[margin=2cm]{geometry} % changes the margin
\usepackage{enumitem}
\usepackage{titlesec}
\usepackage{indentfirst}
\usepackage{blindtext}

\renewcommand\thesection{\Alph{section}.}
\renewcommand\thesubsection{\arabic{subsection}.}
\titleformat{\section}
{\normalfont\fontsize{11}{.5em}\bfseries}{\thesection}{.5em}
    {}
\titleformat{\subsection}
{\normalfont\fontsize{11}{.5em}\selectfont}{\thesubsection}{.5em}
    {}
\titlespacing % starred version: first paragraph is not indented
{\subsection} % <command>
{1em} % <left>
{.4em} % <before-sep>
{.3em} % <after-sep>

\begin{document}

\section{Introduction}
\subsection{Subsection One}
    \begin{itemize}  [leftmargin=1.3cm,topsep=0pt,itemsep=0pt,parsep=0pt,partopsep=0pt]
        \item some item here and there
        \item some item here and there
    \end{itemize}

\subsection{Subsection Two}
\setlength\parindent{.85cm} \blindtext

\end{document}

そしてこの写真が生まれました出力結果

私の質問は、段落の余白をサブセクション番号と平行に調整するにはどうすればいいかということです。ないセクション番号は?

答え1

これがあなたが望んでいることですか? すべては\llapコマンドに依存しており、このコマンドは、行の現在のポイントを移動せずに、そのポイントの左側に引数を挿入します。

\documentclass[a4paper, 11pt]{article}
\usepackage[margin=2cm]{geometry} % changes the margin
\usepackage{enumitem}
\usepackage{titlesec}
\usepackage{indentfirst}
\usepackage{blindtext}

\renewcommand\thesection{\Alph{section}.}
\renewcommand\thesubsection{\arabic{subsection}.}
\titleformat{\section}
{\normalfont\fontsize{11}{.5em}\bfseries}{\llap{\thesection\hskip0.67em}}{0em}
    {}
\titleformat{\subsection}
{\normalfont\fontsize{11}{.5em}\selectfont}{\thesubsection}{.5em}
    {}
\titlespacing % starred version: first paragraph is not indented
{\subsection} % <command>
{0em} % <left>
{.4em} % <before-sep>
{.3em} % <after-sep>

\begin{document}

\section{Introduction}
\subsection{Subsection One}
    \begin{itemize} [leftmargin=1.3cm,topsep=0pt,itemsep=0pt,parsep=0pt,partopsep=0pt]
        \item some item here and there
        \item some item here and there
    \end{itemize}

\subsection{Subsection Two}
\setlength\parindent{.85cm} \blindtext

\end{document} 

ここに画像の説明を入力してください

関連情報