不会吧,要不用\resizebox
不会吧,要不用\resizebox
把gmcmthesis.cls
中的thesection
里面的那个点去掉就行了,表、公式一下解决了
可以使用
\usepackage{appendix}
\renewcommand{\setthesection}{附录\thechapter.\arabic{section}}
\renewcommand{\setthesubsection}{附录\thesection.\arab{subsection}}
替代
\renewcommand\appendix{\par
\setcounter{section}{0}
\setcounter{subsection}{0}
\gdef\thesection{附录 \Alph{section}}}
然后把chp03.tex
和chp02.tex
中的appendix
改成subappendices
,还有注释掉\appendix
,他会给后面的全部变成附录内容,然后编译就行了,我这里的结果是这样的
我从(https://tex.stackexchange.com/questions/217974/indentation-inside-tcolorbox)看到类似的了,主要是parbox,我tcolorbox
用的不多,是一个很蠢的方法解决的
\documentclass{article}
\usepackage{tcolorbox}
\tcbset{
sharp corners,
boxrule=0pt,
top=0mm,bottom=0pt,left=0pt,right=0pt,
boxsep=0pt,
parbox=false
}
\begin{document}
I can swallow glass without hurting myself. I can swallow glass without hurting myself.
\begin{tcolorbox}
% 空一行
This is a box: I can swallow glass without hurting myself. I can swallow glass without hurting myself. $\displaystyle\frac{d}{y}$
This is a box: I can swallow glass without hurting myself. I can swallow glass without hurting myself. $\displaystyle\frac{d}{y}$
You can swallow glass without hurting yourself. New Bee.
\end{tcolorbox}
I can swallow glass without hurting myself. I can swallow glass without hurting myself.
\end{document}
结果如下
理解了clip
的作用,就写出来了,应该是clip+foreach
而不是foreach+clip
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{patterns}
\begin{document}
\begin{tikzpicture}
\draw[-latex] (0, 0) node[below left]{O}-- (5, 0);
\draw[-latex] (0, 0) -- (0, 5);
\draw (0, 0) -- (4, 0) -- (4, 4) -- (0, 4);
\draw[clip] (1.5, 0) -- (4, 2.5) -- (4, 4) -- (2.5, 4) -- (0, 1.5) -- (0, 0) -- cycle;
\foreach \x in {0, 0.1,...,5}{
\draw (\x, 0) -- (\x, 5);
}
\end{tikzpicture}
\begin{tikzpicture}
\draw[-latex] (0, 0) node[below left]{O}-- (5, 0);
\draw[-latex] (0, 0) -- (0, 5);
\draw (0, 0) -- (4, 0) -- (4, 4) -- (0, 4);
\path[draw, pattern=vertical lines] (1.5, 0) -- (4, 2.5) -- (4, 4) -- (2.5, 4) -- (0, 1.5) -- (0, 0) -- cycle;
\end{tikzpicture}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End:
结果如下
你用个代码块环境包裹你的代码,不然\
没了,复制过来一堆错,实在不行去看看markdown语法先,mwe也不是这样的
ctex宏包有说,scheme设置为plain,默认为chinese
调用bm包重载boldsymbol, LaTeX建议的,然后$\boldsymbol{\Delta}$
问 latex中如何控制插入图片宽度,且同时要求图片是等比例缩放的?