列表定位

列表定位

存在类似列表定位的东西。我的意思是,例如图形或表格使用的 [h] 之类的东西。我想将其添加到

\mylisting[label=p]{p}{p.txt}

我有一个

\documentclass[12pt,a4paper]{report}
\usepackage[most]{tcolorbox}
\newtcbinputlisting[auto counter,list inside=lol,list type={lstlisting}]{\mylisting}[3][]{%
  listing file={#3},
  title=Listing,
  colback=white,
  colframe=gray!75!black,
  fonttitle=\bfseries,
  listing only,
  breakable,
  listing options={basicstyle=\scriptsize\ttfamily},
  title={Soubor \thetcbcounter: #2},
  #1
}
\begin{document}
\chapter{4}

    \section{S}
       \mylisting[label=p]{p}{p.txt}
\end{document}

页码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81

而且p.txt太长,无法像章节和节一样放在同一页,所以放在第二页。如何将其设置为从节下方开始?谢谢

相关内容