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

注册于 4年前

回答
173
文章
1
关注者
8

\documentclass{article}
\usepackage{unicode-math}
\AtBeginDocument{
  \renewcommand\parallel{para}
}
\begin{document}
  $a \parallel b$
\end{document}

建议你

  • 整理成 MWE 而不是一堆编译不了的东西
  • 有钱的话去淘宝店一对一,没人愿意整理这些代码……

您能不能给 MWE 呢?您能不能看看 MWE 是什么呢?
为什么我复现不了?是不是我的电脑有问题?亦或者是你的代码有问题呢?

\documentclass{article}
\usepackage{mwe,subfig}
\begin{document}
\begin{figure}[htbp]
\centering
\subfloat[a]{
\begin{minipage}{0.4\textwidth}
    \centering
    \includegraphics[width=\textwidth,height=\textwidth]{example-image.pdf}
\end{minipage}
}
\quad
\subfloat[b]{
\begin{minipage}{0.4\textwidth}
    \centering
    \includegraphics[width=\textwidth,height=\textwidth]{example-image.pdf}
\end{minipage}
}
\caption{c}
\end{figure}
\end{document}

已经居中了,只是表格太宽了,导致从右边溢出。

解决方法是缩小表格的宽度/旋转表格。

在公式环境中用text好像和不用text命令没有区别

你没有添加 amsmath 宏包,麻烦你提供 MWE 和先去读 texdoc lshort-zh-cn 好吗

\documentclass{article}
\usepackage{amsmath}
\begin{document}
  \[ \text{ni zai shuo shen me?} \]
\end{document}
我感觉正是因为很多时候即使用text命令,也不能书写出合适的打印体,故产生了texttt命令,克服这些问题!我这样的理解对吗?

错得离谱。
谁跟你说的 \text 能输出打印体?\text 的作用是在数学模式中使用,使得 \text{} 内的文字为正文模式。

为什么你要在数学公式中使用等宽字体?是为了居中?为什么不用 center 环境?

  • 语义上:表示这是一个宏包
  • 显示上:用无衬线字体表示,与周围的衬线体形成对比

\documentclass{ctexbook}
\usepackage[
  UseMSWordMultipleLineSpacing,
  MSWordLineSpacingMultiple=1.62
]{zhlineskip}
\usepackage{zhlipsum}
\begin{document}
  \zhlipsum[1]
\end{document}

谁告诉你这是用 latex 做的?


texdoc tcolorbox 可以做类似的效果

\documentclass[fontset=windows]{ctexart}
\usepackage{tcolorbox}
\tcbuselibrary{skins}
\begin{document}
\begin{tcolorbox}[enhanced,title=\bfseries 全国一级建造师执业资格考试,
attach boxed title to top center=
{yshift=-\tcboxedtitleheight/2},
boxed title style={size=title}]
  \centering\bfseries 建设工程经济
\end{tcolorbox}
\end{document}

不要用 latex 做这种事,不适合,请用 word

发布
问题