Displaying 1 result from an estimated 1 matches for "u008a".
Did you mean:
008a
2008 Aug 25
1
Unicode notation \x000
...csv from excel spreadsheets) by
character strings that can be interpreted by LaTeX.
E.g.:
uni2latex <- function(x){
x <- gsub("&", "et", x, fixed = TRUE)
# Deutsch
x <- gsub("\u0080", "\\\"A", x, fixed = TRUE)
x <- gsub("\u008a", "\\\"a", x, fixed = TRUE)
x <- gsub("\u0085", "\\\"O", x, fixed = TRUE)
x <- gsub("\u009a", "\\\"o", x, fixed = TRUE)
x <- gsub("\u0086", "\\\"U", x, fixed = TRUE)
x <- gsub("\u...