如何在行末断开作者姓名?

如何在行末断开作者姓名?

按作者-年份格式,有时作者姓名在行末过长,会延伸到页面右侧空白处。那么,论文中所有病例如何分页,以及只针对某一个病例如何分页呢?

\documentclass{article}
\usepackage[backend=biber,style=gb7714-2015ay,gblabelref=true]{biblatex}
\usepackage{ctex,lipsum}
\begin{filecontents}[force]{test.bib}
@article{kleebayoon2023chatgpt,
  title={ChatGPT and oncological applications: comment},
  author={Kleebayoon, Amnuay and Wiwanitkit, Viroj},
  journal={Journal of Cancer Research and Clinical Oncology},
  pages={1--1},
  year={2023},
  publisher={Springer}
}
\end{filecontents}
\addbibresource{test.bib}
\begin{document}
你好你好你好你好你好你好你好你好你好你好你好你好你好 \citep{kleebayoon2023chatgpt}\par
\lipsum[2]
\end{document}

在此处输入图片描述

答案1

举个例子也许能有所帮助。

排版页面可以包括编写材料的操作(“compose”=“和谐的安排”)。阅读精心编排的页面对读者来说是一种愉快的体验。相反,如果读者被布局或其他东西分散了注意力,他们的注意力就会偏离所要传达的意思。

有多种技术。

名称的自由连字模式:

  author={Kleebay\-o\-on, Amnuay and Wiwanitkit, Viroj},

连字符

在这里,少数人物偏离了自己的路线,引起了人们的注意。

尽可能将引用作为一个单元保存是一种可能的补救措施或设计选择。

无段落缩进(\noindent):

\noindent 你好你好你好你好你好你好你好你好你好你好你好你好你好你好 \citep{kleebayoon2023chatgpt}\par

氢键

稍微好一些。

两行段落,带有手动换行符 ( \\):

\noindent 你好你好你好你好你好你好你好你好你好你好你好你好你好你好 \\\citep{kleebayoon2023chatgpt}\par

H3

右对齐文本(使用\hfill):

\hfill 你好你好你好你好你好你好你好你好你好你好你好你好你好你好\par
\hfill\citep{kleebayoon2023chatgpt}\par

h4

报价环境:

\begin{quotation}
\hfill 你好你好你好你好你好你好你好你好你好你好你好你好你好你好\par
\hfill\citep{kleebayoon2023chatgpt}\par
\end{quotation}

H5

epigraph包,\epigraph{}{}命令:

\epigraph{你好你好你好你好\-你\-好\-你\-好\-你\-好\-你\-好\-你\-好\-你\-好\-你\-好\-你\-好\-你\-好\-你\-好}{\citep{kleebayoon2023chatgpt}}

h6

我没有您的字体和设置,所以这就是为什么-在题词中的换行符出现了。

Polyglossia 和 Babel 软件包可以排版中文。还有许多专门用于中文的软件包。luatexja 类和软件包包在这里也很有用,例如,可以处理换行

7

以及字体微调

7a

等等。

平均能量损失

\documentclass{article}
\usepackage{epigraph}
\usepackage[backend=biber,style=gb7714-2015ay,gblabelref=true]{biblatex}
\usepackage{lipsum}
\usepackage{fontspec}
\usepackage{luatexja}

\setmainfont{FandolSong}
\begin{filecontents}[overwrite]{\jobname.bib}
@article{kleebayoon2023chatgpt,
  title={ChatGPT and oncological applications: comment},
  author={Kleebay\-o\-on, Amnuay and Wiwanitkit, Viroj},
  journal={Journal of Cancer Research and Clinical Oncology},
  pages={1--1},
  year={2023},
  publisher={Springer}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}

\noindent\textbf{Hyphenation}

你好你好你好你好你好你好你好你好你好你好你好你好你好你好 \citep{kleebayoon2023chatgpt}\par
\lipsum[2]    

\bigskip
\noindent\textbf{noindent paragraph}

\noindent 你好你好你好你好你好你好你好你好你好你好你好你好你好你好 \citep{kleebayoon2023chatgpt}\par
\lipsum[2]    

\bigskip
\noindent\textbf{two-line paragraph}

\noindent 你好你好你好你好你好你好你好你好你好你好你好你好你好你好 \\\citep{kleebayoon2023chatgpt}\par
\lipsum[2]    

\bigskip
\noindent\textbf{right-aligned quote and cite}

\hfill 你好你好你好你好你好你好你好你好你好你好你好你好你好你好\par
\hfill\citep{kleebayoon2023chatgpt}\par
\lipsum[2]    

\newpage
\bigskip
\noindent\textbf{quotation environment}
\begin{quotation}
\hfill 你好你好你好你好你好你好你好你好你好你好你好你好你好你好\par
\hfill\citep{kleebayoon2023chatgpt}\par
\end{quotation}
\lipsum[2]    


\bigskip
\noindent\textbf{epigraph package} (no language or hyphenation pattern loaded)

    
\epigraph{你好你好你好你好\-你\-好\-你\-好\-你\-好\-你\-好\-你\-好\-你\-好\-你\-好\-你\-好\-你\-好\-你\-好}{\citep{kleebayoon2023chatgpt}}
\lipsum[2]    



    
\marginpar{你好你好你好你好士你. 好你好你好你好你好\footnote{kleebayoon2023chatgpt}}
\lipsum[2]    



\end{document}

\marginpar

h8

相关内容