pdf 转为 latex:建议

pdf 转为 latex:建议

我想问你如何在 LaTeX 页面中插入 PDF。我试过了,但是看起来不太好看

在此处输入图片描述

您能建议我一些改进吗?

答案1

如果您打算构建显示函数变化的表格,您可以查看该variations包,它会产生以下输出:

变化表

使用代码

\documentclass{minimal}
\usepackage{variations}
\begin{document}
\def\isq{\frac{1}{\displaystyle\sqrt{2}}}
\begin{minipage}{\linewidth}\centering
    \begin{variations}
     x      & \mI &    &-\isq &    & \isq  &    & \pI  \\
     \filet
     f'     & \ga +    & 0    &  -  &  0   & \dr+      \\
     \filet
     \m{f}  & ~  & \c  & \h{~} & \d & ~    &  \c       \\
     \end{variations}
\end{minipage}  
\end{document}

相关内容