Swit
Swit - 认证专家
LaTeX nubility!

注册于 4年前

回答
92
文章
0
关注者
5

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.

  1. 根据手册,你需要设置文档类选项 \documentclass[sectrefs]{svmono}。一个实例代码如下

    \documentclass[sectrefs]{svmono}
    \usepackage{lipsum}
    \begin{document}
    
    \section{aaaaa}    
    \lipsum[1]
    \begin{thebibliography}{99}
      \bibitem{citation} test
    \end{thebibliography}
    
    \end{document}

    1.png

  2. 提问请给完整代码
  3. 代码请用代码块,过长代码请上传文件(别说自己不会传)

我赞同楼上所说,数学环境与文本环境不能混为一谈,如果你觉得频繁地输入 $$ 太麻烦,可以设置用户代码片段。

假设你使用的编辑器为 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}

条目格式搞定了,如下:

\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}

1.png

但是那个分割线我没有思路,看看别人有没有办法吧。

\documentclass{article}
\usepackage{accents}

\newcommand{\simeqdot}{\mathrel{\underaccent{\cdot}{\mathord\simeq}}}

\begin{document}

$a\simeqdot b$

\end{document}

1.png

\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}

1.png

应该没有,因为 SimSun 只有一种字重,想要使用不同字重的宋体,可以考虑思源宋体

3.png
这是 FandolSong,字体就是这个样子的,要是不喜欢就改用其他字体呗。

发布
问题