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

注册于 5年前

回答
508
文章
354
关注者
255

什么意思?看看入门的部分,字符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

cuo错误提示很明显了,双下标 c_i_j 这算是啥。最后的 j 是谁的下标。

此回答仅提问者可以查看

section 是和内容可以认为是黏连的。你后面的内容如果不能正常断页,比如大公式,表格,容易出现类似的问题。

发布
问题