如果您有什么不同意见,您是对的,我是错的。
如果您有什么不同意见,您是对的,我是错的。
这家伙很懒,什么也没写!

注册于 4年前

回答
173
文章
1
关注者
8

给了警告啊

Font shape `TU/phv/m/n' undefined
(Font)    using `TU/lmr/m/n' instead.

具体的「为什么」,看看 https://tex.stackexchange.com/a/56423/209043

你就不能打印出来量?或者加上 showframe 参数?

\ctexset{today=old}


当然你的问题不能这么解决,你不给 MWE,那我只能建议你去看看 fduthesis 的源码,用 l3 实现「输入一个日期,输出中文+西文日期」,这个并不难。

\DeclareExpandableDocumentCommand \engdate { +m } {
  \__english_date:www #1 \q_stop
}
\cs_new:Npn \__english_date:www #1/#2/#3 \q_stop {
  \ifcase #2 \or January~\or February~\or March~\or %
  April~\or May ~\or June~\or July~\or August~\or September~\or October~\or November~\or %
  December~\fi#1
}
% 输出
\exp_args:No \engdate{\l__gdut_info_date_tl}

没有,无解。

过时的东西老老实实的过时,要用新的东西就老实用最新的发行版。

你解决不了依赖问题,那就那就老实二选一。

texdoc ctexfontset 指定 CTEX 宏集加载的字库。

自己写一份配置文件,命名为 ctex-fontset-⟨name⟩.def,然后直接调用就好了。

里面调用的字体你没有,所以编译不了。

MWE 呢?

模糊问模糊答,用 tocloft 宏包设置 \cftbeforechapskip 之类的参数。


你还是没有给 MWE。texdoc tocloft, sec 2.3 Typesetting the entries

\documentclass{book}
\usepackage[titles]{tocloft}
\begin{document}
  \begingroup
  \renewcommand*{\addvspace}[1]{}
  \listoffigures
  \endgroup
  \chapter{test}
  \begin{figure}
    \caption{test}
  \end{figure}
  
  \begin{figure}
    \caption{test}
  \end{figure}
  \chapter{test}
  \begin{figure}
    \caption{test}
  \end{figure}
  
  \begin{figure}
    \caption{test}
  \end{figure}
\end{document}

MWE 呢?第一个问题可以用 \ctexset 修改


但凡给 MWE,这问题早就解决了

\documentclass{ctexbook}
\ctexset{chapter/break={}}
\begin{document}
  \chapter{test}
  \chapter{test}
\end{document}

盒子+修改计数器

\documentclass{article}
\usepackage{subfig,mwe}
\begin{document}
  \begin{figure}
    \centering
    \begin{minipage}{0.6\textwidth}
      \subfloat[title a]{\includegraphics[width=.5\textwidth]{example-image-a.pdf}}%
      \subfloat[title b]{\includegraphics[width=.5\textwidth]{example-image-a.pdf}}\\
      \subfloat[title c]{\includegraphics[width=.5\textwidth]{example-image-a.pdf}}%
      \subfloat[title d]{\includegraphics[width=.5\textwidth]{example-image-a.pdf}}
    \end{minipage}%
    \begin{minipage}{0.4\textwidth}
      \subfloat[title e]{\includegraphics[width=.5\textwidth]{example-image-10x16.pdf}}
    \end{minipage}
  \end{figure}

  \begin{figure}
    \centering
    \begin{minipage}{0.6\textwidth}
      \subfloat[title a]{\includegraphics[width=.5\textwidth]{example-image-a.pdf}}%
      \subfloat[title b]{\includegraphics[width=.5\textwidth]{example-image-a.pdf}}\\
      \addtocounter{subfigure}{1}
      \subfloat[title c]{\label{fig:1}\includegraphics[width=.5\textwidth]{example-image-a.pdf}}%
      \subfloat[title d]{\includegraphics[width=.5\textwidth]{example-image-a.pdf}}
    \end{minipage}%
    \begin{minipage}{0.4\textwidth}
      \addtocounter{subfigure}{-3}
      \subfloat[title e]{\label{fig:2}\includegraphics[width=.5\textwidth]{example-image-10x16.pdf}}
    \end{minipage}
  \end{figure}

  \ref{fig:1}\ref{fig:2}
\end{document}

\documentclass{ctexart}
\begin{document}
  \section{引言}
\end{document}

tabularx 等宽 + subfig\ContinuedFloat 功能

\documentclass{article}
\usepackage{tabularx,subfig}
\begin{document}
  \begin{table}
    \centering
    \caption{test}
    test test
    \begin{tabularx}{\textwidth}{c}
      test
    \end{tabularx}
  \end{table}
  \clearpage
  \begin{table}
    \centering
    \ContinuedFloat
    \caption{test}
    test test
    \begin{tabularx}{\textwidth}{c}
      test
    \end{tabularx}
  \end{table}
\end{document}

缺楷体

https://github.com/latexstudio/CUMCMThesis/blob/1747d43ec565e910b26133a54589e778e7f9c35d/cumcmthesis.cls#L157-L160 改成

\setCJKfamilyfont{kai}[BoldFont=Kaiti SC Bold]{Kaiti SC}
\newcommand*{\kai}{\CJKfamily{kai}}
\setCJKfamilyfont{song}[BoldFont=Songti SC Bold]{Songti SC Light}
\newcommand*{\song}{\CJKfamily{song}}

关注语义而不是样式,需求是无限的,要把精力放更需要的地方

我还说你的微分算子后面没有间距呢

发布
问题