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

注册于 4年前

回答
492
文章
308
关注者
211

我这里编译是右对齐的,不知道你的编译是怎么编译的。
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 是和内容可以认为是黏连的。你后面的内容如果不能正常断页,比如大公式,表格,容易出现类似的问题。

看这里的代码,自己练习下,大致保持一致即可。

\ctexset{
part/pagestyle = empty,
chapter ={
break = {},
name={},
number=\arabic{chapter},
format =\bfseries\heiti\zihao{-3},
beforeskip={-10pt plus .2ex minus -.2ex},
afterskip={5pt plus 3pt minus 3pt}},
section = {
format=\raggedright\bfseries\heiti\zihao{4},numberformat =\rmfamily,
beforeskip={2ex},
afterskip={2ex plus 3pt minus 3pt}
},
subsection = {
format=\raggedright\bfseries\heiti\zihao{-4},numberformat =\rmfamily,
beforeskip={2ex},
afterskip={2ex plus 3pt minus 3pt}
},}

发布
问题