natbib을 사용하여 표에서 인용에 대한 줄 바꿈/텍스트 줄 바꿈을 허용하는 방법

natbib을 사용하여 표에서 인용에 대한 줄 바꿈/텍스트 줄 바꿈을 허용하는 방법

여기에 예가 있습니다. 실제 테이블에는 더 많은 행이 있으며 이는 단지 예일 뿐입니다. 참조 열이 텍스트만 감싸는 경우 이 테이블은 페이지에 맞습니다. 해결책을 찾을 수 없습니다. 나는 hyperref 패키지에서 breaklinks = true를 시도했고, \usepackage{xurl}을 시도했고, p{} 열 유형을 사용했지만 모두 소용이 없었습니다. 어떤 도움이라도 주시면 감사하겠습니다.

기본적으로 참조 열 내용을 여백으로 이동하는 대신 셀 내부로 감싸도록 하려면 어떻게 해야 합니까?

\documentclass[12pt,oneside,openany]{book} %change to oneside for final printing
\usepackage{array}
\usepackage[letterpaper,
            bindingoffset=0.0in,
            left=1in,
            right=1in,
            top=1in,
            bottom=1in,
            footskip=.25in]{geometry}
\usepackage{threeparttable}
\usepackage[font={small,doublespacing},labelfont=bf]{caption}
\captionsetup{justification=raggedright,singlelinecheck=off,labelsep=period}
\usepackage{booktabs}
\newcolumntype{C}[1]{>{\centering\arraybackslash}m{#1}}
\newcolumntype{P}[1]{>{\raggedright\arraybackslash}m{#1}}
\setlength{\tabcolsep}{0.25em}

%%% REFERENCES
\usepackage[numbers,square,sort&compress]{natbib}
\bibliographystyle{apalike}
% \bibliographystyle{abbrvnat}
\setcitestyle{authoryear, open={(}, close={)}} %Citation-related commands
\newcommand\cites[2]{\citeauthor{#1}'s \citeyearpar{#2}}

\usepackage{multirow,textcomp}
\usepackage{rotating}
\usepackage{xurl}
\usepackage{hyperref}
\hypersetup{
    colorlinks=true,
    linkcolor=blue,
    filecolor=magenta,      
    urlcolor=cyan,
    citecolor=blue,
    breaklinks=true
    }

\begin{document}

\begin{sidewaystable}[!h]
  \centering
  \footnotesize
  % \renewcommand{\arraystretch}{2} % Default value: 1
  \begin{threeparttable}
      \caption{Summary of treatment performances of processes treating real wastewater with microalgal-bacterial aggregates.}
      \label{tab:LiteratCompare}
      \begin{tabular}{ccccccC{0.4in}C{0.7in}C{0.6in}C{0.6in}p{1in}}
          \toprule
          \textbf{COD Removal$^a$}    & \textbf{N Removal$^a$}      & \textbf{P Removal$^a$}      & \textbf{Duration (d)} & \textbf{HRT$^t$ (d)}         & \textbf{SRT$^v$ (d)}     & \textbf{Suppl. Aerat.} & \textbf{Waste- water Type} & \textbf{Reactor Volume (L)} & \textbf{Natural Lighting} & \textbf{Reference}                               \\ \midrule
          4\% - 95\%                  & 14\% - 100\%                & 2\% - 60\%                  & \multirow{2}*{6-30}   & \multirow{2}*{2-10}       & \multirow{2}*{2-10}   & \multirow{2}*{Yes$^{\dagger\dagger}$}         & \multirow{2}*{Municipal}       & \multirow{2}*{50}                 & \multirow{2}*{No}               & \multirow{2}*{\citet{arcila_2016}}    \\
          (593 $\pm$ 58)$^b$          & (71.2 $\pm$ 4.5)$^w$        & (15.3 $\pm$ 1.3)$^f$        &           &              &          &               &                 &                    &                  &                                     \\
          87.1\% $\pm$ 4.5\%          & 51.4\% $\pm$ 15.2\%         & 50.4\% $\pm$ 14\%           & \multirow{2}*{30}       & \multirow{2}*{10}           & \multirow{2}*{10}       & \multirow{2}*{Yes$^{\dagger\dagger}$}         & \multirow{2}*{Municipal}       & \multirow{2}*{50}                 & \multirow{2}*{Yes$^{\dagger}$}             & \multirow{2}*{\citet{arcila_2017}}           \\
          (146.7 $\pm$ 40.0)$^b$      & (1.64 $\pm$ 0.15)$^q$       & (2.8 $\pm$ 0.13)$^f$        &          &              &          &               &                 &                    &                  &                                     \\ \bottomrule
          \end{tabular}
  \end{threeparttable}
\end{sidewaystable}

\bibliography{bib}

\end{document}

bib.bib 파일을 첨부할 수 없어서 턱받이 항목은 여기에 있습니다.

@article{arcila_2016,
title = {Microalgae-bacteria aggregates: effect of the hydraulic retention time on the municipal wastewater treatment, biomass settleability and methane potential},
author = {Arcila, Juan S and Buitrón, Germán},
pages = {2862-2870},
url = {http://doi.wiley.com/10.1002/jctb.4901},
year = {2016},
month = {nov},
urldate = {2021-07-12},
journal = {Journal of Chemical Technology \& Biotechnology},
volume = {91},
number = {11},
issn = {02682575},
doi = {10.1002/jctb.4901}
}

@article{arcila_2017,
title = {Influence of solar irradiance levels on the formation of microalgae-bacteria aggregates for municipal wastewater treatment},
author = {Arcila, Juan S. and Buitrón, Germán},
pages = {190-197},
url = {https://linkinghub.elsevier.com/retrieve/pii/S2211926417303041},
year = {2017},
month = {nov},
urldate = {2021-07-12},
journal = {Algal Research},
volume = {27},
issn = {22119264},
doi = {10.1016/j.algal.2017.09.011}
}

테이블

관련 정보