不含页码和点的图表列表

不含页码和点的图表列表

我使用 texniccenter + miktex 来工作。

我想在图表部分列表中列出所有图表标题(不带页码、点和图表前的数字)。怎么做?例如,在“附图简要说明”部分下,我只想包含图表标题而不显示页码、点,即 pdf 输出应如下所示:

附图简要说明

图 1:这是上图的图注。它显示了当前数据演化过程中许多量的有用性。

图 2:上图是来自 pdf 的一个非常简单的图表,可能与本工作相关。

但是 latex 总是用点来显示页码!!另外,图 1:... 和边距之间不应该有空格。

但是 latex pdf 显示的内容(我不想要)如下:

1 图题文字...........2

2 图题文字...........3

我想避免在“标题”之前出现数字(1 和 2)以及右侧的页码(2 和 3)和点...

第二次帮助:

在我的绘图部分中,它仅包含带有标题的图形。在这里,我希望显示“图 1”,但不显示标题。如何操作?

\documentclass[12pt,a4paper,oneside]{article}
\usepackage{multirow}
\usepackage{graphicx}
\usepackage{fancyhdr}
\setlength{\headheight}{20mm}
\usepackage[top=4.0cm,bottom=3.0cm,left=4.0cm,right=3.0cm]{geometry}
\usepackage{setspace}
\onehalfspacing
\usepackage{lastpage}
\usepackage[pagewise]{lineno}
\renewcommand\linenumberfont{\normalfont\bfseries\small}
\setlength\linenumbersep{8mm}
\setlength\parindent{0pt}
\setlength\parskip{2.0ex}
\usepackage{titlesec}
\titleformat*{\section}{\large\bfseries\sffamily}
\titlespacing{\section}{0pt}{*2}{*0}

\begin{document}

\section*{\centering Some title}
\section*{TITLE: Some time second}
\section*{ABSTRACT}
This is title.
\section*{OBJECT}
Some text goes here~\ref{fig:gra}.
\section*{BRIEF DESCRIPTION OF DRAWINGS}%Figure captions
\listoffigures

\section*{Special heading}
Can include some text.

\pagebreak
\setcounter{page}{1}%drawing page number starts from 1
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\textbf{Applicant name(s): \\Application no.: 123456599}}
\fancyhead[R]{\textbf{\thepage\ Sheet\ of \\\pageref{LastPage} Sheets }}
\fancyfoot[R]{\textbf{Signature\\My Name\\11112}}

\section*{DRAWINGS}
\begin{figure}[h]
  \centering
  \includegraphics[width=110mm]{monomer2}
\caption{This is the figure caption for the above figure. It displays usefulness of many quantities for the present data evolution of the fact.}\label{fig:mono}
\end{figure}
\begin{figure}[!ht]
  \centering
  \includegraphics[width=110mm]{sam3}
\caption{The above figure is very simple graph from a pdf which is may be relevant for the present work.}\label{fig:gra}
\end{figure}

\end{document}

谢谢问候,拉贾。

答案1

这是对您原始问题的回答。

% lofprob.tex SE 550574
\documentclass[12pt,a4paper,oneside]{article}
\usepackage{multirow}
\usepackage{graphicx}
\usepackage{fancyhdr}
\setlength{\headheight}{20mm}
\usepackage[top=4.0cm,bottom=3.0cm,left=4.0cm,right=3.0cm]{geometry}
\usepackage{setspace}
\onehalfspacing
\usepackage{lastpage}
\usepackage[pagewise]{lineno}
\renewcommand\linenumberfont{\normalfont\bfseries\small}
\setlength\linenumbersep{8mm}
\setlength\parindent{0pt}
\setlength\parskip{2.0ex}
\usepackage{titlesec}
\titleformat*{\section}{\large\bfseries\sffamily}
\titlespacing{\section}{0pt}{*2}{*0}

%%%%%%%%%%%%%%%% code to give what you are after
\usepackage{tocloft} % for fiddling with the ToC, LoF and LoT
\renewcommand{\cftfigdotsep}{\cftnodots} % no dots
\cftpagenumbersoff{figure} % no page numbers
\makeatletter
\renewcommand{\fnum@figure}[1]{\figurename\ \thefigure} % remove the : after number
\makeatother
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}

\section*{\centering Some title}
\section*{TITLE: Some time second}
\section*{ABSTRACT}
This is title.
\section*{OBJECT}
Some text goes here~\ref{fig:gra}.
\section*{BRIEF DESCRIPTION OF DRAWINGS}%Figure captions
\listoffigures

\section*{Special heading}
Can include some text.

\pagebreak
\setcounter{page}{1}%drawing page number starts from 1
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\textbf{Applicant name(s): \\Application no.: 123456599}}
\fancyhead[R]{\textbf{\thepage\ Sheet\ of \\\pageref{LastPage} Sheets }}
\fancyfoot[R]{\textbf{Signature\\My Name\\11112}}

\section*{DRAWINGS}

\begin{figure}[h]
  \centering 
  MONOMER2
%  \includegraphics[width=110mm]{monomer2}
\caption[This is the figure caption for the above figure. It displays usefulness of many quantities for the present data evolution of the fact.]{}\label{fig:mono}
\end{figure}
\begin{figure}[!ht]
  \centering
  SAM3
%  \includegraphics[width=110mm]{sam3}
\caption{The above figure is very simple graph from a pdf which is may be relevant for the present work.}\label{fig:gra}
\end{figure}

\end{document}

它按照您的要求做了,除了删除 LoF 中的图形编号,我认为这样做是不明智的:您的读者如何将 LoF 中未编号的标题与图中编号但不存在的标题文本联系起来?

请在提供 MWE 时提供通常可用的图形或纯文本,对此我们表示感谢。

答案2

感谢链接。我只是部分解决了(见下面的代码)。它产生了我需要的东西(见下图)。在下面显示的代码中,最后两行用于删除页码和点。我真的不知道代码 %1 到 %5 的含义?现在我需要调整图 1、图 2 之前的间距。例如,在图像中我想删除空格,以便图 1 从左边距开始。此外,我只想要“图 1:”和“这是图...”之间的正常空格(~),我该怎么办? 在此处输入图片描述

\usepackage{tocloft}
\renewcommand{\listfigurename}{\large\bfseries\sffamily BRIEF DESCRIPTION OF DRAWINGS}%list of fig

\newlength{\mylen}%1
\renewcommand{\cftfigpresnum}{\figurename\enspace}%2
\renewcommand{\cftfigaftersnum}{:}%3
\settowidth{\mylen}{\cftfigpresnum\cftfigaftersnum}%4
\addtolength{\cftfignumwidth}{\mylen}%5

\cftpagenumbersoff{figure}%remove list of figure page numbers
\renewcommand{\cftdot}{}%no dots

谢谢

相关内容