如何创建没有图号的侧面标题?

如何创建没有图号的侧面标题?

我是一名刚开始学习 Latex 的新手。我想创建一个带侧边标题的图形。但是我想省略 Latex 默认插入的“图形”文本。例如,使用以下代码,我可以生成下图。但我不想在标题中出现“图 1.2”字样。你会怎么做?非常感谢

\documentclass[12pt]{report}
\usepackage{graphicx}
\usepackage{sidecap}


\begin{document}

 \begin{SCfigure}
 %\centering
 \caption {my caption text}
 \includegraphics[width=0.5\textwidth]    {myfigure}
 \end{SCfigure}

 \end{document}

在此处输入图片描述

答案1

我已经找到了答案:我使用了可以\usepackage{caption}使用的命令\caption*{text here}来解决问题。干杯。

相关内容