我正在尝试用Latex (MiKTex)创建一个文档,使用线性代数的Texmaker。我在页面中写了一些文本,现在想调整文本底部的图片,但图片自动向上显示文本。
这是此Image中代码的输出
代码如下:
\begin{Large}
\justify
LaTeX is a software system for document preparation. When writing, the writer uses plain text as opposed to the formatted text found in "What You See Is What You Get" word processors like Microsoft Word, LibreOffice Writer and Apple Pages.\\
\\LaTeX is widely used in academia for the communication and publication of scientific documents in many fields, including mathematics, statistics, computer science, engineering, physics, economics, linguistics, quantitative psychology, philosophy, and political science. It also has a prominent role in the preparation and publication of books and articles that contain complex multilingual materials, such as Sanskrit and Greek. LaTeX uses the TeX typesetting program for formatting its output, and is itself written in the TeX macro language.\\
\\To download and install Latex we have to download two software, one is MiKTeX and second one is Texmaker, in first steps we will download and install MiKTex and then we will install Texmaker.
\end{Large}
\begin{flushleft}
\begin{Large}
\textbf{Step 1:}\\
\end{Large}
\end{flushleft}
\begin{Large}
\begin{flushleft}
First you need to go to Google search bar and search MiKTex Download.
\end{flushleft}
\end{Large}
\begin{figure}
\centering
\includegraphics[scale=0.7]{Mik1.jpg}
\end{figure}
发布于 2021-01-07 19:58:32
您应该在前导码中添加浮动包(\usepackage{ float }),然后将浮动说明符添加到您的图中(\begin{ figure }b)
基本说明符:h-将浮点数放在这里,即与源文本中的浮点数大致相同(但不完全在原点);t-将其放置在页面顶部;b-将其放置在页面底部。
https://stackoverflow.com/questions/65595149
复制相似问题