左对齐脚注居中

问题描述 投票:0回答:1

如何调整以乳胶为中心的脚注。我尝试使用\ justifyleft,但标识脚注的标签仍居中。

\documentclass[sigconf,screen,pagebackref]{article}

\usepackage{times}
\usepackage{epsfig}
\usepackage{graphicx}
\usepackage{amsmath,bm}
\usepackage{amssymb}
\usepackage{algorithm}
\usepackage{appendix}
\usepackage{float}
\usepackage{caption}

\usepackage{times,amsmath,epsfig,graphicx,amssymb,multirow,subfig}
\usepackage{mathtools, cuted}
\usepackage{empheq}
\usepackage{url}



\begin{document}


    \begin{algorithm}[!phb]
        \begin{minipage}{\linewidth}


            My algorithm step 1\footnote{Dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.}

            My algorithm step 2.\footnote{Dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.}
            \hrule
        \end{minipage}
    \end{algorithm}
\end{document}
latex latex-environment footnotes
1个回答
0
投票

中心脚注是您正在使用的类的设计决定。如果您不希望它们居中]

  • 使用另一个文档类

  • 覆盖类的设计决策,但不打算将本文提交到需要使用智能样式的地方


\documentclass[sigconf,screen,pagebackref]{acmart}

\usepackage{times}
\usepackage{epsfig}
\usepackage{graphicx}
\usepackage{amsmath,bm}
\usepackage{amssymb}
\usepackage{algorithm}
\usepackage{appendix}
\usepackage{float}
\usepackage{caption}

\usepackage{times,amsmath,epsfig,graphicx,amssymb,multirow,subfig}
\usepackage{mathtools, cuted}
\usepackage{empheq}
\usepackage{url}

\makeatletter
\long\def\@mpfootnotetext#1{%
  \global\setbox\@mpfootins\vbox{%
    \unvbox\@mpfootins
    \reset@font\footnotesize
    \hsize\columnwidth
    \@parboxrestore
    \protected@edef\@currentlabel
         {\csname p@mpfootnote\endcsname\@thefnmark}%
    \color@begingroup%\centering
      \@makefntext{%
        \rule\z@\footnotesep\ignorespaces#1\@finalstrut\strutbox}%
    \color@endgroup}}
\makeatother


\begin{document}


    \begin{algorithm}[!phb]
        \begin{minipage}{\linewidth}


            My algorithm step 1\footnote{Dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.}

            My algorithm step 2.\footnote{Dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.}
            \hrule
        \end{minipage}
    \end{algorithm}
\end{document}
© www.soinside.com 2019 - 2024. All rights reserved.