提问于:
浏览数:
2523
## 编译环境
操作系统
* [x ] Windows 7/8/10
* [ ] macOS
* [ ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [x ] TexLive `年份`
* [ ] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
## 我的问题
比如:
1)this time we will do something
different
如何改为:
1)this time we will do something
different?
1 回答
0
由于追问过后会导致代码块功能失效,我删除了原回答。
------------
用列表环境而不是手写列表。
```tex
\documentclass{article}
\usepackage{lipsum}
\usepackage{enumitem}
\newlist{asm}{enumerate}{1}
\setlist[asm,1]{label=\bfseries\slshape Asm.\arabic*}
\begin{document}
\begin{asm}
\item \lipsum[1]
\item \lipsum[2]
\end{asm}
\end{document}
```
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。