赞
踩
本人在撰写物理和力学实验报告时尝试使用Latex进行编写,但是面对一些公式的问题时,总还是会感受到些许不顺。俗话说:“磨刀不误砍柴工。”我在此记录个人的学习历程,并分享出去,希望能够使更多人受益!
\usepackage{amsmath}
然后如图创建cases环境:
- $$\begin{cases}
- M_{up}+M_{down}=\frac{Fx}{2}\\
- \rho_{up}=\rho_{down}\\
- \frac{1}{\rho_z}=\frac{M_z}{EI_z}\\
- \end{cases}
- $$
成果:
The description of my problem:图片总是不在想要的位置,会跑到文档末尾,即使调整图片宽度也没有用。这是不符合实验报告的要求滴!
我们需要
\usepackage{graphicx} % Required for inserting images
\usepackage{float} % Required for inserting images
这是可以固定位置的代码:
- \begin{figure}[H]
- \centering
- \includegraphics[width=0.5\textwidth]{2023-05-15 142851.png}
- \caption{叠块梁受力分析}
- \end{figure}
而一下用[htbp]确定图片位置时就会出现一些些问题!
- \begin{figure}[htbp]
- \centering
- \includegraphics[width=1.0\textwidth]{2023-05-12 135940.png}
- \caption{原始数据}
- \end{figure}
- \usepackage{graphicx} % Required for inserting images
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。