我想排版数学代码。我的解决方案是
选择它(通过单击右方括号]
)。然后,按照菜单操作File>Save Selection As...
并保存为 PDF 会产生 PDF 输出:
这样我就得到了一个 pdf 文件。然后我将其插入到我的 Latex 文档中。
我的示例代码:
\documentclass[b5paper,UTF8]{article}
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{times}
\begin{document}
\subsection{Iteration Order}
Consider the following matrix :
\begin{figure}[h]
\fbox{\includegraphics[width=.7\textwidth]{IO1.pdf}}
\end{figure}
We can use a Table expression to create a copy of the matrix by iterating over all
of its elements:
\begin{figure}[h]
\fbox{\includegraphics[width=.7\textwidth]{IO2.pdf}}
\end{figure}
This identity operation is uninteresting, but we can transform the array by swapping
the order of the iteration variables. For example, we can swap i and j iterators.
This amounts to swapping the level 1 and level 2 indices and their corresponding
elements:
\end{document}
但是文件却变成了下面这样:
即,the pdf file that inserted staying other position
。
我的问题是:
- 如何使 PDf 文件保持我给出的位置?
- 我可以压缩插入到 Latex 文档中的 PDF 文件的大小吗?
答案1
如果您不想让事物浮动,请不要使用诸如 之类的浮动环境figure
。