If you are using mac, just type
open `kpsewhich book.cls`
in the terminal to open the source file book.cls
and you can search for any code snippets as you like.
If you are using mac, just type
open `kpsewhich book.cls`
in the terminal to open the source file book.cls
and you can search for any code snippets as you like.
给 MWE
根据手册,你需要设置文档类选项 \documentclass[sectrefs]{svmono}
。一个实例代码如下
\documentclass[sectrefs]{svmono}
\usepackage{lipsum}
\begin{document}
\section{aaaaa}
\lipsum[1]
\begin{thebibliography}{99}
\bibitem{citation} test
\end{thebibliography}
\end{document}
我赞同楼上所说,数学环境与文本环境不能混为一谈,如果你觉得频繁地输入 $$
太麻烦,可以设置用户代码片段。
假设你使用的编辑器为 VS Code,可以参考我的笔记来设置代码片段。
直接在 \chapter*{second}
下一行中添加 \markboth{second}{}
\documentclass{book}
\usepackage{amsthm}
\counterwithin{equation}{section}
\newtheorem{lemma}[equation]{Lemma}
\begin{document}
\chapter{AAAAA}
\section{aaaaa}
\begin{equation}
a + b = c.
\end{equation}
\begin{lemma}
A lemma.
\end{lemma}
\end{document}
直接用 enumerate 环境不就行
条目格式搞定了,如下:
\documentclass{ctexrep}
\usepackage{tocloft}
\usepackage{fmtcount}
\renewcommand{\cftdot}{}
\renewcommand{\thesection}{第\chinese{section}节}
\setlength{\cftchapnumwidth}{4em}
\setlength{\cftsecindent}{\cftchapnumwidth}
\renewcommand{\cftsecnumwidth}{4em}
\renewcommand{\cftchappagefont}{\itshape}
\renewcommand{\cftsecpagefont}{\itshape}
\makeatletter
\renewcommand{\cftchapfillnum}[1]{%
{\cftchapleader}\nobreak
\makebox[\@pnumwidth][\cftpnumalign]{\cftchappagefont \padzeroes[3]{\decimalnum{#1}}}\cftchapafterpnum\par
}
\renewcommand{\cftsecfillnum}[1]{%
{\cftsecleader}\nobreak
\makebox[\@pnumwidth][\cftpnumalign]{\cftsecpagefont \padzeroes[3]{\decimalnum{#1}}}\cftsecafterpnum\par
}
\makeatother
\usepackage{zhlipsum}
\begin{document}
\tableofcontents
\chapter{双相及精准医学障碍}
\section{双相障碍概念}
\zhlipsum[1-2]
\section{精准医学概念}
\zhlipsum[3-4]
\chapter{双相障碍的临床表现}
\section{临床表现及分型}
\zhlipsum[5-6]
\section{抑郁发作}
\zhlipsum[7-8]
\section{躁狂/轻躁狂发作}
\zhlipsum[9]
\end{document}
但是那个分割线我没有思路,看看别人有没有办法吧。
\documentclass{article}
\usepackage{accents}
\newcommand{\simeqdot}{\mathrel{\underaccent{\cdot}{\mathord\simeq}}}
\begin{document}
$a\simeqdot b$
\end{document}
给完整代码
\documentclass{article}
\DeclareSymbolFont{lettersA}{U}{txmia}{m}{it}
\SetSymbolFont{lettersA}{bold}{U}{txmia}{bx}{it}
\DeclareMathSymbol{\piup}{\mathord}{lettersA}{25}
\begin{document}
\[\hbar = \frac{h}{2\piup}\]
\end{document}
应该没有,因为 SimSun 只有一种字重,想要使用不同字重的宋体,可以考虑思源宋体。
这是 FandolSong,字体就是这个样子的,要是不喜欢就改用其他字体呗。
问 如何查看文档类内置命令的源代码,如想查询book文档类里\mainmatter的代码,应该怎么做?