Latex 中的附录。

Latex 中的附录。

我正在创建报告格式的附录。

\documentclass[a4paper,12pt]{report}

\usepackage[titletoc]{appendix}
\include{chapter1} %chapter 1
\include{chapter2} %chapter 2
\include{chapter3} %chapter 3
\include{chapter4} %chapter 4
\include{chapter5} %chapter 5
\include{chapter6} %chapter 6
\include{chapter8} %chapter 8
\include{chapter9} %chapter 9
\include{chapter10}%chapter 10
\include{acknowledgement}
\bibliographystyle{IEEEtran}
 \bibliography{mybib2}
 \appendix
 \chapter{title}
 \include{chapter7} %chapter 7
\end{document}

但是,输出显示右对齐。在此处输入图片描述

请提出一些解决方案。我尝试在那一章中写入 \justifying。我得到了错误。

先感谢您。

答案1

一个常见的错误是,人们认为为了正确刷新某些单词,

\flushright{some words}

这是一个很大错误:

  1. flushright是一个环境
  2. 即使\flushright它本身不会产生错误,它也会永远设置不规则的左侧排版

在您的情况下,由于thebibliography环境的工作方式,参考书目停止了这种情况,但是一旦参考书目结束,按照发行\flushright简历的顺序,参差不齐的左侧排版就会停止。

解决方案:

\begin{flushright}
\textbf{Pritesh Shah}
\end{flushright}

反而。

相关内容