latex使用 公式在线编辑

又是一年论文时,又要头疼的

Latex 公式在线编辑软件:

http://www.wiris.com/editor/demo/en/developers

latex使用 公式在线编辑
非常好用!强推

Latex 三级目录问题:

\section{一级标题}
\subsection{二级标题}
\subsubsection{三级标题}

Latex 表格中插入图片

最前面加入:
\usepackage{graphicx}
表格中:
\begin{minipage}{0.12\textwidth} %% {0.18\textwidth} \centerline{\includegraphics[width=1\textwidth]{./pic/small.png}}
\centerline{(b)}
\end{minipage}

插入一个图片

\begin{figure*}[hb]
\centering
\includegraphics[scale=0.4]{img1.jpg}
\caption{hello}
\label{fig_framework}
\end{figure*}

Latex 公式换行

\begin{equation}
\begin{aligned}

\end{aligned}
\end{equation}
公式中,\ 表示换行, &表示对齐。
每个等号前有个&,换行处有个\

Latex 表格的缩放

如果表格过于庞大,则可以通过统一缩放的方式来把表格放入到文章当中。对应的代码为

\resizebox{h-size}{v-size}{
\begin{tabular}

\end{tabular}
}

其中h-size和v-size为缩放后目标表格的水平大小、纵向大小,可以填写10pt、50mm等数值。表格中的字体等会想图片一样的拉伸。所以调整的时候要注意字体会不会形状失真。

reference

这次写论文发现 引用文章时有三种方式:
1 百度学术
latex使用 公式在线编辑

  1. ieee引用
    网址: https://ieeexplore.ieee.org/
    latex使用 公式在线编辑
  2. arxiv
    在图中红圈的位置可以检索到
    但是不是每一篇文章都有。
    latex使用 公式在线编辑