Anpassen des Absatzrands im Unterabschnitt

Anpassen des Absatzrands im Unterabschnitt

Es mag eine einfache, aber dumme Frage sein, aber sie beschäftigt mich schon seit Tagen. Basierend auf meinem Code:

\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}

Und dabei ist dieses Bild entstandenAusgabeergebnis

Meine Frage ist, wie kann ich den Absatzrand parallel zur Unterabschnittsnummer anpassen? undnichtdie Abschnittsnummer?

Antwort1

Ist das, was Sie wollen? Es hängt alles vom \llapBefehl ab, der sein Argument links vom aktuellen Punkt in der Zeile einfügt, ohne diesen zu verschieben.

\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} 

Bildbeschreibung hier eingeben

verwandte Informationen