编号和参考段落

编号和参考段落

对于“法律文件”,您通常希望列举每个段落并在文档的其他地方引用它们。此列举应贯穿整个文档并具有引用的可能性。

所以我想要这样的东西:

\p{mylabel} Lorem ipsum dolor sit amet...

Another without label \c{mylabel}.

其内容为(空白处有数字):

1  Lorem ipsum dolor sit amet...

2  Another without label (cf. mn. 1).

到目前为止,PDF 中是否可以点击并不重要。

有没有适合这种风格的包装或款式?太棒了!提前谢谢!

答案1

\paragraph那么简单地使用一个空的切片命令怎么样?

\documentclass{article}

\setcounter{secnumdepth}{4}
\renewcommand{\theparagraph}{\arabic{paragraph}}

\begin{document}
\paragraph{}\label{mylabel} Lorem ipsum dolor sit amet...
\paragraph{} Another without label (cf. mn. \ref{mylabel}).
\end{document} 

在此处输入图片描述

如果你不喜欢这种间距,可以\titlespacing使用titlesec包裹?

\documentclass{article}
\usepackage{titlesec}

\setcounter{secnumdepth}{4}
\renewcommand{\theparagraph}{\arabic{paragraph}}
\titlespacing*{\paragraph}{0pt}{1em}{1em}

\begin{document}
\paragraph{}\label{mylabel} Lorem ipsum dolor sit amet...
\paragraph{} Another without label (cf. mn. \ref{mylabel}).
\end{document} 

在此处输入图片描述

此外,您可以使用命令调整数字\titleformat

\documentclass{article}
\usepackage{titlesec}

\setcounter{secnumdepth}{4}
\renewcommand{\theparagraph}{\arabic{paragraph}}
\titlespacing*{\paragraph}{0pt}{1em}{1em}
\titleformat{\paragraph}[runin]{\normalfont\normalsize}{\theparagraph}{1em}{}

\begin{document}
\paragraph{}\label{mylabel} Lorem ipsum dolor sit amet...
\paragraph{} Another without label (cf. mn. \ref{mylabel}).
\end{document}

在此处输入图片描述

相关内容