如何在 scrbook/book 样式中对齐多位作者?

如何在 scrbook/book 样式中对齐多位作者?

这是我的代码...

\documentclass[12pt,a4paper,footinclude=true,headinclude=true,openany]{scrbook}
\usepackage{graphicx,tikz,lipsum}
\usepackage{transparent}
\usepackage{eso-pic}

\def\aut#1{\textbf{#1}}
\def\inst#1{\textit{#1}}
\def\address#1{\textit{#1}}
\def\email#1{\texttt{#1}}
\def\aut#1{\textbf{#1}\addtocontents{toc}{\protect\contentsline{subsection}{#1}{}}}
 \makeatletter \renewcommand\@dotsep{300}
\def\insti#1{\textit{#1}\addtocontents{toc}{\protect\contentsline{subsection}{#1}{}}}

% % % % % % % %Abstract Environment % % % % % % % %
% % % % % % % % % % % % % % % % % % % % % % % % % %
\newcommand\abstractname{Abstract}  %%% here
\makeatletter
  \newenvironment{abstract}{%
      \if@twocolumn
        \section*{\abstractname}%
      \else
        \small
        \begin{center}%
          {\bfseries \abstractname\vspace{-.5em}\vspace{\z@}}%
        \end{center}%
        \quotation
      \fi}
      {\if@twocolumn\else\endquotation\fi}
%\fi
\makeatother
% % % % % % % % % % % % % % % % % % % % % % %

\begin{document}
\chapter{Abstracts}
\tableofcontents
\section{Measures of agreement in ordinal scale between multiple raters in thyroid patients}
\aut{First author$^1$, Second Author$^2$, Third author$^3$}\\
\inst{$^1$Department of Biostatistics, $^2$Department of Radiology, $^3$ Department of Mathematics}\\
\address{1st address, 2nd address, 3rd address.}
%        
        \begin{abstract}
\lipsum[1]
\end{abstract}
\end{document}

这是我的输出...

在此处输入图片描述

问题

  1. 如何正确对齐作者姓名,而不影响表格内容条目?

  2. 我知道在文章类中我们有 \and 命令来拆分作者姓名。我可以使用相同的命令在页面上拆分姓名、机构、地址吗?

就是這樣...

在此处输入图片描述

我的工作:

我使用了以下命令将作者姓名与章节标题对齐,如上图所示...但我没有在目录中获得正确的输出...以下是我用于上述输出的代码..

\section{Measures of agreement in ordinal scale between multiple raters in thyroid patients}
\begin{minipage}{.35\textwidth}
\aut{First author$^1$ }\\
\inst{Department of Biostatistics}\\
\address{first line\\second line\\ third line}\\
\email{[email protected]}
\end{minipage}
\begin{minipage}{.3\textwidth}
\aut {Second Author$^2$,}\\
\inst{Department of Radiology}\\
\address{first line\\second line\\ third line}\\
\email{[email protected]}
\end{minipage}
\begin{minipage}{.35\textwidth}
\aut {Third author$^3$}\\
\inst{Department of Mathematics}\\
\address{first line\\second line\\ third line}\\
\email{[email protected]}
\end{minipage}

相关内容