サブセクションを付録の段落のようにする

サブセクションを付録の段落のようにする

サブセクションを段落のように見せたいのですが、番号付けはサブセクションと同じにする必要があります。説明のために画像を示します。

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

したがって、番号付けの他に通常のテキストがあり、参照もサポートする必要があります。段落コマンドは、番号付けレベルが B.1、B.2 よりも深く、参照をサポートしていないため、そのためには機能しません。(\paragraph{B.1}セクション コマンドの代わりに を使用して、「そのような」画像を作成しました)。

これが私の現在のコードです。

\documentclass[a4paper]{article}

\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[page]{appendix}

\begin{document}

\section{First chapter}

\begin{appendices}
\section{Some Section}

\section{Exercises}
\section{} Describe what an elephant looks like.
\label{ex1}

\end{appendices}

\end{document}

答え1

環境に入るとき\titleformatに使用します :titlesecappendices

\documentclass[a4paper, english]{article}

\usepackage{babel}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\usepackage[page]{appendix}

\begin{document}

\section{First chapter}
\subsection{A subsection}
Some text. Some more text. Some more text. Some more text. Some more text

\begin{appendices}
\titleformat{\subsection}[runin]{\large\bfseries}{\thesubsection}{1em}{}

\section{Some Section}
\section{Exercises}
\subsection{}Describe what an elephant looks like.
\label{ex1}

\end{appendices}

\end{document} 

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

関連情報