我正在为我的论文使用各种脚注命令:
\bibnote
在文本中添加数字脚注。注释应同时出现在同一页(作为脚注)和参考书目(作为尾注)中。脚注通过一条水平线与文本的其余部分分开。
对于之前的其他报告,我常常\footnotetext
在方案或图表中添加脚注(按字母顺序排列)。
但是,由于我开始在同一页面上打印参考文献(作为脚注)并在参考书目中作为尾注,所以我被迫在文本和脚注之间添加一条水平线的宏,这也会在方案和之间添加一条水平线,而\footnotetext
这并不是我想要的。
\floatfoot*
为了解决这个问题,我选择使用不在浮点数和脚注之间添加水平线的命令。
问题是:\floatfoot*
没有添加缩进,这使得注释在我看来相当丑陋。
有谁知道如何在\floatfoot
命令中添加缩进或以不同的方式规避所解释的问题?
提前致谢!
\documentclass[11pt, twoside, letterpaper]{scrbook}
\usepackage[cmsy]{MnSymbol}
\usepackage{MinionPro}
\usepackage{MyriadPro}
%%%Setup for the header containing a line with the chaptername and number
\usepackage[pagestyles]{titlesec}
\newpagestyle{mystyle}{%
\headrule\sethead{\chaptername\ \thechapter. \chaptertitle}{}{}
\setfoot{}{\thepage}{}}
\pagestyle{mystyle}
\usepackage{siunitx}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[utf8]{inputenc}
\usepackage[ngerman, english]{babel}
\usepackage{microtype}
\usepackage{chemnum}
\usepackage{relsize}
\setchemnum{replace-style = \scriptsize}
\usepackage{longtable}
\usepackage{tabularx}
\usepackage{csquotes}
\usepackage{listings}
%%%both needed for notes2bib
\usepackage{notes2bib}
\bibnotesetup{cite-function=\autocite} %%%superscript bibnotes
\usepackage{graphicx}%
\usepackage[section]{placeins}
\usepackage[runs=2]{auto-pst-pdf} %needed for chemnum
\usepackage{chemmacros}
\usepackage{ragged2e}
\usepackage[journal=jacs, tracking=bpchem]{chemstyle}
\makeatletter
\def\fps@figure{tbp}
\makeatother
\usepackage[url=false, doi=false, natbib=true, backend=bibtex, style=chem-acs]{biblatex}
\DeclareNameAlias{sortname}{first-last}
\addbibresource{latexlit.bib}%
%%%Macro for having both footnote and endnotes for citations
\makeatletter
% source of macro: http://www.texdev.net/2010/03/08/biblatex-numbered-citations-as-footnotes/
\DeclareCiteCommand{\supercite}[\cbx@superscript]%
{\usebibmacro{cite:init}%
\let\multicitedelim=\supercitedelim
\iffieldundef{prenote}{}{\BibliographyWarning{Ignoring prenote argument}}%
\iffieldundef{postnote}{}{\BibliographyWarning{Ignoring postnote argument}}}
{\usebibmacro{citeindex}%
\usebibmacro{superfullcite}%
\usebibmacro{cite:comp}}
{}
{\usebibmacro{cite:dump}}
\newbibmacro*{superfullcite}{%
\ifciteseen{}{\xappto\cbx@citehook{%
\noexpand\footnotetext[\thefield{labelnumber}]{\fullcite{\thefield{entrykey}}.}}}}
\newrobustcmd{\cbx@superscript}[1]{%
\mkbibsuperscript{#1}%
\cbx@citehook
\global\let\cbx@citehook=\empty}
\let\cbx@citehook=\empty
\makeatother
\usepackage[version=4]{mhchem}
\begin{document}
\chapter{Stackexchange}
For the preparation of \cmpd{latex1} it was envisioned to use \cmpd{latex2} as a precursor
\begin{scheme}[htbp]
\renewcommand*\footnoterule{}
\replacecmpd[tag=TMP1]{latex1}
\replacecmpd[tag=TMP2]{latex2}
\replacecmpd[tag=TMP3]{latex3}
\includegraphics[scale=.638]{Images/latex1}
\caption{Stackexchange}
\label{latex1}
\floatfoot*{The floatfoot command does not product a horizontal line. But the indentation is missing.}
\footnotetext{Using the footnotetext command causes a horizontal line to appear above which is unwanted, but the desired indentation appears}
\end{scheme}
A sentence with a bibnote.\bibnote{Silly description of a reaction using the bibnote command.}
Usual literature citation in the text appears both as a footnote and endnote\autocite{Hurtley:2014ft}.
\footnote{A footnote using its own counter}
\printbibliography
\end{document}