方程式块标题问题

方程式块标题问题

有谁知道我怎样才能在自己创建的行之前放置一个小标题,而又不让小标题和行之间留出大量空间?空间在这个页面上至关重要,我需要在这里放置所有这些信息。

以下是我正在使用的软件包:

\usepackage[utf8x]{inputenc}
\usepackage{amsmath,amscd} % For math formatting, commutative diagrams
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{xcolor}
\usepackage{amsmath}
\usepackage{empheq}
\usepackage[theorems,skins]{tcolorbox}
\usepackage{graphicx} 
%\usepackage[table]{xcolor}
\usepackage{booktabs}
\newcommand{\ra}[1]{\renewcommand{\arraystretch}{#1}}
\graphicspath{{images/}}
\hypersetup{
    colorlinks,
    linkcolor={red!50!black},
    citecolor={blue!50!black},
    urlcolor={blue!80!black} }

以下是相关的 Tex 代码:

\begin{figure}[h] \centering \includegraphics[width=115mm]{Lab5Schematic(v2).png} \caption{AC Amplifier Diagram} \end{figure}

\scriptsize Derived equations \normalsize %Equation formatting \begin{center} \line(1,0){480} \end{center} \begin{align*} R_o = \frac{R_c}{\beta} ~~~~   A_v = \beta \frac{R_c}{r_\pi}  ~~~~   R_{in}
= r_\pi || R_1 || R_2  ~~~~  V_c = V_{cc} - (I_c + I_{B2})R_c  ~~~~ I_E = I_S + I_0(t) ~~~~ A_{V,J} \approx g_mR_D \end{align*}

%Other Specific Quantities \begin{center} \begin{tabular}{*5l}     \toprule \emph{Design Specifications} & \emph{} &&&  \\\midrule Specs  & Voltage Gain  &  Input Impedance & Output Impedance  & Power Output (600 ohms) \\  Values  & $\approx$ 100 & 1 M$\Omega$ & 0.44$\Omega$ & 29 mW\\\bottomrule  \hline \end{tabular} \\ \end{center}

%I put the second one as \begin{flushleft} which is why we notice a difference.

\begin{center}
  \begin{tabular}{*5l}
     \toprule
     \emph{Cont...} & \emph{} &&&  \\\midrule
     Specs    & Power Supply Voltage  &  Frequency Response & $\beta_{1=2=3=4}$ & $\beta_{5}$                           \\
     Values  & 17 V & 250-1MHz & 171 & 142\\\bottomrule  \hline
 \end{tabular} \\
\end{center}

这就是我想要的小标题。

提前致谢。

答案1

figure和命令center都会添加空格。为了避免中心空格,请改用{\centering ... }(或\begingroup和 ,\endgroup 而不是括号)。

如果您确实不需要图形浮动,您可以使用 caption包和\captionof而不是figure。然后您可以自己控制间距。

相关内容