带引号和括号的章节标题

带引号和括号的章节标题

我正在为我的论文写附录,其中我简要回顾了一些参考出版物。我理想情况下希望以出版物命名各节,并在括号内列出作者列表,然后是出版年份。建议这样做以方便浏览。例如

\section{Review of "Some Publication Title" \[authored by Tom, Dick and Harry\] Published in 2000}

如果我使用上述格式,我将无法通过编译,因为出现以下错误:

! 未定义的控制序列。

有人能告诉我如何正确格式化此部分标题吗?在这种情况下,我没有提供 MWE,因为我认为这个问题很笼统。

短暂性脑缺血发作

维诺德

附言:

MWE 关注

\documentclass[11pt]{report}
\usepackage{fancyhdr}           % heading format
\pagestyle{fancy}
\fancyhead{}
\fancyhead[LE,RO]{\thepage}
\fancyhead[RE]{\leftmark}
\fancyhead[LO]{\rightmark}
\usepackage{hyperref}
\hypersetup{setpagesize=false, a4paper=true, colorlinks=true, linkcolor=blue, urlcolor=blue,citecolor=black}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{harvard}            % referencing format. Use with \bibliographystyle{agsm}
\usepackage{graphicx}           % including eps or pdf graphics
\usepackage{url}                % format web, email, and file names
\usepackage{caption}            % figure captions
\usepackage{float}
\usepackage{tcolorbox}

\setcounter{topnumber}{2}
\setcounter{bottomnumber}{2}
\setcounter{totalnumber}{4}
\renewcommand{\topfraction}{0.85}
\renewcommand{\bottomfraction}{0.85}
\renewcommand{\textfraction}{0.15}
\renewcommand{\floatpagefraction}{0.8}
\renewcommand{\textfraction}{0.1}
\setlength{\floatsep}{2pt plus 2pt minus 5pt}
\setlength{\textfloatsep}{5pt plus 2pt minus 2pt}
\setlength{\intextsep}{5pt plus 2pt minus 2pt}

\DeclareGraphicsExtensions{.pdf}
\graphicspath{ {./images/} }

% some options which should be set up for the caption package
\captionsetup{margin=2ex, font=small, labelsep=colon, aboveskip=2mm, belowskip=2mm}

\usepackage{datenumber}
\usepackage{dirtytalk}
\usepackage{textcomp}
\usepackage{xtab}
\usepackage{multicol}
\usepackage{booktabs}
\usepackage{array}
\usepackage{quotes}
\usepackage{gensymb}
\usepackage{enumerate}
\usepackage{verbatim}
\usepackage[T1]{fontenc}
\usepackage{listings}
\usepackage{color}
\definecolor{grey}{rgb}{0.9,0.9,0.9}
\usepackage{threeparttable}
\usepackage[space]{grffile}
\usepackage{tikz}
\usetikzlibrary{shapes,snakes}
\usepackage{a4pdf}

\begin{document}
\chapter{Publication Review} \label{chap:appendb}
\section{Source "Publication Title" (authored by Tom, Dick and Harry) Published in 2000}
\end{document}

答案1

这无需多言。

[排版方括号可以通过或]不通过任何其他要求来完成。\[\]用于显示数学环境,这是以前编写的$$...$$(现在已弃用!)

看起来好看吗?不!

\documentclass{article}

%\usepackage[utf8]{inputenc} not really needed


\begin{document}
\tableofcontents
\section[Some Publication Title]{Review of "Some Publication Title" [authored by Tom, Dick and Harry] Published in 2000}

\end{document}

在此处输入图片描述

编辑

由于 OP 提供了 MWE,错误似乎出在quotes包上。应将其替换为csquotes

答案2

切勿使用"来输入引号。

\section{Source ``Publication Title'' [authored by Tom, Dick and Harry] Published in 2000}

你看到了

``

用于开场引号和

''

(两个撇号)用于结束引号。

无需转义[],因为它们是可打印字符,因此您可以而且应该正常输入它们。

如果您加载\usepackage[utf8]{inputenc}并将文件保存为 UTF-8,您还可以使用特定字符:

\section{Source “Publication Title” [authored by Tom, Dick and Harry] Published in 2000}

相关内容