将案例定义的函数置于页面中间并将图形(图表)置于中间

将案例定义的函数置于页面中间并将图形(图表)置于中间

我有两个关于居中的问题:

  1. 我正在尝试将一个案例定义的函数置于中心,例如定义如下:

    $f_i(z)=$  \begin{cases}\frac{1}{t}dist (z,\gamma_i ) &\text {if} z\in  A_i(t)\\ 
                                     1 &\text{if} z \in A_i \backslash A_i(t)\\  
                                     0 & \text{if} z \in  \tilde{M} \backslash A_i\\
              \end{cases}
    

    我如何将其置于中心?

  2. 假设我插入的图形名称是“egnpic”,并且我使用以下命令将其插入到我的 LaTeX 文档中:

        \hspace{11 mm} \includegraphics[height=100mm]{egnpic}\Apparently I am not seeing any effect of using `\hspace{11 mm}`, the relative position of the figure {egnpic} remains the same when I use `\hspace{5 mm}` and when I use `\hspace{11 mm}`.
    

答案1

对于第一个问题:您应该将方程式括在equation*align*环境中(假设您不想对它们进行编号)。如果需要数字,请删除*

第二个问题:您可以使用center环境。请记住,行开头的\hspace{<len>}是无效的。您应该使用\hspace*{<len>}

但是,如果您正在使用figure环境,最好使用\centering环境center,如下面的代码所示。

\documentclass{article}
\usepackage{mathtools}
\usepackage{graphicx}
\usepackage{showframe} %% Remove this, just for showing the centering effect

\begin{document}
\begin{align*}
f_i(z)=  \begin{cases}\frac{1}{t}\ \mathrm{dist}(z,\gamma_i ) &\text {if } z\in  A_i(t)\\
                                 1 &\text{if } z \in A_i \backslash A_i(t)\\
                                 0 & \text{if } z \in  \tilde{M} \backslash A_i\\
          \end{cases}
\end{align*}

\begin{center}
\includegraphics[width=100mm]{example-image-a} 
\end{center}

\begin{figure}[htb]
\centering
\includegraphics[width=100mm]{example-image-a}
\caption[short caption]{Long cation}
\end{figure}
\end{document}

在此处输入图片描述

请注意,我在命令中使用了width(而不是height) 。\includegraphics

相关内容