如何寫一個比段落大一點、列居中且沒有警告的表格?

如何寫一個比段落大一點、列居中且沒有警告的表格?

我正在嘗試做一個尺寸很棒的桌子,但是我在下圖中列出了一些困難:

在此輸入影像描述

  1. 1我所知,該詞不會自動連字符。其他的是,但這是因為我\-在文字上放置了斷路器,儘管我\RaggedRight在其行上使用了*3{>{\centering\RaggedRight\arraybackslash}p{0.9cm}|}

  2. On2這個字應該和其他字一樣居中,但事實並非如此。儘管我特意\centering為中間 3 列添加了程式碼。線:*3{>{\centering\RaggedRight\arraybackslash}p{0.9cm}|}

這是該表的程式碼,我根據以下內容創建了它如何在不明智的情況下自動強制乳膠不調整文字?'穩定的:

\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[brazil]{babel}
\usepackage[a4paper, margin=2cm]{geometry}
\usepackage[utf8]{inputenc}

\usepackage{mathptmx}
\usepackage{hyperref}
\usepackage{xspace}
\usepackage{microtype}
\usepackage{indentfirst}
\usepackage{lettrine}
\usepackage{graphicx}
\usepackage{float}
\usepackage{array,ragged2e}

\usepackage{tabularx}
\usepackage{multirow}

\begin{document}

\section{Riscos}

    % \slash
    \noindent\makebox[\textwidth]{%
    \resizebox{1.1\linewidth}{!}{%
    \begin{tabular}{|
                     *1{>{\raggedright\arraybackslash}p{4.0cm}|} % Riscos
                     *3{>{\centering\RaggedRight\arraybackslash}p{0.9cm}|} % Probabilidade, Impacto, Prioridade
                     *2{>{\raggedright\arraybackslash}p{4.0cm}|} % Resposta, Prevenção
                    }
    \hline Riscos  & Pro\-ba\-bi\-li\-da\-de & Im\-pac\-to & Prioridade & Es\-tra\-té\-gia de res\-pos\-ta & Ações de pre\-ven\-ção \\ \hline

    % Row 1
    % Riscos
    \hline Problemas com perda de dados &

    % Probabilidade
    Baixa &

    % Impacto
    Alto &

    % Prioridade
    Alta &

    % Estratégia de resposta
    Uso do backup &

    % Ações de prevenção
    Backup periódicos \\ \hline


    % Row 2
    % Riscos
    \hline Alteração do cronograma ou descontinuidade do projeto na empresa/laboratório onde recebo uma bolsa &

    % Probabilidade
    Média &

    % Impacto
    Alto &

    % Prioridade
    Alta &

    % Estratégia de resposta
    Redefinição da data de entrega do trabalho &

    % Ações de prevenção
    Monitoramento contínuo das informações obtidas com superiores imediatos \\ \hline

    \hline \end{tabular}
    }%
    }%

\end{document}

目前,我按行分割每一列,因此我可以在閱讀乳膠時輕鬆準備表格,那麼這是否是以純文字建立此類表格的最佳可讀方式,請記住使其易於編輯和擴展?

此文字也產生這些警告:

D:\main2.tex:73: Overfull \hbox (23.38434pt too wide) in paragraph at lines 73--73
D:\main2.tex:73: Overfull \hbox (1.82845pt too wide) in paragraph at lines 73--73
D:\main2.tex:73: Overfull \hbox (4.43913pt too wide) in paragraph at lines 73--73

可以修復它們,同時使我的表格比通常的頁面尺寸大一點嗎?

答案1

如果您遇到連字問題,請檢查您是否正確安裝了 babel。

使用 MWE 中的手動連字符,我獲得(在更正列定義後)以下結果:

在此輸入影像描述

我做了以下更改:

  • 新增套件changepage並將其巨集adjustwidth*擴展至外部文字邊框之外
  • 將字體大小減小到\small(這可以更好地對單元格中的文字進行連字符)
  • 將定義>{\centering\RaggedRight\arraybackslash}p{0.9cm}(這是錯誤的)更改為>{\Centering\arraybackslash}p{0.9cm}
  • 適用於餐桌使用tabularx環境
  • 改變列寬

微量元素:

\documentclass[12pt]{article}
\usepackage[a4paper, margin=2cm, showframe]{geometry}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[brazil]{babel}

\usepackage{mathptmx}
\usepackage{xspace}
\usepackage{microtype}
\usepackage{indentfirst}
\usepackage{lettrine}
\usepackage{graphicx}
\usepackage{float}

\usepackage{ragged2e}
\usepackage{array, multirow, tabularx}
\usepackage[strict]{changepage}% <-- added

\usepackage{hyperref}

\begin{document}

\section{Riscos}

\begin{adjustwidth*}{}{-\marginparwidth}
    \small
    \begin{tabularx}{\linewidth}{|
                 *1{>{\RaggedRight\arraybackslash\hsize=1.1\hsize}X|} 
                 *3{>{\Centering\arraybackslash}p{1.1cm}|} % <-- corrected
                 *2{>{\RaggedRight\arraybackslash\hsize=0.95\hsize}X|} 
                    }
    \hline 
Riscos  & Pro\-ba\-bi\-li\-da\-de  & Impa\-cto & Prio\-ridade & Es\-tra\-té\-gia de res\-pos\-ta & Ações de pre\-ven\-ção \\ \hline
    % Row 1
    % Riscos
Problemas com perda de dados &
    % Probabilidade
    Baixa &

    % Impacto
    Alto &

    % Prioridade
    Alta &

    % Estratégia de resposta
    Uso do backup &

    % Ações de prevenção
    Backup periódicos \\ \hline

    % Row 2
    % Riscos
    \hline Alteração do cronograma ou descontinuidade do projeto na empresa/laboratório onde recebo uma bolsa &

    % Probabilidade
    Média &

    % Impacto
    Alto &

    % Prioridade
    Alta &

    % Estratégia de resposta
    Redefinição da data de entrega do trabalho &

    % Ações de prevenção
    Monitoramento contínuo das informações obtidas com superiores imediatos \\ 
        \hline\hline 
    \end{tabularx}
\end{adjustwidth*}%

\end{document}

筆記:在如此狹窄的列中使用連字符連接文字並不是一個好主意。更好的解決方案是使用一些簡短的內容,並在表標題或表末尾的腳註中添加其含義的解釋(例如透過使用threeparttable)。

附錄:如果您喜歡表格寬度的對稱擴展(並且在我看來,與外部頁面邊框不對稱更好),如下所示:

在此輸入影像描述

您只需將adjustwidth*巨集更改為例如:

\begin{adjustwidth}{-0.5\marginparwidth}{-0.5\marginparwidth}
...
\end{adjustwidth}

答案2

我強烈推薦你不是養成使表格比文字區塊更寬的習慣——除非在極端情況下,這種情況似乎不適用於手頭上的表格。此建議對於您目前的文件來說更加緊迫,因為您一開始就使用相當窄的邊距 (2 公分)。

相反,您應該 (a) 使用tabularx環境及其X列類型來確保表適合文字區塊,並且 (b) 根據需要適當地(重新)定義所有列類型以獲得美觀的表。此外,請忽略所有垂直線並使用該booktabs套件產生間隔良好的水平線。

在此輸入影像描述

\documentclass[12pt]{article}
% I've tried to reduce the preamble to a bare minimum.
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[brazil]{babel}
\usepackage{newtxtext,newtxmath} % more up-to-date than 'mathptmx'
\usepackage[a4paper,margin=2cm]{geometry}
\usepackage{microtype,ragged2e,tabularx,booktabs}

\newcolumntype{Y}{>{\RaggedRight\arraybackslash}X}
\newcolumntype{P}[1]{>{\RaggedRight\arraybackslash}p{#1}}
\newcolumntype{C}[1]{>{\Centering\arraybackslash\hspace{0pt}}p{#1}}
    % the '\hspace{0pt}' directive enables hyphenation of first word of cell
\newlength\medlength
\settowidth{\medlength}{Média} % width of word "Média"

\begin{document}
\section{Riscos}

\noindent
\begin{tabularx}{\textwidth}{@{}
    *1{>{\hangafter1\hangindent1em}P{4cm}}
    *3{C{\medlength}} % or: C{1.4cm} C{0.9cm} C{1.1cm}
    *2{Y}
    @{}}
\toprule 
    Riscos & Probabilidade & Impacto & Prioridade & 
    Estratégia de resposta & Ações de prevenção \\ 
\midrule

    % Row 1
    % Riscos 
    Problemas com perda de dados &
    % Probabilidade
    Baixa &
    % Impacto
    Alto &
    % Prioridade
    Alta &
    % Estratégia de resposta
    Uso do backup &
    % Ações de prevenção
    Backup periódicos \\

\addlinespace

    % Row 2
    % Riscos
    Alteração do cronograma ou descontinuidade do projeto 
    na empresa\slash laboratório onde recebo uma bolsa &
    % Probabilidade
    Média &
    % Impacto
    Alto &
    % Prioridade
    Alta &
    % Estratégia de resposta
    Redefinição da data de entrega do trabalho &
    % Ações de prevenção
    Monitoramento contínuo das informações obtidas 
    com superiores imediatos \\ 
\bottomrule
\end{tabularx}

\end{document}

相關內容