创建您自己的标题

创建您自己的标题

我想创建像章节一样的标题。命令应该是\Apendiks{},然后它应该像我写的一样执行\chapters{The first Chapter}

\titlespacing*{\chapter}{0cm}{0cm}{2pt}%pbk
\titleformat{\chapter}[display]{\Huge\filleft\scshape}{ 
    \normalfont\bf\fontfamily{put}\fontseries{b}\fontsize{95pt}{0pt}
    \selectfont\thesection}{20pt}{}[\titlerule\vspace{2ex}\filright\vspace{2ex}]

我仍然希望有机会使用该\chapter命令,因此像这样的解决方案:\newcommand{\Appendiks}{\chapter}是不够的。

在此处输入图片描述

这是我迄今为止所做的事情:

\documentclass[10pt,a4paper,oneside]{article}
\usepackage{titlesec}
\newcommand{\Appendiks}{\subsubsection}

\titlespacing*{\subsubsection}{0cm}{0cm}{2pt}%pbk
\titleformat{\subsubsection}[display]{\Huge\filleft\scshape}{ \normalfont\bf\fontfamily{put}\fontseries{b}\fontsize{95pt}{0pt}\selectfont\thesection}{20pt}{}[\titlerule\vspace{2ex}\filright\vspace{2ex}]
\begin{document}
\Appendiks{The first Appendix}
\end{document} 

但我不认为这是最好的灵魂\Appendiks定义\subsubsection

还有更好的建议吗?

答案1

听起来你想要一个\chapter可以与\appendix命令互换使用的命令。这当然是可行的,尽管很难理解为什么一旦你使用了附录,你仍然想要一个普通的章节。 book.cls定义了\chapter命令;但是由于你正在使用article\chapter所以无论如何都是未定义的。然后在你的评论中你说你想要一个附录样式的\section,这在中更有意义article

无论如何,您想要什么,titlesec都可以提供(假设我正确理解了您想要什么):

\documentclass{article}
\usepackage{titlesec}
\titleclass{\Appendiks}{straight}[\section]
\newcounter{Appendiks}
\titleformat{\Appendiks}[display]{\Huge\filleft\scshape}{ \normalfont\bf\fontfamily{put}\fontseries{b}\fontsize{95pt}{0pt}\selectfont\thesection}{20pt}{}[\titlerule\vspace{2ex}\filright\vspace{2ex}]
\titlespacing*{\Appendiks}{0cm}{0cm}{2pt}
\begin{document}
\section{The first Section}
\Appendiks{The first Appendix}
\section{The second Section}
\Appendiks{The second Appendix}
\end{document}

这将产生以下内容:

\Appendiks 命令按要求

我建议您改变样式(也许是按字母顺序编号,这是附录的传统),以便让您的读者清楚地知道这些是附录,因为这听起来像是您想将它们散布在一起,而不是像名称所暗示的那样将它们全部放在最后。

相关内容