左对齐居中显示的脚注



如何证明以乳胶居中显示的脚注的合理性。我试过使用\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 1footnote{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}

居中的脚注是您正在使用的类的设计决策。如果你不想他们集中

  • 使用另一个文档类

  • 覆盖班级做出的设计决策,但不打算将本文提交到需要acmart风格的地方


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
longdef@mpfootnotetext#1{%
globalsetbox@mpfootinsvbox{%
unvbox@mpfootins
reset@fontfootnotesize
hsizecolumnwidth
@parboxrestore
protected@edef@currentlabel
{csname p@mpfootnoteendcsname@thefnmark}%
color@begingroup%centering
@makefntext{%
rulez@footnotesepignorespaces#1@finalstrutstrutbox}%
color@endgroup}}
makeatother

begin{document}

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

My algorithm step 1footnote{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}

相关内容

  • 没有找到相关文章

最新更新