我正在嘗試創建一個函數,以便在左側顯示圖像,在右側顯示文字。我想出了以下幾點:
% Special container for image on left and text on right
\renewcommand\imtxt[3]{
\begin{center}
\begin{minipage}{#1} %First argument
\includegraphics{#2} %Second argument
\end{minipage}\quad
\begin{minipage}{0.50\linewidth}
#3 %Third Argument
\end{minipage}
\end{center}
}
我想在我的 LaTeX 文件中使用這個函數,如下所示:
\imtxt[2cm][Images/Icon_Test.png][test text]
總的來說,它將在左側添加一個 2 公分寬的圖像,然後使用 \quad 進行間距,最後添加我的文字。
但是, \newcommand 有一些問題並且無法編譯。想法?
編輯:
範例程式碼:
% Default Template and Font Size
\documentclass[11pt]{extarticle}
\usepackage{mwe}
% Set Margins of the Document
\usepackage[a4paper,bindingoffset=0in,left=2.54cm,right=2.54cm,top=3.8cm,bottom=2.5cm,footskip=.25in]{geometry}
% Special container for image on left and text on right
\renewcommand\imtxt[3]{
\begin{center}
\begin{minipage}{#1}
\includegraphics{#2}
\end{minipage}\quad
\begin{minipage}{0.50\linewidth}
#3
\end{minipage}
\end{center}
}
% Document begins here
\begin{document}
\imtxt{2cm}{example-image-b}{test text}
\end{document}
儘管建議使用 {} 而不是 [] 現在可以工作,但我仍然在 Overleaf 中收到警告 command \imtxt undefined