LaTeXer
LaTeXer
这家伙很懒,什么也没写!

注册于 6年前

回答
511
文章
361
关注者
260

第一个的空格嘛,比较麻烦,xelatex 这方面的处理还没有那么完善了,如果想去掉加 \mbox{} 第二个,引用这样用比较奇怪,不推荐。

什么意思?看看入门的部分,字符unicode这些支持 找对应宏包。

我这里编译是右对齐的,不知道你的编译是怎么编译的。
image.png

textpos 宏包,picture 绘图,或者重定义 title 的样式等等。

这个字体,官网去买,最好换成 newtxmath 基本差不多。

最好是提供全文代码来看,这样看不出来。

我觉得如果用 task 宏包套用也没有影响吧。

浮动起来就好了,不过浮动起来,就不好控制了。

这样的用法就比较奇怪了,最好使用 appendix 宏包来实现,看看这里:https://tex.stackexchange.com/questions/120716/appendix-after-each-chapter

\documentclass{book}
\usepackage{appendix}
\usepackage{chngcntr}
\usepackage{etoolbox}
\usepackage{lipsum}

\AtBeginEnvironment{subappendices}{%
\chapter*{Appendix}
\addcontentsline{toc}{chapter}{Appendices}
\counterwithin{figure}{section}
\counterwithin{table}{section}
}

\begin{document}

\tableofcontents
\chapter{Test Chapter One}
\section{A regular section}
\section{Another regular section}
\begin{subappendices}
\section{Some title for an appendix}
\lipsum[4]
\section{Some title for an appendix}
\lipsum[4]
\end{subappendices}
\chapter{Test Chapter Two}
\section{A regular section}
\section{Another regular section}
\begin{subappendices}
\section{Some title for an appendix}
\lipsum[4]
\section{Some title for an appendix}
\lipsum[4]
\section{Some title for an appendix}
\lipsum[4]
\end{subappendices}

\end{document}

image.png

发布
问题