当前位置:  开发笔记 > 编程语言 > 正文

如何更改LaTeX中的段落格式

如何解决《如何更改LaTeX中的段落格式》经验,为你挑选了1个好方法。

这源于LaTeX中的一个数字段落怎么样?我今天早些时候问过:

运行Brent.Longborough建议如何编写文档中的段落:

\setcounter{secnumdepth}{5}
...
\paragraph{If we want to}
\paragraph{do something}

这导致LaTeX产生类似的东西:

0.0.0.1 If we want to 
0.0.0.2 do something

如何改变\段落{}的编号方案以产生如下内容:

1. If we want to
2. do something

或者

A. If we want to
B. do something

谢谢.



1> Will Roberts..:

要更改引用段落时引用的数字,您需要更改\theparagraph.这是一个例子:

\documentclass[12pt]{article}
\setcounter{secnumdepth}{5}
\renewcommand\theparagraph{\roman{paragraph}}
\usepackage{lipsum}
\begin{document}
\paragraph{foo} \lipsum[1]
\paragraph{bar} \lipsum[2]
\end{document}

相反的\roman,你也可以使用\Roman,\arabic,\alph,\Alph.虽然如果你有很多段落,你会想要使用alphalph包并使用\ alphalph来获得超过26个段落.

请注意,\paragraph为"段落标题"采用参数.如果你从来不想这样,你可能想要定义自己的命令来简化事情:

\newcommand\PARA{\paragraph{}}

你也可能想要删除段落编号为"内"部分的方式; 即,它们从每个新部分的"1"重置.你可以用类似的东西解决这个问题

\usepackage{remreset}
\makeatletter
\@removefromreset{paragraph}{section}
\makeatother

推荐阅读
个性2402852463
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有