Newer
Older
\chapter{图片、表格与代码}
\section{图片示例}
\begin{figure}[htbp]
\includegraphics[width=0.5\textwidth]{njuname}
\caption{南京大学名称}
\label{fig:njuname}
\end{figure}
你可以使用\lstinline|figure|环境插入图片,如\cref{fig:njuname},代码如下:
\begin{lstlisting}[language=TeX]
\begin{figure}
\includegraphics[width=0.5\textwidth]{njuname}
\caption{南京大学名称}
\end{figure}
\end{lstlisting}
\subsection{文字环绕图像}
% wrapfigure后面不能有空行
\begin{wrapfigure}{r}{0cm}
% \label{fig:njulogo}
\includegraphics[width=.3\textwidth]{njulogo}
\caption{环绕图像测试}
\end{wrapfigure}
\zhlipsum[3][name=xiangyu]
\section{表格示例}
\begin{table}[htbp]
\caption{经过测试的环境}
\label{tab:mytab}
\begin{tabular}{ccc}
\toprule
OS & Tex & 测试情况 \\
\midrule
Windows 10 & TexLive 2021 & √ \\
Windows 10 & MikTex & √ \\
Windows 10 & TexLive 2020 & ×\footnote{cleveref在引用章节时不能正常工作} \\
Ubuntu 20.04 & TexLive 2021 & √ \\
南大Tex & Overleaf & √ \\
\bottomrule
\end{tabular}
\end{table}
你可以使用\lstinline|table|环境插入标准三线表,如\cref{tab:mytab}所示,代码如下:
\begin{lstlisting}[language=TeX]
\begin{table}[htbp]
\caption{经过测试的环境}
\begin{tabular}{ccc}
\toprule
OS & Tex & 测试情况 \\
\midrule
Windows 10 & TexLive 2021 & √ \\
Windows 10 & MikTex & √ \\
Windows 10 & TexLive 2020 & × \\
Ubuntu 20.04 & TexLive 2021 & √ \\
南大Tex & Overleaf & √ \\
\bottomrule
\end{tabular}
\end{table}}
\end{lstlisting}
\section{代码示例}
\subsection{行内代码}
The new command pretty-prints the code. The exclamation marks delimit
the code and can be replaced by any character not in the code;
|\lstinline$var i:integer;$| gives the same result.
\lstinline!\lstinline|\textit{<Your code>}|! % 套娃失败了