フレームで区切られた論文の指定フォーマットの要旨ページを作りたい

Re: フレームで区切られた論文の指定フォーマットの要旨ページを作りたい

- ya ra の投稿
返信数: 0

すでに解決されているようなので補足ですが、元の tblr 環境にオプション hspan = minimal を追加するだけで問題が解消します。

%!TeX = pdflatex
\documentclass{scrartcl}
\usepackage{tabularray}
\begin{document}

\begin{tblr}{
  hlines, vlines,
    colspec = {X[0.25,c,h] X[0.6,c,h]X[0.25,c,h] X[0.6,c,h] },
    cell{2-Z}{1} = {c=4}{},
    hline{3} = {0em},
    hline{5} = {0em},
    hline{7} = {0em},
    width = {\linewidth},
    hspan = minimal, % ⇐ これを追加するだけ
  }
  \SetRow{rowsep=5mm} Student ID & XXXX & Name & Tomy Otsuka \\
  \SetCell{l} Title & & & \\
  \SetRow{valign=t, halign=l}\SetCell{l} aaa & & & \\
  \SetCell{l} Abstract & & & \\
  \SetRow{valign=t, halign=l}{Abstract This paper compares a sample of 124 independent high technology entrepreneurs with 112 corporate entrepreneurs (intrapreneurs) involved in developing and introducing high-tech innovations across Canada. The study investigates the general management and technical problems faced by these entrepreneurs and contrasts their approach to such issues as market research, financing and production. The approaches used by the two groups in analyzing their markets and in planning and financing of innovations are compared and contrasted. In general, the independent entrepreneurs were technically trained, usually possessing engineering training but no general management training or experience, neither themselves nor members of their management team. Corporate entrepreneurs were as likely to come from management backgrounds as technical, or else supported their lack of general}
  & & & \\
  \SetCell{l} Keyword & & & \\
  \SetRow{valign=t, halign=l} \SetCell{l} aaa & & & \\
\end{tblr}

\end{document}

加えて、添付ファイルでは \SetRow 等の表内のコマンドを使用しない方法を並記しています。

添付 3829-image-1.png