I want to display the half-width of the slash " "" correctly on the Windows jupyter notebook.

Asked 1 years ago, Updated 1 years ago, 76 views

I can't get half-width of です on anaconda→ jupyter notebook in Windows 10.
Also, the "!" surprise mark will be purple and "The specified path cannot be found".

(Regarding the (9/27 Amendment: ↑ Surprise mark "!") This is
before pip install openpyxl. If you put it on, it will be an error, so the surprise mark "!" is not an error of the symbol itself. All right. Sorry for the trouble.
Unfortunately, if you don't understand this even after looking into it thoroughly, I will post it instead of a new question.
Sorry for the trouble.(__))

I'm sorry to ask you a new question.

About の not getting half-width

What I have tried so far is the following personal opinion summary 1) and 2) which are scattered on the Internet.
However, it was not resolved.

1)
How to enter \"\": You can enter a backslash by setting IME to half-width mode and pressing the "ro" key on the keyboard.
Alternatively, you can press the でro を key in full-width mode and use the にF10 」 key to convert it to half-width and enter it.

[Requires Preferences]
In Notepad, change the format → font to one of the following:There was a description on the net that

  • Arial
  • Verdana
  • MigMix1P
  • Calibri

However, it is only for this notepad, and other apps will react differently.
In short, it's not a half-width mark of の, but a circle mark of ".

2)
If you want to use a half-width backslash at a command prompt, you can use a half-width backslash as it is because it is said that half-width and reverse slashes are treated as the same characters inside the computer.

Reference
https://find366.com/windows10-keyboard-back-slash/

I tried this as well, but it didn't reflect the same treatment.

Thank you for your cooperation.

python python3 windows jupyter-notebook

2022-09-29 21:38

1 Answers

It may be impossible to change the settings of the entire system, but it is not common, and if you change a part of something, it may become inconsistent.

The following are examples of unintended changes:
How to Change the Windows 10 Keyboard Language Settings

Recently, I have experienced a case in which I cannot enter the が mark in half-width of the currency symbol on the keyboard.

As a result, as tried in Notepad, each application has its own configuration capabilities to make changes.
However, if the application is not functional, it cannot be changed.

In the case of jupyter notebook, the following article will be helpful.
View backslashes in the Jupiter Notebook

I created a personal css on the Jupiter Notebook so I could see the backslash.First, create the following css in a text editor:

.CodeMirror pre, .output pre{
  font-family —Arial, MS Gothic;
}

At the beginning of the font-family, specify a European font (Japanese hiragana and kanji cannot be used) such as "arial".Then create a new folder called "custom" in the folder C:\Users\.jupyter.Then save it with the file name custom.css.

There is a separate css to display the jupyter notebook, and if you have customer.css, it will only be applied preferentially, so even if it doesn't work, it won't be a problem if you delete this css file.

Recently, an article on the alternative method of using styleus was published.
If you can do it here, you can choose which one.
I want Google Collab or Jupiter Notebook to display the backslash


2022-09-29 21:38

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.