提问于:
浏览数:
2130
## 编译环境
操作系统
* [x] Windows 7/8/10
* [ ] macOS
* [ ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [x] TexLive `2020`
* [ ] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
## 我的问题
在排版的过程中,想要知道系统当前各 length (如: `\parindent`, `\marginparsep`)的实际大小。应该使用什么方法打印出来?
已知对于 Counter, 可以有这样打印出它的值:
```tex
\newcounter{test} \setcounter{test}{5}
Test counter is \arabic{test}.
```
2 回答
0
```
\usepackage{printlen} %in preamble
\uselengthunit{mm}
\printlength{\textwidth}
\rndprintlength{\textwidth}
```
-
非常感谢! – 五行真人 2020-08-13 16:06 回复
0
更简单地,可以用 `\the` 命令完成。
```tex
\documentclass{article}
\begin{document}
\the\parindent, \the\marginparsep
\end{document}
```
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。