我正在使用 wrap fig 并想在文本中插入换行符。但是,\vspace
或\linebreak
或\break
不会导致任何变化。
这是我的 LaTeX 代码的示例
\begin{figwindow}[0,r,%
{\includegraphics[height=2in]{PascoSynthesizer.eps}},%
{\label{fig:label} Caption
}]
\textbf{Electronic Output}:\\
A sum of nine harmonics of sine waves with a\\ fundamental of 440 Hz plus a second output of the fundamental. \\
\vspace{0.3in}
\textbf{Controls:}\\
\end{figwindow}
答案1
picinpar
是一个相当古老的包,具有一些限制,但是对于这种插入,有一个较新的包,wrapfig
您可以通过添加带有支柱的空白行来强制留出空格(如果您需要更精细的控制,则可以使用指定高度的规则)。
\documentclass[a4paper]{article}
\usepackage{picinpar}
\usepackage[demo]{graphicx}
\begin{document}
\begin{figwindow}[0,r,%
{\includegraphics[height=2in]{PascoSynthesizer.eps}},%
{\label{fig:label} Caption
}]
\noindent
\textbf{Electronic Output}:\\
A sum of nine harmonics of sine waves with a\\
fundamental of 440 Hz plus a second output of the fundamental.\\
\strut\\
\textbf{Controls:}
\end{figwindow}
\end{document}
答案2
我想你应该检查一下你的序言。如果我使用:
\documentclass[a4paper]{article}
\usepackage{picinpar}
\usepackage{graphicx}
然后您的代码,一切都运行良好,正如您从下面的屏幕截图中看到的那样(或者这不是所需的输出?):