Usei um sinal £ em um dos rótulos de eixo em meu código MATLAB, mas ele não aparece no compilador.
Meu código LaTeX é:
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\title{BENG0019: Engineering Mathematics in Finance \\[10pt] \textbf{Assignment 2}}
\author{Michael Dodman 18020495}
\date{}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{titling}
\setlength{\droptitle}{-4em}
\usepackage{parskip}
\usepackage{geometry}
\geometry{portrait, margin=0.7in}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\rhead{18020495}
\lhead{Michael Dodman}
\cfoot{Page \thepage}
\renewcommand{\headrulewidth}{1pt}
\renewcommand{\footrulewidth}{1pt}
\setlength{\headheight}{14pt}
\UseRawInputEncoding
%\usepackage[framed,numbered,autolinebreaks]{mcode}
\usepackage[framed,numbered]{matlab-prettifier}
\lstset{
style = Matlab-editor,
basicstyle = \fontfamily{pcr}\selectfont\footnotesize, % if you want to use Courier
}
\begin{document}
\maketitle \thispagestyle{fancy}
\newpage \section*{Appendix A}
\begin{lstlisting}[style=Matlab-editor]
% Input X data into a 1 x 10 array
x = [85 105 122 143 162 182 203 224 242 262];
% Input each column of Y data into a 1 x 10 array of arrays
y = {[55 62 61 73 76]; [64 72 73 82 87 88]; [79 84 90 94 99]; [80 93 95 103 105 113 115]; [102 107 110 115 113 125]; [110 115 120 130 132 140]; [120 136 140 144 143]; [135 137 140 152 152 160 162]; [137 145 155 164 174 189]; [152 155 173 171 182 182 192]};
% Plotting each column of Y data individually in turn,in a for loop and
% adding to the existing graph. Plotting filled circles, size 11pt.
% For loop ends when all data is plotted.
for i = 1:numel(x)
scatter(ones(1,numel(y{i}))*x(i), y{i}, 11,'filled', 'o' )
hold on
end
% Adding a grid and axis labels for clarity
grid on
xlabel('Weekly Income/ \pounds ')
ylabel('Weekly Consumption Expenditure/ \pounds ')
\end{lstlisting}
\newpage \section*{Appendix B}
\end{document}
No entanto, a saída é:
Como você pode ver, o \pounds
simplesmente não aparece?
Alguma ajuda com isso?
Link para arquivo de log:
https://drive.google.com/file/d/1xCegXUrg_OhAPhvr1NvznKztweGGUuZI/view?usp=sharing
Responder1
(Sou mais uma equipe de suporte do Overleaf)
Estou entendendo corretamente que você deseja que as listagens no PDF de saída sejam exibidas£
não \pounds
literalmente? Do jeito que você escreveu seu código aqui, parecia que você queria \pounds
.
Para obter um £
na sua lstlistings
saída, você realmente tem um cenário semelhante aoComo definir UTF8 em um lstlisting? (Erro recebido). Você tem três opções:
Escape para LaTeX para\pounds
Use o listings
mecanismo "escape" do pacote, para que \pounds
seja interpretado como um comando LaTeX. (Pode não estar destacado pela sintaxe)
%% For escapechar, choose a character that's not used in your code snippet!
\begin{lstlisting}[style=Matlab-editor,escapechar=|]
xlabel('Weekly Income/ |\pounds|')
\end{lstlisting}
"Alfabetizado" £ afastado; então escreva £ diretamente
Com essa abordagem, você define o que listings
deve ser feito (em vez disso, usar \pounds
) quando encontrar um arquivo £
.
\begin{lstlisting}[style=Matlab-editor,
extendedchars,literate={£}{{\pounds}}1]
xlabel('Weekly Income/ £')
\end{lstlisting}
Compile com XeLaTeX ou LuaLaTeX; escreva £ diretamente
Configure seu projeto para compilar com XeLaTeX ou LuaLaTeX (no verso, clique no ícone do menu acima do menu da árvore de arquivos e altere a configuração "Compilador"). Esses compiladores lidam com UTF-8 nativamente; então isso funcionará imediatamente:
\begin{lstlisting}[style=Matlab-editor]
xlabel('Weekly Income/ £')
\end{lstlisting}
Exemplo de resultado das três abordagens acima: