如何在 pgf-pie 中寫入 ı(不含點的 i)字符

如何在 pgf-pie 中寫入 ı(不含點的 i)字符

\i使用計數函數而不是顯示“ı”字元。已嘗試\i{\i} $$\i$$\imath \text{\i}仍繼續計數。

\documentclass[12pt, letterpaper, oneside]{article}

\usepackage[T1]{fontenc}
\usepackage[turkish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{datetime}
\usepackage{amsmath}
\usepackage{fancyhdr}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{tabularx}
\usepackage{url}
\usepackage{booktabs}
\usepackage{titlesec}
\usepackage{float}
\usepackage{hyperref}
\usepackage{hypcap}
\usepackage{apacite}
\usepackage{needspace} %sayfa sonu boşluklarını ayarlamak için
\usepackage[section]{placeins} 
\usepackage{xcolor}
\hypersetup{                    
    colorlinks,
    linkcolor={red!50!black},
    citecolor={blue!50!black},
    urlcolor={blue!80!black}
}
\bibliographystyle{apacite}  
\usepackage{fancyref}
\usepackage{tikz}
\usetikzlibrary{babel}
\usepackage{pgf-pie} %piechart için
\usepackage{subcaption}
\usepackage{pgfplots}
\usepackage{longtable}
\usepackage{makecell}
\usepackage{booktabs}
\usepackage{lscape}

\usepackage[font={footnotesize}]{caption}
\newcommand{\sekil}[1]{(Şekil \ref{fig:#1})}
\newcommand{\tablo}[1]{(Tablo \ref{tab:#1})}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\usepackage{lmodern}
\usepackage{etoolbox}
\AtBeginEnvironment{tikzpicture}{\shorthandoff{;}}

%---------------------- Header -------------------------------%
\fancyhead[L]{R. Özgür ALTUN}
\fancyhead[R]{Tangonun Sosyal Dansçıları}
\fancyhead[C]{}
\fancyfoot[C]{\thepage}  
\pagestyle{fancy}
\setlength{\headheight}{26pt}


\begin{document}
\begin{figure}[htb!]
\begin{center}
\begin{tikzpicture}[scale = 0.9]
\inputencoding{utf8}
\usetikzlibrary{babel}
    \pie[sum=auto, text=legend, color={black!0, black!10, black!30, black!50, black!80}, explode=0.1, scale font, before number= {\%}]{9/Doğru veya yanliş olduğunu umursamadan keyif almak, 11/Çalişilan bir eş ile yapmak, 26/Hatali da olsa akici{\i}   yapmak, 2/Keyif almak, 51/Mükemmel şekilde yapana kadar tekrar etmiş olmak}
\end{tikzpicture}
\caption{Yeni figür uygulanmasında öncelikli tercih.}   
\label{fig:yenifiguroncelik}
\end{center}
\end{figure}

\end{document}

答案1

恐怕沒什麼好做的。包裹pgf-pie非常糟糕書面。

雖然在使用者文件中可以選擇在循環\i內使用\foreach,但這應該不是軟體包的使用者應該盡可能保持中立。

要求開發人員更改其\foreach循環中的局部變數。

在此期間,添加

\let\tikzi=\i % Fix for bad programming in pgf-pie

到您的文件序言中,就在 之前\begin{document},以及餅圖文字中應使用的\tikzi位置。\i沒有直接的UTF-8輸入,而是明確的指令\tikzi

\begin{tikzpicture}[scale = 0.9]
  \pie[
    sum=auto,
    text=legend,
    color={black!0, black!10, black!30, black!50, black!80},
    explode=0.1,
    scale font,
    before number= {\%}
  ]{%
    9/Doğru veya yanliş olduğunu umursamadan keyif almak,
    11/Çalişilan bir eş ile yapmak,
    26/Hatali da olsa akici\tikzi{} yapmak,
    2/Keyif almak,
    51/Mükemmel şekilde yapana kadar tekrar etmiş olmak
}
\end{tikzpicture}

在此輸入影像描述

答案2

在搜尋的第二個小時找到了一個簡單的解決方案。\symbol{25}為我工作。

相關內容