私はラテックスの初心者で、テンプレートを変更しようとしていますが、あまりうまくいきません。
現在のテンプレートでは、ページの左側のヘッダーに画像があり、中央にタイトルがあります。画像をヘッダーの上になるように移動する必要がありますが、うまくいきません。
そこで、下の行を[LO]から[CO]に変更して中央に配置しました。
\fancyhead[CO]{\parbox{1.5cm}{\includegraphics[width=2cm]{C:/My_path/my_pic.png}}}
ただし、タイトルのコード行を上の行の下に配置すると、タイトルのみが表示されます。タイトルのコード行を上の行の上に配置すると、画像のみが表示されます。
コード
\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{selinput}
\usepackage{fancyhdr}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{color}
\usepackage{float}
\usepackage{tabularx}
\usepackage[paperheight=11.69in,paperwidth=8.27in, top=0.9in, bottom=1in, left=0.25in, right=0.25in]{geometry}
\usepackage{helvet}
\usepackage{xcolor}
\usepackage{booktabs}
\usepackage{array}
% imposing fancy page style
\pagestyle{fancy}
% creating fancy header and footer
\fancyhead[CO]{\parbox{1.5cm}{\includegraphics[width=2cm]{C:/My_path/my_pic.png}}}
\fancyhead[CO]{{\Large \color{FCblueOne}{\scshape{\textbf{Some Title} - Report}}}}
\fancyfoot[CO]{\Grey \scshape{For Internal Use Only}}
\fancyfoot[RO]{\Grey \scshape{\today}}
\fancyhead[RO]{\parbox{2.0cm}{\includegraphics[width=2cm]
% adjusting header and footer rules
\renewcommand{\headrulewidth}{0.1pt}
\renewcommand{\footrulewidth}{0.1pt}
\renewcommand{\headrule}{\hbox to\headwidth{\color{\Grey}\leaders\hrule height \headrulewidth\hfill}}
\renewcommand{\footrule}{\hbox to\headwidth{\color{\Grey}\leaders\hrule height \headrulewidth\hfill}}
答え1
複数回指定します\fancyhead[CO]
。前の指定は上書きされるため、最後の指定のみが使用されます。中央に配置したいものをすべて 1 つにまとめて\fancyhead[CO]
、「タイトルの上に画像」のような機能を実現してみてください。\\
または同様の機能を使用します。例:
\fancyhead[CO]{%
\parbox{1.5cm}{\includegraphics[width=2cm]{C:/My_path/my_pic.png}}\\
{\Large \color{FCblueOne}{\scshape{\textbf{Some Title} - Report}}}%
}
\fancyfoot[CO]{\Grey \scshape{For Internal Use Only}}
\fancyfoot[RO]{\Grey \scshape{\today}}